/aosp12/frameworks/base/services/contentcapture/java/com/android/server/contentcapture/ |
H A D | ContentCaptureManagerService.java | 23 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_FALSE; 24 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_OK; 26 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_TRUE; 82 import android.view.contentcapture.ContentCaptureManager; 374 ContentCaptureManager.DEFAULT_MAX_BUFFER_SIZE); in setFineTuneParamsFromDeviceConfig() 378 ContentCaptureManager.DEFAULT_IDLE_FLUSHING_FREQUENCY_MS); in setFineTuneParamsFromDeviceConfig() 404 ContentCaptureManager.DEVICE_CONFIG_PROPERTY_LOGGING_LEVEL, in setLoggingLevelFromDeviceConfig() 1054 ContentCaptureManager.DATA_SHARE_ERROR_UNKNOWN); in accept() 1068 ContentCaptureManager.DATA_SHARE_ERROR_UNKNOWN); in accept() 1081 ContentCaptureManager.DATA_SHARE_ERROR_UNKNOWN); in accept() [all …]
|
H A D | ContentCaptureServerSession.java | 19 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID; 20 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_FALSE; 21 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_TRUE;
|
H A D | ContentCapturePerUserService.java | 20 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
|
/aosp12/frameworks/base/core/java/android/view/contentcapture/ |
H A D | ContentCaptureHelper.java | 18 import static android.view.contentcapture.ContentCaptureManager.DEVICE_CONFIG_PROPERTY_LOGGING_LEVE… 19 import static android.view.contentcapture.ContentCaptureManager.LOGGING_LEVEL_DEBUG; 20 import static android.view.contentcapture.ContentCaptureManager.LOGGING_LEVEL_OFF; 21 import static android.view.contentcapture.ContentCaptureManager.LOGGING_LEVEL_VERBOSE; 28 import android.view.contentcapture.ContentCaptureManager.LoggingLevel;
|
H A D | DataShareWriteAdapter.java | 21 import android.view.contentcapture.ContentCaptureManager.DataShareError;
|
H A D | ContentCaptureManager.java | 211 public final class ContentCaptureManager { class 213 private static final String TAG = ContentCaptureManager.class.getSimpleName(); 399 public ContentCaptureManager(@NonNull Context context, in ContentCaptureManager() method in ContentCaptureManager
|
H A D | ContentCaptureEvent.java | 19 import static android.view.contentcapture.ContentCaptureManager.DEBUG; 20 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
|
H A D | MainContentCaptureSession.java | 33 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_FALSE; 108 private final ContentCaptureManager mManager; 200 @NonNull ContentCaptureManager manager, @NonNull Handler handler, in MainContentCaptureSession()
|
H A D | ContentCaptureContext.java | 18 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
|
H A D | ContentCaptureSession.java | 20 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
|
/aosp12/frameworks/base/core/java/android/content/ |
H A D | ContentCaptureOptions.java | 27 import android.view.contentcapture.ContentCaptureManager; 28 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient; 110 this(ContentCaptureManager.LOGGING_LEVEL_VERBOSE, in ContentCaptureOptions() 111 ContentCaptureManager.DEFAULT_MAX_BUFFER_SIZE, in ContentCaptureOptions() 112 ContentCaptureManager.DEFAULT_IDLE_FLUSHING_FREQUENCY_MS, in ContentCaptureOptions() 113 ContentCaptureManager.DEFAULT_TEXT_CHANGE_FLUSHING_FREQUENCY_MS, in ContentCaptureOptions() 114 ContentCaptureManager.DEFAULT_LOG_HISTORY_SIZE, whitelistedComponents); in ContentCaptureOptions()
|
H A D | LocusId.java | 22 import android.view.contentcapture.ContentCaptureManager;
|
H A D | Context.java | 82 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient;
|
/aosp12/frameworks/base/core/tests/coretests/src/android/view/contentcapture/ |
H A D | ContentCaptureManagerTest.java | 44 () -> new ContentCaptureManager(mMockContext, /* service= */ null, /* options= */ in testConstructor_invalidParametersThrowsException() 52 final ContentCaptureManager manager = in testRemoveData_invalidParametersThrowsException() 53 new ContentCaptureManager(mMockContext, mockService, options); in testRemoveData_invalidParametersThrowsException()
|
/aosp12/frameworks/base/core/java/com/android/internal/policy/ |
H A D | DecorContext.java | 27 import android.view.contentcapture.ContentCaptureManager; 44 private ContentCaptureManager mContentCaptureManager; 81 mContentCaptureManager = (ContentCaptureManager) context.getSystemService(name); in getSystemService()
|
/aosp12/packages/apps/Settings/src/com/android/settings/utils/ |
H A D | ContentCaptureUtils.java | 28 import android.view.contentcapture.ContentCaptureManager; 56 return ContentCaptureManager.getServiceSettingsComponentName(); in getServiceSettingsComponentName()
|
/aosp12/frameworks/base/core/java/android/service/voice/ |
H A D | HotwordDetectionService.java | 43 import android.view.contentcapture.ContentCaptureManager; 129 private ContentCaptureManager mContentCaptureManager; 196 mContentCaptureManager = new ContentCaptureManager(
|
/aosp12/frameworks/base/core/java/android/app/ |
H A D | Service.java | 38 import android.view.contentcapture.ContentCaptureManager; 314 ContentCaptureManager.ContentCaptureClient { 926 public final ContentCaptureManager.ContentCaptureClient getContentCaptureClient() {
|
H A D | Activity.java | 134 import android.view.contentcapture.ContentCaptureManager; 135 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient; 741 AutofillManager.AutofillClient, ContentCaptureManager.ContentCaptureClient { 856 @Nullable private ContentCaptureManager mContentCaptureManager; 1157 @Nullable private ContentCaptureManager getContentCaptureManager() { in getContentCaptureManager() 1161 mContentCaptureManager = getSystemService(ContentCaptureManager.class); in getContentCaptureManager() 1203 final ContentCaptureManager cm = getContentCaptureManager(); in notifyContentCaptureManagerIfNeeded() 1234 final ContentCaptureManager cm = getContentCaptureManager(); in setLocusContextToContentCapture() 7272 final ContentCaptureManager cm = getContentCaptureManager();
|
H A D | SystemServiceRegistry.java | 217 import android.view.contentcapture.ContentCaptureManager; 1155 registerService(Context.CONTENT_CAPTURE_MANAGER_SERVICE, ContentCaptureManager.class, in registerService() 1156 new CachedServiceFetcher<ContentCaptureManager>() { in registerService() 1158 public ContentCaptureManager createService(ContextImpl ctx) in registerService() 1170 return new ContentCaptureManager(outerContext, service, options); in registerService()
|
/aosp12/frameworks/base/core/java/android/service/contentcapture/ |
H A D | DataShareReadAdapter.java | 22 import android.view.contentcapture.ContentCaptureManager.DataShareError;
|
H A D | ContentCaptureService.java | 21 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID; 47 import android.view.contentcapture.ContentCaptureManager;
|
/aosp12/frameworks/base/core/tests/coretests/src/android/content/ |
H A D | ContentCaptureOptionsTest.java | 26 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient;
|
/aosp12/frameworks/base/services/java/com/android/server/ |
H A D | SystemServer.java | 91 import android.view.contentcapture.ContentCaptureManager; 2971 ContentCaptureManager.DEVICE_CONFIG_PROPERTY_SERVICE_EXPLICITLY_ENABLED); in startContentCaptureService()
|
/aosp12/frameworks/base/core/java/android/view/ |
H A D | View.java | 145 import android.view.contentcapture.ContentCaptureManager; 9978 final ContentCaptureManager ccm = mContext in getAndCacheContentCaptureSession() 9979 .getSystemService(ContentCaptureManager.class); in getAndCacheContentCaptureSession() 10183 ContentCaptureManager ccm = ai.mContentCaptureManager; in dispatchInitialProvideContentCaptureStructure() 29679 ContentCaptureManager mContentCaptureManager; 29723 ContentCaptureManager getContentCaptureManager(@NonNull Context context) { in getContentCaptureManager() 29727 mContentCaptureManager = context.getSystemService(ContentCaptureManager.class); in getContentCaptureManager()
|