Home
last modified time | relevance | path

Searched refs:timeOutMs (Results 1 – 14 of 14) sorted by relevance

/base/web/webview/test/fuzztest/ohos_adapter/power_mgr_adapter/lock_fuzzer/
Dlock_fuzzer.cpp31 uint32_t timeOutMs = static_cast<uint32_t>(size); in DoSomethingInterestingWithMyAPI() local
34 runningLockAdapter.Lock(timeOutMs); in DoSomethingInterestingWithMyAPI()
/base/powermgr/power_manager/frameworks/native/
Drunning_lock.cpp57 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/
Dpower_mgr_client_adapter_impl.cpp57 int32_t RunningLockAdapterImpl::Lock(uint32_t timeOutMs) in Lock() argument
60 return lock_->Lock(timeOutMs); in Lock()
/base/web/webview/ohos_adapter/interfaces/
Dpower_mgr_client_adapter.h37 virtual int32_t Lock(uint32_t timeOutMs = 0) = 0;
/base/powermgr/power_manager/interfaces/inner_api/native/include/
Drunning_lock.h47 ErrCode Lock(int32_t timeOutMs = -1);
Dipower_mgr.h40 virtual bool Lock(const sptr<IRemoteObject>& remoteObj, int32_t timeOutMs) = 0;
/base/web/webview/ohos_adapter/power_mgr_adapter/include/
Dpower_mgr_client_adapter_impl.h29 int32_t Lock(uint32_t timeOutMs = 0) override;
/base/powermgr/power_manager/test/unittest/src/servicetest/mock/
Dpowermgr_service_mock_parcel_test.cpp80 int32_t timeOutMs = 0; variable
84 EXPECT_FALSE(g_powerMgrServiceProxy->Lock(token, timeOutMs));
/base/powermgr/power_manager/test/unittest/src/servicetest/
Dpowermgr_service_native_test.cpp273 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);
Dpowermgr_service_test_proxy.cpp122 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/
Dpowermgr_service_test_proxy.h44 bool Lock(const sptr<IRemoteObject>& remoteObj, int32_t timeOutMs);
/base/powermgr/power_manager/services/zidl/include/
Dpower_mgr_proxy.h49 virtual bool Lock(const sptr<IRemoteObject>& remoteObj, int32_t timeOutMs) override;
/base/powermgr/power_manager/services/zidl/src/
Dpower_mgr_stub.cpp195 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()
Dpower_mgr_proxy.cpp115 bool PowerMgrProxy::Lock(const sptr<IRemoteObject>& remoteObj, int32_t timeOutMs) in Lock() argument
130 WRITE_PARCEL_WITH_RET(data, Int32, timeOutMs, false); in Lock()