/base/powermgr/power_manager/services/zidl/src/ |
D | power_mgr_stub.cpp | 234 std::vector<std::pair<pid_t, pid_t>> processInfos {}; in ProxyRunningLocksStub() local 243 processInfos.resize(size); in ProxyRunningLocksStub() 245 READ_PARCEL_WITH_RET(data, Int32, processInfos[i].first, E_READ_PARCEL_ERROR); in ProxyRunningLocksStub() 246 READ_PARCEL_WITH_RET(data, Int32, processInfos[i].second, E_READ_PARCEL_ERROR); in ProxyRunningLocksStub() 248 bool ret = ProxyRunningLocks(isProxied, processInfos); in ProxyRunningLocksStub()
|
D | power_mgr_proxy.cpp | 224 …rProxy::ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos) in ProxyRunningLocks() argument 238 size_t size = processInfos.size(); in ProxyRunningLocks() 242 WRITE_PARCEL_WITH_RET(data, Int32, processInfos[i].first, false); in ProxyRunningLocks() 243 WRITE_PARCEL_WITH_RET(data, Int32, processInfos[i].second, false); in ProxyRunningLocks()
|
/base/powermgr/power_manager/test/unittest/src/ |
D | running_lock_test.cpp | 371 std::vector<std::pair<pid_t, pid_t>> processInfos; variable 372 processInfos.push_back(std::pair<pid_t, pid_t>(curPid, curUid)); 374 EXPECT_TRUE(powerMgrClient.ProxyRunningLocks(true, processInfos));
|
D | power_getcontroller_mock_test.cpp | 81 …bool ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos) o…
|
/base/powermgr/power_manager/test/unittest/include/servicetest/ |
D | powermgr_service_test_proxy.h | 48 const std::vector<std::pair<pid_t, pid_t>>& processInfos);
|
/base/powermgr/power_manager/interfaces/inner_api/native/include/ |
D | power_mgr_client.h | 130 … bool ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos);
|
D | ipower_mgr.h | 44 …ol ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos) = 0;
|
/base/powermgr/power_manager/frameworks/native/ |
D | power_mgr_client.cpp | 222 …Client::ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos) in ProxyRunningLocks() argument 225 return proxy_->ProxyRunningLocks(isProxied, processInfos); in ProxyRunningLocks()
|
/base/powermgr/power_manager/services/zidl/include/ |
D | power_mgr_proxy.h | 53 const std::vector<std::pair<pid_t, pid_t>>& processInfos) override;
|
/base/powermgr/power_manager/test/unittest/src/servicetest/ |
D | powermgr_service_test_proxy.cpp | 229 const std::vector<std::pair<pid_t, pid_t>>& processInfos) in ProxyRunningLocks() argument 242 int32_t size = processInfos.size(); in ProxyRunningLocks() 246 data.WriteInt32(processInfos[i].first); in ProxyRunningLocks() 247 data.WriteInt32(processInfos[i].second); in ProxyRunningLocks()
|
/base/powermgr/power_manager/services/native/include/ |
D | running_lock_mgr.h | 60 … void ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos);
|
D | power_mgr_service.h | 69 const std::vector<std::pair<pid_t, pid_t>>& processInfos) override;
|
/base/powermgr/power_manager/services/native/src/ |
D | running_lock_mgr.cpp | 500 …ockMgr::ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos) in ProxyRunningLocks() argument 502 for (const auto& [pid, uid] : processInfos) { in ProxyRunningLocks()
|
D | power_mgr_service.cpp | 668 …ervice::ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos) in ProxyRunningLocks() argument 674 runningLockMgr_->ProxyRunningLocks(isProxied, processInfos); in ProxyRunningLocks()
|