Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/contentcapture/
DContentCaptureContext.java18 import static android.view.contentcapture.ContentCaptureSession.NO_SESSION_ID;
111 private int mParentSessionId = NO_SESSION_ID;
202 return mParentSessionId == NO_SESSION_ID ? null in getParentSessionId()
323 if (mParentSessionId != NO_SESSION_ID) { in dump()
355 if (mParentSessionId != NO_SESSION_ID) { in toString()
DContentCaptureEvent.java19 import static android.view.contentcapture.ContentCaptureSession.NO_SESSION_ID;
137 private int mParentSessionId = NO_SESSION_ID;
361 if (mSessionId != NO_SESSION_ID) { in dump()
364 if (mParentSessionId != NO_SESSION_ID) { in dump()
382 if (mType == TYPE_SESSION_STARTED && mParentSessionId != NO_SESSION_ID) { in toString()
DContentCaptureSession.java53 public static final int NO_SESSION_ID = 0; field in ContentCaptureSession
223 Preconditions.checkArgument(id != NO_SESSION_ID); in ContentCaptureSession()
579 } while (id == NO_SESSION_ID); in getRandomSessionId()
/frameworks/base/services/contentcapture/java/com/android/server/contentcapture/
DContentCaptureServerSession.java21 import static android.view.contentcapture.ContentCaptureSession.NO_SESSION_ID;
81 Preconditions.checkArgument(sessionId != NO_SESSION_ID); in ContentCaptureServerSession()
DContentCapturePerUserService.java20 import static android.view.contentcapture.ContentCaptureSession.NO_SESSION_ID;
417 if (id != NO_SESSION_ID) { in sendActivityAssistDataLocked()
550 return NO_SESSION_ID; in getSessionId()
/frameworks/base/core/tests/coretests/src/android/view/contentcapture/
DContentCaptureEventTest.java52 private static final int NO_SESSION_ID = 0; field in ContentCaptureEventTest
302 assertThat(event.getParentSessionId()).isEqualTo(NO_SESSION_ID); in assertContextUpdatedEvent()
/frameworks/base/core/java/android/service/contentcapture/
DContentCaptureService.java21 import static android.view.contentcapture.ContentCaptureSession.NO_SESSION_ID;
447 int lastSessionId = NO_SESSION_ID; in handleSendEvents()