Searched refs:mPausedStateMap (Results 1 – 2 of 2) sorted by relevance
212 auto it = mPausedStateMap.find(SessionKeyType(clientId, sessionId)); in reportError()213 if (it == mPausedStateMap.end()) { in reportError()214 mPausedStateMap.emplace(SessionKeyType(clientId, sessionId), in reportError()293 mPausedStateMap.erase(SessionKeyType(clientId, sessionId)); in stop()519 mPausedStateMap[SessionKeyType(clientId, sessionId)] = pauseStates; in handlePause()529 auto it = mPausedStateMap.find(SessionKeyType(clientId, sessionId)); in handleResume()530 if (it != mPausedStateMap.end()) { in handleResume()532 mPausedStateMap.erase(it); in handleResume()
90 std::map<SessionKeyType, std::shared_ptr<ndk::ScopedAParcel>> mPausedStateMap; variable