Home
last modified time | relevance | path

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

/hardware/qcom/gps/msm8998/location/
DLocationAPIClientBase.cpp225 if (mSessionMap.find(id) != mSessionMap.end()) { in locAPIStartSession()
261 mSessionMap[id] = entity; in locAPIStartSession()
278 if (mSessionMap.find(id) != mSessionMap.end()) { in locAPIStopSession()
279 SessionEntity entity = mSessionMap[id]; in locAPIStopSession()
285 mSessionMap.erase(id); in locAPIStopSession()
319 if (mSessionMap.find(id) != mSessionMap.end()) { in locAPIUpdateSessionOptions()
320 SessionEntity& entity = mSessionMap[id]; in locAPIUpdateSessionOptions()
DLocationAPIClientBase.h463 std::map<uint32_t, SessionEntity> mSessionMap; variable
/hardware/google/pixel/power-libperfmgr/aidl/
DPowerSessionManager.cpp576 mSessionMap[sessionId] = session; in registerSession()
582 mSessionMap.erase(sessionId); in unregisterSession()
588 auto ptr = mSessionMap.find(sessionId); in getSession()
589 if (ptr == mSessionMap.end()) { in getSession()
594 mSessionMap.erase(sessionId); in getSession()
603 mSessionMap.clear(); in clear()
DPowerSessionManager.h142 std::map<int, std::weak_ptr<void>> mSessionMap GUARDED_BY(mSessionMapMutex);