/base/web/webview/test/fuzztest/ohos_adapter/power_mgr_adapter/lock_fuzzer/ |
D | lock_fuzzer.cpp | 31 uint32_t timeOutMs = static_cast<uint32_t>(size); in DoSomethingInterestingWithMyAPI() local 34 runningLockAdapter.Lock(timeOutMs); in DoSomethingInterestingWithMyAPI()
|
/base/powermgr/power_manager/frameworks/native/ |
D | running_lock.cpp | 57 ErrCode RunningLock::Lock(int32_t timeOutMs) in Lock() argument 59 POWER_HILOGD(FEATURE_RUNNING_LOCK, "Lock timeOutMs: %{public}u", timeOutMs); in Lock() 67 proxy->Lock(token_, timeOutMs); in Lock()
|
/base/web/webview/ohos_adapter/power_mgr_adapter/src/ |
D | power_mgr_client_adapter_impl.cpp | 57 int32_t RunningLockAdapterImpl::Lock(uint32_t timeOutMs) in Lock() argument 60 return lock_->Lock(timeOutMs); in Lock()
|
/base/web/webview/ohos_adapter/interfaces/ |
D | power_mgr_client_adapter.h | 37 virtual int32_t Lock(uint32_t timeOutMs = 0) = 0;
|
/base/powermgr/power_manager/interfaces/inner_api/native/include/ |
D | running_lock.h | 47 ErrCode Lock(int32_t timeOutMs = -1);
|
D | ipower_mgr.h | 40 virtual bool Lock(const sptr<IRemoteObject>& remoteObj, int32_t timeOutMs) = 0;
|
/base/web/webview/ohos_adapter/power_mgr_adapter/include/ |
D | power_mgr_client_adapter_impl.h | 29 int32_t Lock(uint32_t timeOutMs = 0) override;
|
/base/powermgr/power_manager/test/unittest/src/servicetest/mock/ |
D | powermgr_service_mock_parcel_test.cpp | 80 int32_t timeOutMs = 0; variable 84 EXPECT_FALSE(g_powerMgrServiceProxy->Lock(token, timeOutMs));
|
/base/powermgr/power_manager/test/unittest/src/servicetest/ |
D | powermgr_service_native_test.cpp | 273 int32_t timeOutMs = 0; variable 282 g_powerMgrServiceProxy->Lock(token, timeOutMs); 308 int32_t timeOutMs = 0; variable 313 g_powerMgrServiceProxy->Lock(token, timeOutMs); 340 int32_t timeOutMs = 0; variable 345 g_powerMgrServiceProxy->Lock(token, timeOutMs);
|
D | powermgr_service_test_proxy.cpp | 122 bool PowerMgrServiceTestProxy::Lock(const sptr<IRemoteObject>& remoteObj, int32_t timeOutMs) in Lock() argument 136 data.WriteInt32(timeOutMs); in Lock()
|
/base/powermgr/power_manager/test/unittest/include/servicetest/ |
D | powermgr_service_test_proxy.h | 44 bool Lock(const sptr<IRemoteObject>& remoteObj, int32_t timeOutMs);
|
/base/powermgr/power_manager/services/zidl/include/ |
D | power_mgr_proxy.h | 49 virtual bool Lock(const sptr<IRemoteObject>& remoteObj, int32_t timeOutMs) override;
|
/base/powermgr/power_manager/services/zidl/src/ |
D | power_mgr_stub.cpp | 195 int32_t timeOutMs = 0; in LockStub() local 196 READ_PARCEL_WITH_RET(data, Int32, timeOutMs, E_READ_PARCEL_ERROR); in LockStub() 197 Lock(remoteObj, timeOutMs); in LockStub()
|
D | power_mgr_proxy.cpp | 115 bool PowerMgrProxy::Lock(const sptr<IRemoteObject>& remoteObj, int32_t timeOutMs) in Lock() argument 130 WRITE_PARCEL_WITH_RET(data, Int32, timeOutMs, false); in Lock()
|