/frameworks/base/core/java/android/os/ |
D | IHintManager.aidl | 52 oneway void closeSessionChannel(); in closeSessionChannel() method
|
/frameworks/native/services/powermanager/ |
D | PowerHalController.cpp | 164 HalResult<void> PowerHalController::closeSessionChannel(int tgid, int uid) { in closeSessionChannel() function in android::power::PowerHalController 167 processHalResult(handle->closeSessionChannel(tgid, uid), in closeSessionChannel()
|
D | PowerHalWrapper.cpp | 71 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/ |
D | HintManagerServiceTest.java | 835 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/ |
D | PowerHalWrapper.h | 65 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;
|
D | PowerHalController.h | 74 virtual HalResult<void> closeSessionChannel(int tgid, int uid) override;
|
/frameworks/native/services/surfaceflinger/tests/unittests/mock/DisplayHardware/ |
D | MockPowerHalController.h | 59 MOCK_METHOD(HalResult<void>, closeSessionChannel, (int tgid, int uid), (override));
|
D | MockIPower.h | 61 MOCK_METHOD(ndk::ScopedAStatus, closeSessionChannel, (int32_t tgid, int32_t uid), (override));
|
/frameworks/native/services/powermanager/tests/ |
D | PowerHalWrapperAidlTest.cpp | 66 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/ |
D | PerformanceHintNativeTest.cpp | 60 MOCK_METHOD(ScopedAStatus, closeSessionChannel, (), (override));
|
/frameworks/base/services/core/java/com/android/server/power/hint/ |
D | HintManagerService.java | 511 mPowerHal.closeSessionChannel(mTgid, mUid); in closeChannel() 927 public void closeSessionChannel() { in closeSessionChannel() method in HintManagerService.BinderService
|