Home
last modified time | relevance | path

Searched refs:GetClientFd (Results 1 – 25 of 28) sorted by relevance

12

/ohos5.0/foundation/multimodalinput/input/service/window_manager/test/
H A Dmock.h47 virtual int32_t GetClientFd(int32_t pid) = 0;
63 MOCK_METHOD1(GetClientFd, int32_t(int32_t pid));
H A Dmock.cpp213 int32_t UDSServer::GetClientFd(int32_t pid) const in GetClientFd() function in OHOS::UDSServer
218 return DfsMessageParcel::messageParcel->GetClientFd(pid); in GetClientFd()
H A Dinput_windows_manager_test.cpp159 ASSERT_EQ(WIN_MGR->GetClientFd(pointerEvent), idNames);
2745 EXPECT_EQ(inputWindowsManager.GetClientFd(pointerEvent), INVALID_FD);
2762 EXPECT_EQ(inputWindowsManager.GetClientFd(pointerEvent), 15);
2765 EXPECT_EQ(inputWindowsManager.GetClientFd(pointerEvent), INVALID_FD);
2773 EXPECT_EQ(inputWindowsManager.GetClientFd(pointerEvent), INVALID_FD);
2775 EXPECT_EQ(inputWindowsManager.GetClientFd(pointerEvent), INVALID_FD);
2779 EXPECT_EQ(inputWindowsManager.GetClientFd(pointerEvent), INVALID_FD);
2781 EXPECT_EQ(inputWindowsManager.GetClientFd(pointerEvent), INVALID_FD);
2783 EXPECT_EQ(inputWindowsManager.GetClientFd(pointerEvent), INVALID_FD);
4438 int32_t ret = inputWindowsManager.GetClientFd(pointerEvent);
[all …]
H A Dinput_windows_manager_ex_test.cpp86 EXPECT_CALL(*messageParcelMock_, GetClientFd(_)).WillOnce(Return(-1));
114 EXPECT_CALL(*messageParcelMock_, GetClientFd(_)).WillOnce(Return(1));
371 EXPECT_CALL(*messageParcelMock_, GetClientFd(_)).WillOnce(Return(1));
404 EXPECT_CALL(*messageParcelMock_, GetClientFd(_)).WillOnce(Return(1));
1435 EXPECT_CALL(*messageParcelMock_, GetClientFd(_)).WillOnce(Return(1));
1480 EXPECT_CALL(*messageParcelMock_, GetClientFd(_)).WillOnce(Return(1));
1527 EXPECT_CALL(*messageParcelMock_, GetClientFd(_)).WillOnce(Return(1));
/ohos5.0/foundation/multimodalinput/input/service/event_dispatch/src/
H A Devent_dispatch_handler.cpp188 auto fd = WIN_MGR->GetClientFd(pointerEvent, windowInfo->id); in HandleMultiWindowPointerEvent()
192 fd = udsServer->GetClientFd(windowInfo->pid); in HandleMultiWindowPointerEvent()
287 int32_t fd = GetClientFd(pid, point); in HandlePointerEventInner()
305 int32_t EventDispatchHandler::GetClientFd(int32_t pid, std::shared_ptr<PointerEvent> point) in GetClientFd() function in OHOS::MMI::EventDispatchHandler
318 return udsServer->GetClientFd(pid); in GetClientFd()
320 return WIN_MGR->GetClientFd(point); in GetClientFd()
/ohos5.0/base/msdp/device_status/services/native/src/
H A Ddevicestatus_service.cpp950 SessionPtr sess = GetSession(GetClientFd(pid)); in OnRegisterCoordinationListener()
963 SessionPtr sess = GetSession(GetClientFd(pid)); in OnUnregisterCoordinationListener()
982 SessionPtr sess = GetSession(GetClientFd(pid)); in OnPrepareCoordination()
1002 SessionPtr sess = GetSession(GetClientFd(pid)); in OnUnprepareCoordination()
1015 SessionPtr sess = GetSession(GetClientFd(pid)); in OnActivateCoordination()
1029 SessionPtr sess = GetSession(GetClientFd(pid)); in OnDeactivateCoordination()
1044 SessionPtr sess = GetSession(GetClientFd(pid)); in OnGetCoordinationState()
1064 auto sess = GetSession(GetClientFd(pid)); in OnAddHotAreaListener()
1077 auto sess = GetSession(GetClientFd(pid)); in OnRemoveHotAreaListener()
H A Dstream_server.cpp54 int32_t StreamServer::GetClientFd(int32_t pid) const in GetClientFd() function in OHOS::Msdp::DeviceStatus::StreamServer
284 int32_t fd = GetClientFd(pid); in GetSessionByPid()
/ohos5.0/base/sensors/sensor/services/src/
H A Dstream_server.cpp45 int32_t StreamServer::GetClientFd(int32_t pid) in GetClientFd() function in OHOS::Sensors::StreamServer
73 int32_t fd = GetClientFd(pid); in GetSessionByPid()
/ohos5.0/foundation/multimodalinput/input/test/facility/mock/include/
H A Dinput_windows_manager_mock.h37 MOCK_METHOD(int32_t, GetClientFd, (std::shared_ptr<PointerEvent>));
38 MOCK_METHOD(int32_t, GetClientFd, (std::shared_ptr<PointerEvent>, int32_t));
/ohos5.0/base/sensors/sensor/services/include/
H A Dstream_server.h31 int32_t GetClientFd(int32_t pid);
/ohos5.0/foundation/multimodalinput/input/service/window_manager/include/
H A Di_input_windows_manager.h67 virtual int32_t GetClientFd(std::shared_ptr<PointerEvent> pointerEvent) = 0;
68 virtual int32_t GetClientFd(std::shared_ptr<PointerEvent> pointerEvent, int32_t windowId) = 0;
H A Dinput_windows_manager.h57 int32_t GetClientFd(std::shared_ptr<PointerEvent> pointerEvent);
58 int32_t GetClientFd(std::shared_ptr<PointerEvent> pointerEvent, int32_t windowId);
/ohos5.0/base/msdp/device_status/services/native/include/
H A Dstream_server.h52 int32_t GetClientFd(int32_t pid) const;
/ohos5.0/foundation/multimodalinput/input/service/event_dispatch/include/
H A Devent_dispatch_handler.h70 int32_t GetClientFd(int32_t pid, std::shared_ptr<PointerEvent> point);
/ohos5.0/foundation/multimodalinput/input/service/module_loader/include/
H A Duds_server.h57 int32_t GetClientFd(int32_t pid) const;
/ohos5.0/foundation/multimodalinput/input/service/module_loader/src/
H A Duds_server.cpp56 int32_t UDSServer::GetClientFd(int32_t pid) const in GetClientFd() function in OHOS::MMI::UDSServer
344 int32_t fd = GetClientFd(pid); in GetSessionByPid()
/ohos5.0/foundation/multimodalinput/input/service/nap_process/src/
H A Dnap_process.cpp63 int32_t fd = udsServer_->GetClientFd(napClientPid_); in NotifyBundleName()
/ohos5.0/foundation/multimodalinput/input/service/event_handler/src/
H A Danr_manager.cpp140 auto fd = udsServer_->GetClientFd(anrNoticedPid_); in AddTimer()
/ohos5.0/foundation/communication/ipc/ipc/native/src/mock/include/
H A Ddbinder_databus_invoker.h50 virtual int32_t GetClientFd() const override;
H A Ddbinder_base_invoker_interface.h132 GetClientFd(), 0, reply, seqNumber, result); in SendReply()
H A Ddbinder_base_invoker_define.h90 virtual int32_t GetClientFd() const = 0;
H A Ddbinder_base_invoker_process.h58 int32_t oldClientFd = GetClientFd(); in ProcessTransaction()
/ohos5.0/foundation/communication/ipc/ipc/native/src/core/source/
H A Dipc_object_stub.cpp238 int32_t listenFd = invoker->GetClientFd(); in DBinderIncRefsTransaction()
267 int32_t listenFd = invoker->GetClientFd(); in DBinderDecRefsTransaction()
/ohos5.0/foundation/multimodalinput/input/service/window_manager/src/
H A Dinput_windows_manager.cpp330 int32_t InputWindowsManager::GetClientFd(std::shared_ptr<PointerEvent> pointerEvent) in GetClientFd() function in OHOS::MMI::InputWindowsManager
396 return udsServer_->GetClientFd(windowInfo->pid); in GetClientFd()
401 return udsServer_->GetClientFd(-1); in GetClientFd()
444 return udsServer_->GetClientFd(pid); in GetClientFd()
565 fd = udsServer_->GetClientFd(pid); in UpdateTarget()
609 int32_t InputWindowsManager::GetClientFd(std::shared_ptr<PointerEvent> pointerEvent, int32_t window… in GetClientFd() function in OHOS::MMI::InputWindowsManager
648 return udsServer_->GetClientFd(windowInfo->pid); in GetClientFd()
1376 auto fd = udsServer_->GetClientFd(lastWindowInfo_.pid); in UpdateDisplayInfo()
1502 if (udsServer_ != nullptr && udsServer_->GetClientFd(lastWindowInfo_.pid) != INVALID_FD) { in UpdateDisplayInfo()
2940 auto fd = udsServer_->GetClientFd(windowInfo.pid); in UpdateDisplayInfo()
[all …]
/ohos5.0/foundation/multimodalinput/input/service/module_loader/test/
H A Duds_server_test.cpp852 ASSERT_EQ(udsServer.GetClientFd(pid), fd);

12