/aosp12/frameworks/base/core/java/android/view/contentcapture/ |
H A D | ContentCaptureContext.java | 47 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 D | ContentCaptureSession.java | 210 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 D | ChildContentCaptureSession.java | 37 @NonNull ContentCaptureContext clientContext) { in ChildContentCaptureSession() 51 ContentCaptureSession newChild(@NonNull ContentCaptureContext clientContext) { in newChild() 63 public void updateContentCaptureContext(@Nullable ContentCaptureContext context) { in updateContentCaptureContext()
|
H A D | ContentCaptureContext.aidl | 19 parcelable ContentCaptureContext;
|
H A D | ContentCaptureManager.java | 607 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 D | IContentCaptureManager.aidl | 20 import android.view.contentcapture.ContentCaptureContext;
|
H A D | ContentCaptureEvent.java | 159 private @Nullable ContentCaptureContext mClientContext; 230 public ContentCaptureEvent setClientContext(@NonNull ContentCaptureContext clientContext) { in setClientContext() 258 public ContentCaptureContext getContentCaptureContext() { in getContentCaptureContext()
|
H A D | MainContentCaptureSession.java | 219 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 D | ContentCaptureContextTest.java | 43 final ContentCaptureContext ctx = new ContentCaptureContext(/* clientContext= */ null, in testConstructorAdditionalFlags() 46 final ContentCaptureContext newCtx = new ContentCaptureContext(ctx, /* extraFlags= */ 2); in testConstructorAdditionalFlags()
|
H A D | ContentCaptureEventTest.java | 55 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 D | ContentCaptureSessionTest.java | 131 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 D | ContentCaptureServerSession.java | 37 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 D | RemoteContentCaptureService.java | 35 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 D | IContentCaptureService.aidl | 24 import android.view.contentcapture.ContentCaptureContext; 40 void onSessionStarted(in ContentCaptureContext context, int sessionId, int uid, in onSessionStarted()
|
H A D | ContentCaptureService.java | 45 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 D | ActivityId.java | 26 import android.view.contentcapture.ContentCaptureContext;
|
/aosp12/frameworks/base/apct-tests/perftests/contentcapture/src/android/view/contentcapture/ |
H A D | MyContentCaptureService.java | 103 public void onCreateContentCaptureSession(ContentCaptureContext context, in onCreateContentCaptureSession()
|
/aosp12/frameworks/base/core/java/android/app/ |
H A D | Activity.java | 133 import android.view.contentcapture.ContentCaptureContext; 1237 ContentCaptureContext.Builder contentCaptureContextBuilder = in setLocusContextToContentCapture() 1238 new ContentCaptureContext.Builder(locusId); in setLocusContextToContentCapture()
|
H A D | Notification.java | 93 import android.view.contentcapture.ContentCaptureContext;
|
/aosp12/frameworks/base/core/java/android/content/pm/ |
H A D | ShortcutInfo.java | 46 import android.view.contentcapture.ContentCaptureContext;
|
/aosp12/frameworks/base/boot/ |
H A D | preloaded-classes | 7893 android.view.contentcapture.ContentCaptureContext$1 7894 android.view.contentcapture.ContentCaptureContext$Builder 7895 android.view.contentcapture.ContentCaptureContext
|
/aosp12/frameworks/base/config/ |
H A D | preloaded-classes | 7914 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 D | View.java | 144 import android.view.contentcapture.ContentCaptureContext;
|
/aosp12/frameworks/base/core/api/ |
H A D | system-current.txt | 9862 …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 D | current.txt | 51611 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);
|