/frameworks/base/core/java/android/view/autofill/ |
D | AutofillManager.java | 4486 final AutofillManager afm = mAfm.get(); in setState() local 4487 if (afm != null) { in setState() 4488 afm.post(() -> afm.setState(flags)); in setState() 4495 final AutofillManager afm = mAfm.get(); in autofill() local 4496 if (afm != null) { in autofill() 4497 afm.post(() -> afm.autofill(sessionId, ids, values, hideHighlight)); in autofill() 4504 final AutofillManager afm = mAfm.get(); in onGetCredentialResponse() local 4505 if (afm != null) { in onGetCredentialResponse() 4506 afm.post(() -> afm.onGetCredentialResponse(sessionId, id, response)); in onGetCredentialResponse() 4513 final AutofillManager afm = mAfm.get(); in onGetCredentialException() local [all …]
|
D | AutofillClientController.java | 280 final AutofillManager afm = mActivity.getSystemService(AutofillManager.class); in enableAutofillCompatibilityIfNeeded() local 281 if (afm != null) { in enableAutofillCompatibilityIfNeeded() 282 afm.enableCompatibilityMode(); in enableAutofillCompatibilityIfNeeded() 295 final AutofillManager afm = getAutofillManager(); in dump() local 296 if (afm != null) { in dump() 297 afm.dump(prefix, writer); in dump()
|
/frameworks/base/core/java/android/service/autofill/ |
D | AutofillService.java | 806 final AutofillManager afm = getSystemService(AutofillManager.class); in getFillEventHistory() local 808 if (afm == null) { in getFillEventHistory() 811 return afm.getFillEventHistory(); in getFillEventHistory()
|
/frameworks/base/core/java/android/widget/ |
D | RadioGroup.java | 205 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in setCheckedId() local 206 if (afm != null) { in setCheckedId() 207 afm.notifyValueChanged(this); in setCheckedId()
|
D | TimePicker.java | 156 final AutofillManager afm = context.getSystemService(AutofillManager.class); in TimePicker() local 157 if (afm != null) { in TimePicker() 158 afm.notifyValueChanged(this); in TimePicker()
|
D | CompoundButton.java | 227 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in setChecked() local 228 if (afm != null) { in setChecked() 229 afm.notifyValueChanged(this); in setChecked()
|
D | DatePicker.java | 194 final AutofillManager afm = context.getSystemService(AutofillManager.class); in DatePicker() local 195 if (afm != null) { in DatePicker() 196 afm.notifyValueChanged(this); in DatePicker()
|
D | AdapterView.java | 939 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in selectionChanged() local 940 if (afm != null) { in selectionChanged() 941 afm.notifyValueChanged(this); in selectionChanged()
|
D | TextView.java | 12768 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in notifyListeningManagersAfterTextChanged() local 12769 if (afm != null) { in notifyListeningManagersAfterTextChanged() 12773 afm.notifyValueChanged(TextView.this); in notifyListeningManagersAfterTextChanged() 13259 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in showAutofillDialog() local 13260 if (afm != null) { in showAutofillDialog() 13261 return afm.showAutofillDialog(this); in showAutofillDialog() 14038 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in canRequestAutofill() local 14039 if (afm != null) { in canRequestAutofill() 14040 return afm.isEnabled(); in canRequestAutofill() 14046 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in requestAutofill() local [all …]
|
/frameworks/base/core/java/android/service/autofill/augmented/ |
D | AugmentedAutofillService.java | 380 final AutofillManager afm = getSystemService(AutofillManager.class); in getFillEventHistory() local 382 if (afm == null) { in getFillEventHistory() 385 return afm.getFillEventHistory(); in getFillEventHistory()
|
/frameworks/base/core/java/android/view/ |
D | ViewGroup.java | 3676 private boolean shouldIncludeAllChildrenViewWithAutofillTypeNotNone(AutofillManager afm) { in shouldIncludeAllChildrenViewWithAutofillTypeNotNone() argument 3677 if (afm == null) return false; in shouldIncludeAllChildrenViewWithAutofillTypeNotNone() 3678 return afm.shouldIncludeAllChildrenViewsWithAutofillTypeNotNoneInAssistStructure(); in shouldIncludeAllChildrenViewWithAutofillTypeNotNone() 3681 private boolean shouldIncludeAllChildrenViews(AutofillManager afm) { in shouldIncludeAllChildrenViews() argument 3682 if (afm == null) return false; in shouldIncludeAllChildrenViews() 3683 return afm.shouldIncludeAllChildrenViewInAssistStructure(); in shouldIncludeAllChildrenViews() 3686 private boolean shouldAlwaysIncludeWebview(AutofillManager afm) { in shouldAlwaysIncludeWebview() argument 3687 if (afm == null) return false; in shouldAlwaysIncludeWebview() 3688 return afm.shouldAlwaysIncludeWebviewInAssistStructure(); in shouldAlwaysIncludeWebview() 3691 private boolean shouldIncludeInvisibleView(AutofillManager afm) { in shouldIncludeInvisibleView() argument [all …]
|
D | View.java | 8746 AutofillManager afm = getAutofillManager(); 8747 if (afm != null) { 8777 afm.notifyViewEntered(this); 8779 afm.notifyViewEnteredForFillDialog(this); 8783 afm.notifyViewExited(this); 10978 final AutofillManager afm = getAutofillManager(); 10979 if (afm == null) return false; 10980 return afm.isActivityDeniedForAutofill(); 10990 final AutofillManager afm = getAutofillManager(); 10991 if (afm == null) return false; [all …]
|
D | ViewRootImpl.java | 7634 AutofillManager afm = getAutofillManager(); in processPointerEvent() local 7635 if (afm != null) { in processPointerEvent() 7636 afm.requestHideFillUi(); in processPointerEvent() 9173 AutofillManager afm = getAutofillManager(); in isAutofillUiShowing() local 9174 if (afm == null) { in isAutofillUiShowing() 9177 return afm.isAutofillUiShowing(); in isAutofillUiShowing()
|
/frameworks/base/core/java/android/view/inputmethod/ |
D | InputMethodManager.java | 736 AutofillManager afm = servedView.getContext().getSystemService(AutofillManager.class); in isAutofillUIShowing() local 737 return afm != null && afm.isAutofillUiShowing(); in isAutofillUIShowing()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ActivityManagerService.java | 4774 final AutofillManagerInternal afm = LocalServices.getService( in attachApplicationLocked() local 4776 if (afm != null) { in attachApplicationLocked() 4777 autofillOptions = afm.getAutofillOptions( in attachApplicationLocked()
|