Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/service/contentcapture/
H A DContentCaptureService.java521 int sessionIdInt = event.getSessionId(); in handleSendEvents() local
522 if (sessionIdInt != lastSessionId) { in handleSendEvents()
523 sessionId = new ContentCaptureSessionId(sessionIdInt); in handleSendEvents()
524 lastSessionId = sessionIdInt; in handleSendEvents()
537 mSessionUids.put(sessionIdInt, uid); in handleSendEvents()
542 mSessionUids.delete(sessionIdInt); in handleSendEvents()
572 int sessionIdInt = events.isEmpty() ? NO_SESSION_ID : events.get(0).getSessionId(); in handleOnLoginDetected() local
573 ContentCaptureSessionId sessionId = new ContentCaptureSessionId(sessionIdInt); in handleOnLoginDetected()
576 new ContentCaptureEvent(sessionIdInt, TYPE_SESSION_RESUMED); in handleOnLoginDetected()
582 ContentCaptureEvent endEvent = new ContentCaptureEvent(sessionIdInt, TYPE_SESSION_PAUSED); in handleOnLoginDetected()