/base/powermgr/power_manager/test/unittest/include/servicetest/ |
D | powermgr_service_test_proxy.h | 46 bool ProxyRunningLock(bool isProxied, pid_t pid, pid_t uid); 47 bool ProxyRunningLocks(bool isProxied,
|
/base/powermgr/power_manager/interfaces/inner_api/native/include/ |
D | power_mgr_client.h | 129 bool ProxyRunningLock(bool isProxied, pid_t pid, pid_t uid); 130 … bool ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos);
|
D | ipower_mgr.h | 43 virtual bool ProxyRunningLock(bool isProxied, pid_t pid, pid_t uid) = 0; 44 …virtual bool ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& process…
|
/base/powermgr/power_manager/services/native/include/ |
D | running_lock_mgr.h | 59 bool ProxyRunningLock(bool isProxied, pid_t pid, pid_t uid); 60 … void ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos); 74 void ProxyRunningLockInner(bool isProxied, pid_t pid, pid_t uid);
|
D | power_mgr_service.h | 67 virtual bool ProxyRunningLock(bool isProxied, pid_t pid, pid_t uid) override; 68 virtual bool ProxyRunningLocks(bool isProxied,
|
/base/powermgr/power_manager/frameworks/native/ |
D | power_mgr_client.cpp | 216 bool PowerMgrClient::ProxyRunningLock(bool isProxied, pid_t pid, pid_t uid) in ProxyRunningLock() argument 219 return proxy_->ProxyRunningLock(isProxied, pid, uid); in ProxyRunningLock() 222 bool PowerMgrClient::ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& … in ProxyRunningLocks() argument 225 return proxy_->ProxyRunningLocks(isProxied, processInfos); in ProxyRunningLocks()
|
/base/powermgr/power_manager/services/zidl/include/ |
D | power_mgr_proxy.h | 51 virtual bool ProxyRunningLock(bool isProxied, pid_t pid, pid_t uid) override; 52 virtual bool ProxyRunningLocks(bool isProxied,
|
/base/powermgr/power_manager/services/zidl/src/ |
D | power_mgr_stub.cpp | 220 bool isProxied = false; in ProxyRunningLockStub() local 223 READ_PARCEL_WITH_RET(data, Bool, isProxied, E_READ_PARCEL_ERROR); in ProxyRunningLockStub() 226 bool ret = ProxyRunningLock(isProxied, pid, uid); in ProxyRunningLockStub() 233 bool isProxied = false; in ProxyRunningLocksStub() local 235 READ_PARCEL_WITH_RET(data, Bool, isProxied, E_READ_PARCEL_ERROR); in ProxyRunningLocksStub() 248 bool ret = ProxyRunningLocks(isProxied, processInfos); in ProxyRunningLocksStub()
|
D | power_mgr_proxy.cpp | 195 bool PowerMgrProxy::ProxyRunningLock(bool isProxied, pid_t pid, pid_t uid) in ProxyRunningLock() argument 209 WRITE_PARCEL_WITH_RET(data, Bool, isProxied, false); in ProxyRunningLock() 224 bool PowerMgrProxy::ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& p… in ProxyRunningLocks() argument 239 WRITE_PARCEL_WITH_RET(data, Bool, isProxied, false); in ProxyRunningLocks()
|
/base/powermgr/power_manager/services/native/src/ |
D | running_lock_mgr.cpp | 460 bool RunningLockMgr::ProxyRunningLock(bool isProxied, pid_t pid, pid_t uid) in ProxyRunningLock() argument 468 if (isProxied) { in ProxyRunningLock() 480 void RunningLockMgr::ProxyRunningLockInner(bool isProxied, pid_t pid, pid_t uid) in ProxyRunningLockInner() argument 492 if (isProxied) { in ProxyRunningLockInner() 500 void RunningLockMgr::ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& … in ProxyRunningLocks() argument 503 ProxyRunningLock(isProxied, pid, uid); in ProxyRunningLocks()
|
D | power_mgr_service.cpp | 659 bool PowerMgrService::ProxyRunningLock(bool isProxied, pid_t pid, pid_t uid) in ProxyRunningLock() argument 665 return runningLockMgr_->ProxyRunningLock(isProxied, pid, uid); in ProxyRunningLock() 668 bool PowerMgrService::ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>&… in ProxyRunningLocks() argument 674 runningLockMgr_->ProxyRunningLocks(isProxied, processInfos); in ProxyRunningLocks()
|
/base/powermgr/power_manager/test/unittest/src/ |
D | power_getcontroller_mock_test.cpp | 80 bool ProxyRunningLock(bool isProxied, pid_t pid, pid_t uid) override; 81 …bool ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos) o…
|
/base/powermgr/power_manager/test/fuzztest/power_fuzzer/ |
D | power_fuzzer.cpp | 175 bool isProxied = static_cast<bool>(type); in ProxyRunningLock() local 178 g_powerMgrClient.ProxyRunningLock(isProxied, pid, uid); in ProxyRunningLock()
|
/base/powermgr/power_manager/test/unittest/src/servicetest/ |
D | powermgr_service_test_proxy.cpp | 199 bool PowerMgrServiceTestProxy::ProxyRunningLock(bool isProxied, pid_t pid, pid_t uid) in ProxyRunningLock() argument 212 data.WriteBool(isProxied); in ProxyRunningLock() 228 bool PowerMgrServiceTestProxy::ProxyRunningLocks(bool isProxied, in ProxyRunningLocks() argument 243 data.WriteBool(isProxied); in ProxyRunningLocks()
|