Home
last modified time | relevance | path

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

/base/powermgr/power_manager/services/zidl/src/
Dpower_mgr_stub.cpp234 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()
Dpower_mgr_proxy.cpp224 …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/
Drunning_lock_test.cpp371 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));
Dpower_getcontroller_mock_test.cpp81 …bool ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos) o…
/base/powermgr/power_manager/test/unittest/include/servicetest/
Dpowermgr_service_test_proxy.h48 const std::vector<std::pair<pid_t, pid_t>>& processInfos);
/base/powermgr/power_manager/interfaces/inner_api/native/include/
Dpower_mgr_client.h130 … bool ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos);
Dipower_mgr.h44 …ol ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos) = 0;
/base/powermgr/power_manager/frameworks/native/
Dpower_mgr_client.cpp222 …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/
Dpower_mgr_proxy.h53 const std::vector<std::pair<pid_t, pid_t>>& processInfos) override;
/base/powermgr/power_manager/test/unittest/src/servicetest/
Dpowermgr_service_test_proxy.cpp229 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/
Drunning_lock_mgr.h60 … void ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos);
Dpower_mgr_service.h69 const std::vector<std::pair<pid_t, pid_t>>& processInfos) override;
/base/powermgr/power_manager/services/native/src/
Drunning_lock_mgr.cpp500 …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()
Dpower_mgr_service.cpp668 …ervice::ProxyRunningLocks(bool isProxied, const std::vector<std::pair<pid_t, pid_t>>& processInfos) in ProxyRunningLocks() argument
674 runningLockMgr_->ProxyRunningLocks(isProxied, processInfos); in ProxyRunningLocks()