Home
last modified time | relevance | path

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

/frameworks/base/services/java/com/android/server/wm/
DSession.java386 mService.mSessions.add(this); in windowAddedLocked()
398 mService.mSessions.remove(this); in killSessionLocked()
DWindowManagerService.java315 final HashSet<Session> mSessions = new HashSet<Session>(); field in WindowManagerService
8841 if (!mSessions.contains(ws.mSession)) {
9395 if (mSessions.size() > 0) { in dumpSessionsLocked()
9396 Iterator<Session> it = mSessions.iterator(); in dumpSessionsLocked()
/frameworks/base/core/java/android/accounts/
DAccountManagerService.java147 private final LinkedHashMap<String, Session> mSessions = new LinkedHashMap<String, Session>(); field in AccountManagerService
1448 synchronized (mSessions) { in Session()
1449 mSessions.put(toString(), this); in Session()
1470 synchronized (mSessions) { in close()
1471 if (mSessions.remove(toString()) == null) { in close()
1867 synchronized (mSessions) { in dump()
1869 fout.println("Active Sessions: " + mSessions.size()); in dump()
1870 for (Session session : mSessions.values()) { in dump()