Home
last modified time | relevance | path

Searched refs:closeSessionChannel (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/core/java/android/os/
DIHintManager.aidl52 oneway void closeSessionChannel(); in closeSessionChannel() method
/frameworks/native/services/powermanager/
DPowerHalController.cpp164 HalResult<void> PowerHalController::closeSessionChannel(int tgid, int uid) { in closeSessionChannel() function in android::power::PowerHalController
167 processHalResult(handle->closeSessionChannel(tgid, uid), in closeSessionChannel()
DPowerHalWrapper.cpp71 HalResult<void> EmptyHalWrapper::closeSessionChannel(int, int) { in closeSessionChannel() function in android::power::EmptyHalWrapper
279 HalResult<void> AidlHalWrapper::closeSessionChannel(int tgid, int uid) { in closeSessionChannel() function in android::power::AidlHalWrapper
280 return HalResult<void>::fromStatus(mHandle->closeSessionChannel(tgid, uid)); in closeSessionChannel()
/frameworks/base/services/tests/servicestests/src/com/android/server/power/hint/
DHintManagerServiceTest.java835 service.getBinderServiceInstance().closeSessionChannel();
836 verify(mIPowerMock, times(1)).closeSessionChannel(eq(TGID), eq(UID));
842 service.getBinderServiceInstance().closeSessionChannel();
843 verify(mIPowerMock, times(1)).closeSessionChannel(eq(TGID), eq(UID));
880 service.getBinderServiceInstance().closeSessionChannel();
881 verify(mIPowerMock, times(1)).closeSessionChannel(eq(TGID), eq(UID));
891 doThrow(RemoteException.class).when(mIPowerMock).closeSessionChannel(anyInt(), anyInt());
894 service.getBinderServiceInstance().closeSessionChannel();
904 service.getBinderServiceInstance().closeSessionChannel();
905 service.getBinderServiceInstance().closeSessionChannel();
[all …]
/frameworks/native/include/powermanager/
DPowerHalWrapper.h65 virtual HalResult<void> closeSessionChannel(int tgid, int uid) = 0;
87 HalResult<void> closeSessionChannel(int tgid, int uid) override;
172 HalResult<void> closeSessionChannel(int tgid, int uid) override;
DPowerHalController.h74 virtual HalResult<void> closeSessionChannel(int tgid, int uid) override;
/frameworks/native/services/surfaceflinger/tests/unittests/mock/DisplayHardware/
DMockPowerHalController.h59 MOCK_METHOD(HalResult<void>, closeSessionChannel, (int tgid, int uid), (override));
DMockIPower.h61 MOCK_METHOD(ndk::ScopedAStatus, closeSessionChannel, (int32_t tgid, int32_t uid), (override));
/frameworks/native/services/powermanager/tests/
DPowerHalWrapperAidlTest.cpp66 MOCK_METHOD(ndk::ScopedAStatus, closeSessionChannel, (int32_t tgid, int32_t uid), (override));
312 EXPECT_CALL(*mMockHal.get(), closeSessionChannel(Eq(tgid), Eq(uid))) in TEST_F()
317 auto closeResult = mWrapper->closeSessionChannel(tgid, uid); in TEST_F()
/frameworks/base/native/android/tests/performance_hint/
DPerformanceHintNativeTest.cpp60 MOCK_METHOD(ScopedAStatus, closeSessionChannel, (), (override));
/frameworks/base/services/core/java/com/android/server/power/hint/
DHintManagerService.java511 mPowerHal.closeSessionChannel(mTgid, mUid); in closeChannel()
927 public void closeSessionChannel() { in closeSessionChannel() method in HintManagerService.BinderService