Home
last modified time | relevance | path

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

12

/aosp12/frameworks/base/core/java/android/view/contentcapture/
H A DContentCaptureContext.java47 public final class ContentCaptureContext implements Parcelable { class
115 public ContentCaptureContext(@Nullable ContentCaptureContext clientContext, in ContentCaptureContext() method in ContentCaptureContext
134 private ContentCaptureContext(@NonNull Builder builder) { in ContentCaptureContext() method in ContentCaptureContext
147 public ContentCaptureContext(@Nullable ContentCaptureContext original, int extraFlags) { in ContentCaptureContext() method in ContentCaptureContext
326 public ContentCaptureContext build() { in build()
329 return new ContentCaptureContext(this); in build()
412 new Parcelable.Creator<ContentCaptureContext>() {
419 final ContentCaptureContext clientContext;
426 clientContext = new ContentCaptureContext(builder);
447 public ContentCaptureContext[] newArray(int size) {
[all …]
H A DContentCaptureSession.java210 private ContentCaptureContext mClientContext;
232 ContentCaptureSession(@NonNull ContentCaptureContext initialContext) { in ContentCaptureSession()
265 @NonNull ContentCaptureContext context) { in createContentCaptureSession()
280 abstract ContentCaptureSession newChild(@NonNull ContentCaptureContext context); in newChild()
292 public final void setContentCaptureContext(@Nullable ContentCaptureContext context) { in setContentCaptureContext()
297 abstract void updateContentCaptureContext(@Nullable ContentCaptureContext context); in updateContentCaptureContext()
307 public final ContentCaptureContext getContentCaptureContext() { in getContentCaptureContext()
H A DChildContentCaptureSession.java37 @NonNull ContentCaptureContext clientContext) { in ChildContentCaptureSession()
51 ContentCaptureSession newChild(@NonNull ContentCaptureContext clientContext) { in newChild()
63 public void updateContentCaptureContext(@Nullable ContentCaptureContext context) { in updateContentCaptureContext()
H A DContentCaptureContext.aidl19 parcelable ContentCaptureContext;
H A DContentCaptureManager.java607 mFlags &= ~ContentCaptureContext.FLAG_DISABLED_BY_APP; in setContentCaptureEnabled()
609 mFlags |= ContentCaptureContext.FLAG_DISABLED_BY_APP; in setContentCaptureEnabled()
633 mFlags |= ContentCaptureContext.FLAG_DISABLED_BY_FLAG_SECURE; in updateWindowAttributes()
635 mFlags &= ~ContentCaptureContext.FLAG_DISABLED_BY_FLAG_SECURE; in updateWindowAttributes()
H A DIContentCaptureManager.aidl20 import android.view.contentcapture.ContentCaptureContext;
H A DContentCaptureEvent.java159 private @Nullable ContentCaptureContext mClientContext;
230 public ContentCaptureEvent setClientContext(@NonNull ContentCaptureContext clientContext) { in setClientContext()
258 public ContentCaptureContext getContentCaptureContext() { in getContentCaptureContext()
H A DMainContentCaptureSession.java219 ContentCaptureSession newChild(@NonNull ContentCaptureContext clientContext) { in newChild()
575 public void updateContentCaptureContext(@Nullable ContentCaptureContext context) { in updateContentCaptureContext()
697 @NonNull ContentCaptureContext clientContext) { in notifyChildSessionStarted()
776 void notifyContextUpdated(int sessionId, @Nullable ContentCaptureContext context) { in notifyContextUpdated()
/aosp12/frameworks/base/core/tests/coretests/src/android/view/contentcapture/
H A DContentCaptureContextTest.java43 final ContentCaptureContext ctx = new ContentCaptureContext(/* clientContext= */ null, in testConstructorAdditionalFlags()
46 final ContentCaptureContext newCtx = new ContentCaptureContext(ctx, /* extraFlags= */ 2); in testConstructorAdditionalFlags()
H A DContentCaptureEventTest.java55 private final ContentCaptureContext mClientContext =
56 new ContentCaptureContext.Builder(ID).build();
184 final ContentCaptureContext clientContext = event.getContentCaptureContext(); in assertSessionStartedEvent()
310 final ContentCaptureContext clientContext = event.getContentCaptureContext(); in assertContextUpdatedEvent()
H A DContentCaptureSessionTest.java131 ContentCaptureSession newChild(ContentCaptureContext context) { in newChild()
181 public void updateContentCaptureContext(ContentCaptureContext context) { in updateContentCaptureContext()
/aosp12/frameworks/base/services/contentcapture/java/com/android/server/contentcapture/
H A DContentCaptureServerSession.java37 import android.view.contentcapture.ContentCaptureContext;
56 private final ContentCaptureContext mContentCaptureContext;
89 mContentCaptureContext = new ContentCaptureContext(/* clientContext= */ null, in ContentCaptureServerSession()
201 remoteService.onSessionStarted(new ContentCaptureContext(mContentCaptureContext, in resurrectLocked()
202 ContentCaptureContext.FLAG_RECONNECTED), mId, mUid, mSessionStateReceiver, in resurrectLocked()
H A DRemoteContentCaptureService.java35 import android.view.contentcapture.ContentCaptureContext;
115 public void onSessionStarted(@Nullable ContentCaptureContext context, int sessionId, int uid, in onSessionStarted()
/aosp12/frameworks/base/core/java/android/service/contentcapture/
H A DIContentCaptureService.aidl24 import android.view.contentcapture.ContentCaptureContext;
40 void onSessionStarted(in ContentCaptureContext context, int sessionId, int uid, in onSessionStarted()
H A DContentCaptureService.java45 import android.view.contentcapture.ContentCaptureContext;
151 public void onSessionStarted(ContentCaptureContext context, int sessionId, int uid,
307 public void onCreateContentCaptureSession(@NonNull ContentCaptureContext context, in onCreateContentCaptureSession()
441 private void handleOnCreateSession(@NonNull ContentCaptureContext context, in handleOnCreateSession()
448 if ((clientFlags & ContentCaptureContext.FLAG_DISABLED_BY_FLAG_SECURE) != 0) { in handleOnCreateSession()
451 if ((clientFlags & ContentCaptureContext.FLAG_DISABLED_BY_APP) != 0) { in handleOnCreateSession()
492 final ContentCaptureContext clientContext = event.getContentCaptureContext(); in handleSendEvents()
/aosp12/frameworks/base/core/java/android/app/assist/
H A DActivityId.java26 import android.view.contentcapture.ContentCaptureContext;
/aosp12/frameworks/base/apct-tests/perftests/contentcapture/src/android/view/contentcapture/
H A DMyContentCaptureService.java103 public void onCreateContentCaptureSession(ContentCaptureContext context, in onCreateContentCaptureSession()
/aosp12/frameworks/base/core/java/android/app/
H A DActivity.java133 import android.view.contentcapture.ContentCaptureContext;
1237 ContentCaptureContext.Builder contentCaptureContextBuilder = in setLocusContextToContentCapture()
1238 new ContentCaptureContext.Builder(locusId); in setLocusContextToContentCapture()
H A DNotification.java93 import android.view.contentcapture.ContentCaptureContext;
/aosp12/frameworks/base/core/java/android/content/pm/
H A DShortcutInfo.java46 import android.view.contentcapture.ContentCaptureContext;
/aosp12/frameworks/base/boot/
H A Dpreloaded-classes7893 android.view.contentcapture.ContentCaptureContext$1
7894 android.view.contentcapture.ContentCaptureContext$Builder
7895 android.view.contentcapture.ContentCaptureContext
/aosp12/frameworks/base/config/
H A Dpreloaded-classes7914 android.view.contentcapture.ContentCaptureContext$1
7915 android.view.contentcapture.ContentCaptureContext$Builder
7916 android.view.contentcapture.ContentCaptureContext
/aosp12/frameworks/base/core/java/android/view/
H A DView.java144 import android.view.contentcapture.ContentCaptureContext;
/aosp12/frameworks/base/core/api/
H A Dsystem-current.txt9862 …nCreateContentCaptureSession(@NonNull android.view.contentcapture.ContentCaptureContext, @NonNull …
14458 public final class ContentCaptureContext implements android.os.Parcelable {
14474 …method @Nullable public android.view.contentcapture.ContentCaptureContext getContentCaptureContext…
H A Dcurrent.txt51611 public final class ContentCaptureContext implements android.os.Parcelable {
51613 …method @NonNull public static android.view.contentcapture.ContentCaptureContext forLocusId(@NonNul…
51617 …tic final android.os.Parcelable.Creator<android.view.contentcapture.ContentCaptureContext> CREATOR;
51620 public static final class ContentCaptureContext.Builder {
51621 ctor public ContentCaptureContext.Builder(@NonNull android.content.LocusId);
51622 method @NonNull public android.view.contentcapture.ContentCaptureContext build();
51623 …method @NonNull public android.view.contentcapture.ContentCaptureContext.Builder setExtras(@NonNul…
51640 …ureSession createContentCaptureSession(@NonNull android.view.contentcapture.ContentCaptureContext);
51642 …method @Nullable public final android.view.contentcapture.ContentCaptureContext getContentCaptureC…
51654 …c final void setContentCaptureContext(@Nullable android.view.contentcapture.ContentCaptureContext);

12