Searched refs:mSessions (Results 1 – 8 of 8) sorted by relevance
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
D | BordeauxSessionManager.java | 71 private ConcurrentHashMap<String, Session> mSessions = field in BordeauxSessionManager 88 Session session = mSessions.get(mKey); in modelChanged() 110 if (mSessions.containsKey(key.value)) { in getSessionBinder() 111 return mSessions.get(key.value).learner.getBinder(); in getSessionBinder() 121 mSessions.put(key.value, stored); in getSessionBinder() 134 mSessions.put(key.value, session); in getSessionBinder() 143 for (Map.Entry<String, Session> session : mSessions.entrySet()) { in saveSessions() 156 Session session = mSessions.get(key.value); in saveSession() 179 synchronized(mSessions) { in loadSessions() 180 mSessionStorage.getAllSessions(mSessions); in loadSessions() [all …]
|
/frameworks/av/media/libstagefright/foundation/ |
D | ANetworkSession.cpp | 934 ssize_t index = mSessions.indexOfKey(sessionID); in destroySession() 940 mSessions.removeItemsAt(index); in destroySession() 1151 mSessions.add(session->sessionID(), session); in createClientOrServer() 1171 ssize_t index = mSessions.indexOfKey(sessionID); in connectUDPSession() 1177 const sp<Session> session = mSessions.valueAt(index); in connectUDPSession() 1210 ssize_t index = mSessions.indexOfKey(sessionID); in sendRequest() 1216 const sp<Session> session = mSessions.valueAt(index); in sendRequest() 1228 ssize_t index = mSessions.indexOfKey(sessionID); in switchToWebSocketMode() 1234 const sp<Session> session = mSessions.valueAt(index); in switchToWebSocketMode() 1262 for (size_t i = 0; i < mSessions.size(); ++i) { in threadLoop() [all …]
|
/frameworks/av/drm/mediadrm/plugins/mock/ |
D | MockDrmCryptoPlugin.cpp | 90 mSessions.add(sessionId); in openSession() 105 mSessions.removeAt(index); in closeSession() 605 ALOGD("findSession: nsessions=%d, size=%d", mSessions.size(), sessionId.size()); in findSession() 606 for (size_t i = 0; i < mSessions.size(); ++i) { in findSession() 607 if (memcmp(mSessions[i].array(), sessionId.array(), sessionId.size()) == 0) { in findSession()
|
D | MockDrmCryptoPlugin.h | 130 SortedVector<Vector<uint8_t> > mSessions; variable
|
/frameworks/av/include/media/stagefright/foundation/ |
D | ANetworkSession.h | 107 KeyedVector<int32_t, sp<Session> > mSessions; member
|
/frameworks/base/services/java/com/android/server/wm/ |
D | Session.java | 462 mService.mSessions.add(this); in windowAddedLocked() 474 mService.mSessions.remove(this); in killSessionLocked()
|
D | WindowManagerService.java | 333 final HashSet<Session> mSessions = new HashSet<Session>(); field in WindowManagerService 9673 if (!mSessions.contains(wsa.mSession)) { in reclaimSomeSurfaceMemoryLocked() 10279 if (mSessions.size() > 0) { in dumpSessionsLocked() 10280 Iterator<Session> it = mSessions.iterator(); in dumpSessionsLocked()
|
/frameworks/base/services/java/com/android/server/accounts/ |
D | AccountManagerService.java | 177 private final LinkedHashMap<String, Session> mSessions = new LinkedHashMap<String, Session>(); field in AccountManagerService 2056 synchronized (mSessions) { in Session() 2057 mSessions.put(toString(), this); in Session() 2080 synchronized (mSessions) { in close() 2081 if (mSessions.remove(toString()) == null) { in close() 2562 synchronized (mSessions) { in dumpUser() 2564 fout.println("Active Sessions: " + mSessions.size()); in dumpUser() 2565 for (Session session : mSessions.values()) { in dumpUser()
|