Home
last modified time | relevance | path

Searched refs:ContentCaptureManager (Results 1 – 25 of 39) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/android/view/contentcapture/
DContentCaptureManagerTest.java58 () -> new ContentCaptureManager(mMockContext, /* service= */ null, /* options= */ in testConstructor_invalidParametersThrowsException()
64 ContentCaptureManager manager = in testConstructor_contentProtection_default_bufferNotCreated()
65 new ContentCaptureManager(mMockContext, mMockContentCaptureManager, EMPTY_OPTIONS); in testConstructor_contentProtection_default_bufferNotCreated()
81 ContentCaptureManager manager = in testConstructor_contentProtection_disabled_bufferNotCreated()
82 new ContentCaptureManager(mMockContext, mMockContentCaptureManager, options); in testConstructor_contentProtection_disabled_bufferNotCreated()
98 ContentCaptureManager manager = in testConstructor_contentProtection_invalidBufferSize_bufferNotCreated()
99 new ContentCaptureManager(mMockContext, mMockContentCaptureManager, options); in testConstructor_contentProtection_invalidBufferSize_bufferNotCreated()
115 ContentCaptureManager manager = in testConstructor_contentProtection_enabled_bufferCreated()
116 new ContentCaptureManager(mMockContext, mMockContentCaptureManager, options); in testConstructor_contentProtection_enabled_bufferCreated()
132 final ContentCaptureManager manager = in testRemoveData_invalidParametersThrowsException()
[all …]
DMainContentCaptureSessionTest.java86 private static final ContentCaptureManager.StrippedContext sStrippedContext =
87 new ContentCaptureManager.StrippedContext(sContext);
487 private ContentCaptureManager createManager(ContentCaptureOptions options) { in createManager()
488 return new ContentCaptureManager(sContext, mMockSystemServerInterface, options); in createManager()
491 private MainContentCaptureSession createSession(ContentCaptureManager manager) { in createSession()
DMainContentCaptureSessionV2Test.java86 private static final ContentCaptureManager.StrippedContext sStrippedContext =
87 new ContentCaptureManager.StrippedContext(sContext);
553 private ContentCaptureManager createManager(ContentCaptureOptions options) { in createManager()
554 return new ContentCaptureManager(sContext, mMockSystemServerInterface, options); in createManager()
557 private MainContentCaptureSessionV2 createSession(ContentCaptureManager manager) { in createSession()
/frameworks/base/core/java/android/content/
DContentCaptureOptions.java27 import android.view.contentcapture.ContentCaptureManager;
28 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient;
150 ContentCaptureManager.DEFAULT_DISABLE_FLUSH_FOR_VIEW_TREE_APPEARING,
151 ContentCaptureManager.DEFAULT_ENABLE_CONTENT_CAPTURE_RECEIVER,
185 ContentCaptureManager.LOGGING_LEVEL_VERBOSE, in ContentCaptureOptions()
186 ContentCaptureManager.DEFAULT_MAX_BUFFER_SIZE, in ContentCaptureOptions()
187 ContentCaptureManager.DEFAULT_IDLE_FLUSHING_FREQUENCY_MS, in ContentCaptureOptions()
188 ContentCaptureManager.DEFAULT_TEXT_CHANGE_FLUSHING_FREQUENCY_MS, in ContentCaptureOptions()
189 ContentCaptureManager.DEFAULT_LOG_HISTORY_SIZE, in ContentCaptureOptions()
190 ContentCaptureManager.DEFAULT_DISABLE_FLUSH_FOR_VIEW_TREE_APPEARING, in ContentCaptureOptions()
[all …]
DLocusId.java22 import android.view.contentcapture.ContentCaptureManager;
/frameworks/base/services/contentcapture/java/com/android/server/contentcapture/
DContentCaptureManagerService.java24 import static android.view.contentcapture.ContentCaptureManager.DEVICE_CONFIG_PROPERTY_CONTENT_PROT…
25 import static android.view.contentcapture.ContentCaptureManager.DEVICE_CONFIG_PROPERTY_CONTENT_PROT…
26 import static android.view.contentcapture.ContentCaptureManager.DEVICE_CONFIG_PROPERTY_CONTENT_PROT…
27 import static android.view.contentcapture.ContentCaptureManager.DEVICE_CONFIG_PROPERTY_CONTENT_PROT…
28 import static android.view.contentcapture.ContentCaptureManager.DEVICE_CONFIG_PROPERTY_CONTENT_PROT…
29 import static android.view.contentcapture.ContentCaptureManager.DEVICE_CONFIG_PROPERTY_CONTENT_PROT…
30 import static android.view.contentcapture.ContentCaptureManager.DEVICE_CONFIG_PROPERTY_CONTENT_PROT…
31 import static android.view.contentcapture.ContentCaptureManager.DEVICE_CONFIG_PROPERTY_ENABLE_CONTE…
32 import static android.view.contentcapture.ContentCaptureManager.DEVICE_CONFIG_ENABLE_ACTIVITY_START…
33 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_FALSE;
[all …]
DContentCaptureServerSession.java19 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;
DContentCapturePerUserService.java20 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
/frameworks/base/core/java/android/view/contentcapture/
DContentCaptureHelper.java18 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;
DDataShareWriteAdapter.java21 import android.view.contentcapture.ContentCaptureManager.DataShareError;
DMainContentCaptureSession.java33 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_FALSE;
104 private final ContentCaptureManager.StrippedContext mContext;
107 private final ContentCaptureManager mManager;
218 @NonNull ContentCaptureManager.StrippedContext context, in MainContentCaptureSession()
219 @NonNull ContentCaptureManager manager, in MainContentCaptureSession()
DMainContentCaptureSessionV2.java33 import static android.view.contentcapture.ContentCaptureManager.RESULT_CODE_FALSE;
104 private final ContentCaptureManager.StrippedContext mContext;
107 private final ContentCaptureManager mManager;
233 @NonNull ContentCaptureManager.StrippedContext context, in MainContentCaptureSessionV2()
234 @NonNull ContentCaptureManager manager, in MainContentCaptureSessionV2()
DContentCaptureManager.java218 public final class ContentCaptureManager { class
220 private static final String TAG = ContentCaptureManager.class.getSimpleName();
566 public ContentCaptureManager(@NonNull Context context, in ContentCaptureManager() method in ContentCaptureManager
DContentCaptureEvent.java19 import static android.view.contentcapture.ContentCaptureManager.DEBUG;
20 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
DContentCaptureContext.java18 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
DContentCaptureSession.java21 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
/frameworks/base/core/java/com/android/internal/policy/
DDecorContext.java27 import android.view.contentcapture.ContentCaptureManager;
44 private ContentCaptureManager mContentCaptureManager;
81 mContentCaptureManager = (ContentCaptureManager) context.getSystemService(name); in getSystemService()
/frameworks/base/core/java/android/service/contentcapture/
DDataShareReadAdapter.java22 import android.view.contentcapture.ContentCaptureManager.DataShareError;
DContentCaptureService.java23 import static android.view.contentcapture.ContentCaptureManager.NO_SESSION_ID;
51 import android.view.contentcapture.ContentCaptureManager;
/frameworks/base/core/java/android/service/voice/
DVisualQueryDetectionService.java40 import android.view.contentcapture.ContentCaptureManager;
91 private ContentCaptureManager mContentCaptureManager;
156 mContentCaptureManager = new ContentCaptureManager(
DHotwordDetectionService.java45 import android.view.contentcapture.ContentCaptureManager;
150 private ContentCaptureManager mContentCaptureManager;
223 mContentCaptureManager = new ContentCaptureManager(
/frameworks/base/core/java/android/app/
DService.java43 import android.view.contentcapture.ContentCaptureManager;
319 ContentCaptureManager.ContentCaptureClient {
1023 public final ContentCaptureManager.ContentCaptureClient getContentCaptureClient() {
DActivity.java156 import android.view.contentcapture.ContentCaptureManager;
157 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient;
767 ContentCaptureManager.ContentCaptureClient {
920 @Nullable private ContentCaptureManager mContentCaptureManager;
1336 @Nullable private ContentCaptureManager getContentCaptureManager() { in getContentCaptureManager()
1340 mContentCaptureManager = getSystemService(ContentCaptureManager.class); in getContentCaptureManager()
1382 final ContentCaptureManager cm = getContentCaptureManager(); in notifyContentCaptureManagerIfNeeded()
1413 final ContentCaptureManager cm = getContentCaptureManager(); in setLocusContextToContentCapture()
8118 ContentCaptureManager.DUMPABLE_NAME);
DSystemServiceRegistry.java252 import android.view.contentcapture.ContentCaptureManager;
1249 registerService(Context.CONTENT_CAPTURE_MANAGER_SERVICE, ContentCaptureManager.class, in registerService()
1250 new CachedServiceFetcher<ContentCaptureManager>() { in registerService()
1252 public ContentCaptureManager createService(ContextImpl ctx) in registerService()
1264 return new ContentCaptureManager(outerContext, service, options); in registerService()
/frameworks/base/core/tests/coretests/src/android/content/
DContentCaptureOptionsTest.java27 import android.view.contentcapture.ContentCaptureManager.ContentCaptureClient;

12