Home
last modified time | relevance | path

Searched refs:notifyWakeup (Results 1 – 5 of 5) sorted by relevance

/system/hardware/interfaces/suspend/1.0/default/internal_aidl/android/system/suspend/
DISuspendCallback.aidl30 void notifyWakeup(boolean success); in notifyWakeup() method
/system/hardware/interfaces/suspend/1.0/default/
DSuspendControlService.cpp84 void SuspendControlService::notifyWakeup(bool success) { in notifyWakeup() function in android::system::suspend::V1_0::SuspendControlService
93 callback->notifyWakeup(success).isOk(); // ignore errors in notifyWakeup()
DSuspendControlService.h47 void notifyWakeup(bool success);
DSystemSuspendUnitTest.cpp304 MOCK_METHOD1(notifyWakeup, binder::Status(bool));
310 binder::Status notifyWakeup(bool x) { in notifyWakeup() function in android::MockCallback
311 return mDisabled ? binder::Status::ok() : mImpl->notifyWakeup(x); in notifyWakeup()
336 EXPECT_CALL(impl, notifyWakeup).Times(testing::AtLeast(numWakeups)); in TEST_F()
366 binder::Status notifyWakeup(bool x) { in notifyWakeup() function in android::CbRegisteringCb
DSystemSuspend.cpp202 mControlService->notifyWakeup(success); in initAutosuspend()