Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/contentcapture/
DContentCaptureContext.java44 public final class ContentCaptureContext implements Parcelable { class
114 public ContentCaptureContext(@Nullable ContentCaptureContext clientContext, in ContentCaptureContext() method in ContentCaptureContext
131 private ContentCaptureContext(@NonNull Builder builder) { in ContentCaptureContext() method in ContentCaptureContext
142 public ContentCaptureContext(@Nullable ContentCaptureContext original, int extraFlags) { in ContentCaptureContext() method in ContentCaptureContext
241 public static ContentCaptureContext forLocusId(@NonNull String id) { in forLocusId()
299 public ContentCaptureContext build() { in build()
302 return new ContentCaptureContext(this); in build()
381 …public static final @android.annotation.NonNull Parcelable.Creator<ContentCaptureContext> CREATOR =
382 new Parcelable.Creator<ContentCaptureContext>() {
386 public ContentCaptureContext createFromParcel(Parcel parcel) {
[all …]
DChildContentCaptureSession.java36 @NonNull ContentCaptureContext clientContext) { in ChildContentCaptureSession()
50 ContentCaptureSession newChild(@NonNull ContentCaptureContext clientContext) { in newChild()
62 public void updateContentCaptureContext(@Nullable ContentCaptureContext context) { in updateContentCaptureContext()
DContentCaptureSession.java206 private ContentCaptureContext mClientContext;
228 ContentCaptureSession(@NonNull ContentCaptureContext initialContext) { in ContentCaptureSession()
261 @NonNull ContentCaptureContext context) { in createContentCaptureSession()
276 abstract ContentCaptureSession newChild(@NonNull ContentCaptureContext context); in newChild()
288 public final void setContentCaptureContext(@Nullable ContentCaptureContext context) { in setContentCaptureContext()
293 abstract void updateContentCaptureContext(@Nullable ContentCaptureContext context); in updateContentCaptureContext()
303 public final ContentCaptureContext getContentCaptureContext() { in getContentCaptureContext()
DContentCaptureContext.aidl19 parcelable ContentCaptureContext;
DContentCaptureManager.java490 mFlags &= ~ContentCaptureContext.FLAG_DISABLED_BY_APP; in setContentCaptureEnabled()
492 mFlags |= ContentCaptureContext.FLAG_DISABLED_BY_APP; in setContentCaptureEnabled()
516 mFlags |= ContentCaptureContext.FLAG_DISABLED_BY_FLAG_SECURE; in updateWindowAttributes()
518 mFlags &= ~ContentCaptureContext.FLAG_DISABLED_BY_FLAG_SECURE; in updateWindowAttributes()
DIContentCaptureManager.aidl20 import android.view.contentcapture.ContentCaptureContext;
DContentCaptureEvent.java138 private @Nullable ContentCaptureContext mClientContext;
199 public ContentCaptureEvent setClientContext(@NonNull ContentCaptureContext clientContext) { in setClientContext()
227 public ContentCaptureContext getContentCaptureContext() { in getContentCaptureContext()
DMainContentCaptureSession.java194 ContentCaptureSession newChild(@NonNull ContentCaptureContext clientContext) { in newChild()
509 public void updateContentCaptureContext(@Nullable ContentCaptureContext context) { in updateContentCaptureContext()
608 @NonNull ContentCaptureContext clientContext) { in notifyChildSessionStarted()
646 void notifyContextUpdated(int sessionId, @Nullable ContentCaptureContext context) { in notifyContextUpdated()
/frameworks/base/core/tests/coretests/src/android/view/contentcapture/
DContentCaptureContextTest.java38 final ContentCaptureContext ctx = new ContentCaptureContext(/* clientContext= */ null, in testConstructorAdditionalFlags()
40 final ContentCaptureContext newCtx = new ContentCaptureContext(ctx, /* extraFlags= */ 2); in testConstructorAdditionalFlags()
DContentCaptureSessionTest.java130 ContentCaptureSession newChild(ContentCaptureContext context) { in newChild()
165 public void updateContentCaptureContext(ContentCaptureContext context) { in updateContentCaptureContext()
DContentCaptureEventTest.java55 private final ContentCaptureContext mClientContext =
56 new ContentCaptureContext.Builder(ID).build();
184 final ContentCaptureContext clientContext = event.getContentCaptureContext(); in assertSessionStartedEvent()
307 final ContentCaptureContext clientContext = event.getContentCaptureContext(); in assertContextUpdatedEvent()
/frameworks/base/services/contentcapture/java/com/android/server/contentcapture/
DContentCaptureServerSession.java36 import android.view.contentcapture.ContentCaptureContext;
55 private final ContentCaptureContext mContentCaptureContext;
88 mContentCaptureContext = new ContentCaptureContext(/* clientContext= */ null, in ContentCaptureServerSession()
200 remoteService.onSessionStarted(new ContentCaptureContext(mContentCaptureContext, in resurrectLocked()
201 ContentCaptureContext.FLAG_RECONNECTED), mId, mUid, mSessionStateReceiver, in resurrectLocked()
DRemoteContentCaptureService.java35 import android.view.contentcapture.ContentCaptureContext;
109 public void onSessionStarted(@Nullable ContentCaptureContext context, int sessionId, int uid, in onSessionStarted()
/frameworks/base/core/java/android/service/contentcapture/
DIContentCaptureService.aidl23 import android.view.contentcapture.ContentCaptureContext;
38 void onSessionStarted(in ContentCaptureContext context, int sessionId, int uid, in onSessionStarted()
DContentCaptureService.java46 import android.view.contentcapture.ContentCaptureContext;
142 public void onSessionStarted(ContentCaptureContext context, int sessionId, int uid,
294 public void onCreateContentCaptureSession(@NonNull ContentCaptureContext context, in onCreateContentCaptureSession()
411 private void handleOnCreateSession(@NonNull ContentCaptureContext context, in handleOnCreateSession()
418 if ((clientFlags & ContentCaptureContext.FLAG_DISABLED_BY_FLAG_SECURE) != 0) { in handleOnCreateSession()
421 if ((clientFlags & ContentCaptureContext.FLAG_DISABLED_BY_APP) != 0) { in handleOnCreateSession()
462 final ContentCaptureContext clientContext = event.getContentCaptureContext(); in handleSendEvents()
/frameworks/base/core/java/android/content/pm/
DShortcutInfo.java46 import android.view.contentcapture.ContentCaptureContext;
/frameworks/base/api/
Dtest-current.txt2610 …nCreateContentCaptureSession(@NonNull android.view.contentcapture.ContentCaptureContext, @NonNull …
3364 public final class ContentCaptureContext implements android.os.Parcelable {
3377 …method @Nullable public android.view.contentcapture.ContentCaptureContext getContentCaptureContext…
Dsystem-current.txt6370 …nCreateContentCaptureSession(@NonNull android.view.contentcapture.ContentCaptureContext, @NonNull …
9472 public final class ContentCaptureContext implements android.os.Parcelable {
9485 …method @Nullable public android.view.contentcapture.ContentCaptureContext getContentCaptureContext…
/frameworks/base/core/java/android/app/
DNotification.java86 import android.view.contentcapture.ContentCaptureContext;
/frameworks/base/services/
Dart-profile6099 …entCaptureService;->onSessionStarted(Landroid/view/contentcapture/ContentCaptureContext;Ljava/lang…