Home
last modified time | relevance | path

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

/frameworks/base/services/contentcapture/java/com/android/server/contentcapture/
DContentCapturePerUserService.java98 private final SparseArray<ContentCaptureServerSession> mSessions = new SparseArray<>();
235 final ContentCaptureServerSession session = mSessions.valueAt(i); in resurrectSessionsLocked()
246 final ContentCaptureServerSession session = mSessions.valueAt(i); in onPackageUpdatingLocked()
323 final ContentCaptureServerSession existingSession = mSessions.get(sessionId); in startSessionLocked()
357 final ContentCaptureServerSession newSession = new ContentCaptureServerSession(mLock, in startSessionLocked()
374 final ContentCaptureServerSession session = mSessions.get(sessionId); in finishSessionLocked()
463 final ContentCaptureServerSession session = mSessions.get(id); in sendActivityAssistDataLocked()
491 private ContentCaptureServerSession getSession(@NonNull IBinder activityToken) { in getSession()
493 final ContentCaptureServerSession session = mSessions.valueAt(i); in getSession()
519 final ContentCaptureServerSession session = mSessions.valueAt(i); in destroySessionsLocked()
[all …]
DContentCaptureServerSession.java47 final class ContentCaptureServerSession { class
49 private static final String TAG = ContentCaptureServerSession.class.getSimpleName();
78 ContentCaptureServerSession(@NonNull Object lock, @NonNull IBinder activityToken, in ContentCaptureServerSession() method in ContentCaptureServerSession