Home
last modified time | relevance | path

Searched refs:ccm (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/
DViewRootImpl.java3581 final ContentCaptureManager ccm = mAttachInfo.getContentCaptureManager(mContext); in isContentCaptureReallyEnabled()
3583 if (ccm == null || !ccm.isContentCaptureEnabled()) return false; in isContentCaptureReallyEnabled()
3619 final ContentCaptureManager ccm = mAttachInfo.mContentCaptureManager; in handleContentCaptureFlush()
3620 if (ccm == null) { in handleContentCaptureFlush()
3624 ccm.flush(ContentCaptureSession.FLUSH_REASON_VIEW_ROOT_ENTERED); in handleContentCaptureFlush()
DView.java9466 final ContentCaptureManager ccm = ai != null ? ai.getContentCaptureManager(mContext)
9468 if (ccm == null || !ccm.isContentCaptureEnabled()) return;
9599 final ContentCaptureManager ccm = mContext
9601 return ccm == null ? null : ccm.getMainContentCaptureSession();
9802 ContentCaptureManager ccm = ai.mContentCaptureManager;
9803 if (ccm == null) {
9822 ai.mContentCaptureManager = ccm;
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java5061 final ContentCaptureManagerInternal ccm = in attachApplicationLocked() local
5063 if (ccm != null) { in attachApplicationLocked()
5064 contentCaptureOptions = ccm.getOptionsForPackage(app.userId, in attachApplicationLocked()