Home
last modified time | relevance | path

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

/base/powermgr/power_manager/services/native/src/
Drunning_lock_proxy.cpp26 auto proxyIter = proxyMap_.find(proxyKey); in AddRunningLock() local
27 if (proxyIter == proxyMap_.end()) { in AddRunningLock()
30 … std::tie(proxyIter, std::ignore) = proxyMap_.emplace(proxyKey, std::make_pair(tmpLockList, 0)); in AddRunningLock()
33 auto& remoteObjList = proxyIter->second.first; in AddRunningLock()
46 auto proxyIter = proxyMap_.find(proxyKey); in RemoveRunningLock() local
47 if (proxyIter == proxyMap_.end()) { in RemoveRunningLock()
52 auto& remoteObjList = proxyIter->second.first; in RemoveRunningLock()
68 auto proxyIter = proxyMap_.find(proxyKey); in GetRemoteObjectList() local
69 if (proxyIter != proxyMap_.end()) { in GetRemoteObjectList()
70 return proxyIter->second.first; in GetRemoteObjectList()
[all …]