/aosp14/frameworks/base/core/java/android/view/autofill/ |
H A D | AutofillManager.java | 4180 afm.post(() -> afm.setState(flags)); in setState() 4197 afm.post(() -> afm.autofillContent(sessionId, id, content)); in autofillContent() 4225 afm.post(() -> afm.requestHideFillUi(id, false)); in requestHideFillUi() 4233 afm.post(() -> afm.requestHideFillUi(id, true)); in requestHideFillUiWhenDestroyed() 4311 afm.post(() -> afm.setSaveUiState(sessionId, shown)); in setSaveUiState() 4327 afm.post(() -> afm.getAugmentedAutofillClient(result)); in getAugmentedAutofillClient() 4335 afm.post(() -> afm.requestShowSoftInput(id)); in requestShowSoftInput() 4343 afm.post(() -> afm.setFillDialogTriggerIds(ids)); in notifyFillDialogTriggerIds() 4430 afm.post(() -> afm.requestHideFillUi(id, false)); in requestHideFillUi() 4437 if (afm == null || afm.mSessionId != sessionId) { in requestAutofill() [all …]
|
H A 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()
|
/aosp14/frameworks/base/core/java/android/service/autofill/ |
H A D | AutofillService.java | 751 final AutofillManager afm = getSystemService(AutofillManager.class); in getFillEventHistory() local 753 if (afm == null) { in getFillEventHistory() 756 return afm.getFillEventHistory(); in getFillEventHistory()
|
/aosp14/frameworks/base/core/java/android/widget/ |
H A 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()
|
H A D | TimePicker.java | 156 final AutofillManager afm = context.getSystemService(AutofillManager.class); in TimePicker() 157 if (afm != null) { in TimePicker() 158 afm.notifyValueChanged(this); in TimePicker()
|
H A 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()
|
H A D | DatePicker.java | 194 final AutofillManager afm = context.getSystemService(AutofillManager.class); in DatePicker() 195 if (afm != null) { in DatePicker() 196 afm.notifyValueChanged(this); in DatePicker()
|
H A 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()
|
H A D | TextView.java | 12395 if (afm != null) { in notifyListeningManagersAfterTextChanged() 12399 afm.notifyValueChanged(TextView.this); in notifyListeningManagersAfterTextChanged() 12835 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in showAutofillDialog() local 12836 if (afm != null) { in showAutofillDialog() 12837 return afm.showAutofillDialog(this); in showAutofillDialog() 13606 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in canRequestAutofill() local 13607 if (afm != null) { in canRequestAutofill() 13608 return afm.isEnabled(); in canRequestAutofill() 13614 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in requestAutofill() local 13615 if (afm != null) { in requestAutofill() [all …]
|
/aosp14/frameworks/base/core/java/android/service/autofill/augmented/ |
H A 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()
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | View.java | 8369 AutofillManager afm = getAutofillManager(); 8370 if (afm != null) { 8396 afm.notifyViewExited(this); 10373 if (afm == null) return false; in isActivityDeniedForAutofillForUnimportantView() 10374 return afm.isActivityDeniedForAutofill(); in isActivityDeniedForAutofillForUnimportantView() 10385 if (afm == null) return false; in isMatchingAutofillableHeuristics() 10388 ? afm.isAutofillable(this) : false; in isMatchingAutofillableHeuristics() 10395 if (afm == null) { in isAutofillable() 10410 return afm.isAutofillable(this) ? true : notifyAugmentedAutofillIfNeeded(afm); in isAutofillable() 16129 AutofillManager afm = getAutofillManager(); in onVisibilityAggregated() local [all …]
|
H A D | ViewGroup.java | 3718 private boolean shouldIncludeAllChildrenViewWithAutofillTypeNotNone(AutofillManager afm) { in shouldIncludeAllChildrenViewWithAutofillTypeNotNone() argument 3719 if (afm == null) return false; in shouldIncludeAllChildrenViewWithAutofillTypeNotNone() 3720 return afm.shouldIncludeAllChildrenViewsWithAutofillTypeNotNoneInAssistStructure(); in shouldIncludeAllChildrenViewWithAutofillTypeNotNone() 3723 private boolean shouldIncludeAllChildrenViews(AutofillManager afm){ in shouldIncludeAllChildrenViews() argument 3724 if (afm == null) return false; in shouldIncludeAllChildrenViews() 3725 return afm.shouldIncludeAllChildrenViewInAssistStructure(); in shouldIncludeAllChildrenViews() 3737 final AutofillManager afm = getAutofillManager(); in populateChildrenForAutofill() local 3746 || (shouldIncludeAllChildrenViewWithAutofillTypeNotNone(afm) in populateChildrenForAutofill() 3748 || shouldIncludeAllChildrenViews(afm)){ in populateChildrenForAutofill()
|
H A D | ViewRootImpl.java | 6947 AutofillManager afm = getAutofillManager(); in processPointerEvent() local 6948 if (afm != null) { in processPointerEvent() 6949 afm.requestHideFillUi(); in processPointerEvent() 8396 AutofillManager afm = getAutofillManager(); in isAutofillUiShowing() local 8397 if (afm == null) { in isAutofillUiShowing() 8400 return afm.isAutofillUiShowing(); in isAutofillUiShowing()
|
/aosp14/frameworks/base/core/java/android/view/inputmethod/ |
H A D | InputMethodManager.java | 686 AutofillManager afm = servedView.getContext().getSystemService(AutofillManager.class); in isAutofillUIShowing() local 687 return afm != null && afm.isAutofillUiShowing(); in isAutofillUIShowing()
|
/aosp14/frameworks/base/services/core/java/com/android/server/am/ |
H A D | ActivityManagerService.java | 4753 final AutofillManagerInternal afm = LocalServices.getService( in attachApplicationLocked() local 4755 if (afm != null) { in attachApplicationLocked() 4756 autofillOptions = afm.getAutofillOptions( in attachApplicationLocked()
|