Home
last modified time | relevance | path

Searched refs:afm (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/core/java/android/view/autofill/
DAutofillManager.java3144 final AutofillManager afm = mAfm.get(); in setState() local
3145 if (afm != null) { in setState()
3146 afm.post(() -> afm.setState(flags)); in setState()
3152 final AutofillManager afm = mAfm.get(); in autofill() local
3153 if (afm != null) { in autofill()
3154 afm.post(() -> afm.autofill(sessionId, ids, values)); in autofill()
3161 final AutofillManager afm = mAfm.get(); in authenticate() local
3162 if (afm != null) { in authenticate()
3163 afm.post(() -> afm.authenticate(sessionId, authenticationId, intent, fillInIntent)); in authenticate()
3170 final AutofillManager afm = mAfm.get(); in requestShowFillUi() local
[all …]
/frameworks/base/core/java/android/service/autofill/
DAutofillService.java704 final AutofillManager afm = getSystemService(AutofillManager.class); in getFillEventHistory() local
706 if (afm == null) { in getFillEventHistory()
709 return afm.getFillEventHistory(); in getFillEventHistory()
/frameworks/base/core/java/android/widget/
DRadioGroup.java199 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in setCheckedId() local
200 if (afm != null) { in setCheckedId()
201 afm.notifyValueChanged(this); in setCheckedId()
DTimePicker.java156 final AutofillManager afm = context.getSystemService(AutofillManager.class); in TimePicker() local
157 if (afm != null) { in TimePicker()
158 afm.notifyValueChanged(this); in TimePicker()
DCompoundButton.java185 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in setChecked() local
186 if (afm != null) { in setChecked()
187 afm.notifyValueChanged(this); in setChecked()
DDatePicker.java194 final AutofillManager afm = context.getSystemService(AutofillManager.class); in DatePicker() local
195 if (afm != null) { in DatePicker()
196 afm.notifyValueChanged(this); in DatePicker()
DAdapterView.java939 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in selectionChanged() local
940 if (afm != null) { in selectionChanged()
941 afm.notifyValueChanged(this); in selectionChanged()
DTextView.java10585 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in notifyListeningManagersAfterTextChanged() local
10586 if (afm != null) { in notifyListeningManagersAfterTextChanged()
10590 afm.notifyValueChanged(TextView.this); in notifyListeningManagersAfterTextChanged()
11619 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in canRequestAutofill() local
11620 if (afm != null) { in canRequestAutofill()
11621 return afm.isEnabled(); in canRequestAutofill()
11627 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in requestAutofill() local
11628 if (afm != null) { in requestAutofill()
11629 afm.requestAutofill(this); in requestAutofill()
/frameworks/base/core/java/android/view/inputmethod/
DInputMethodManager.java491 AutofillManager afm = servedView.getContext().getSystemService(AutofillManager.class); in isAutofillUIShowing() local
492 return afm != null && afm.isAutofillUiShowing(); in isAutofillUIShowing()
/frameworks/base/core/java/android/app/
DActivity.java7035 final AutofillManager afm = getAutofillManager(); in dumpAutofillManager() local
7036 if (afm != null) { in dumpAutofillManager()
7037 afm.dump(prefix, writer); in dumpAutofillManager()
7788 final AutofillManager afm = getSystemService(AutofillManager.class); in enableAutofillCompatibilityIfNeeded() local
7789 if (afm != null) { in enableAutofillCompatibilityIfNeeded()
7790 afm.enableCompatibilityMode(); in enableAutofillCompatibilityIfNeeded()
/frameworks/base/core/java/android/view/
DView.java7964 AutofillManager afm = getAutofillManager();
7965 if (afm != null) {
7976 afm.notifyViewEntered(this);
7979 afm.notifyViewExited(this);
9621 final AutofillManager afm = getAutofillManager();
9622 if (afm == null) return false;
9623 afm.notifyViewEnteredForAugmentedAutofill(this);
14407 AutofillManager afm = getAutofillManager(); in onVisibilityAggregated() local
14409 if (afm != null && getAutofillViewId() > LAST_APP_AUTOFILL_ID) { in onVisibilityAggregated()
14417 afm.notifyViewVisibilityChanged(this, true); in onVisibilityAggregated()
[all …]
DViewRootImpl.java5386 AutofillManager afm = getAutofillManager(); in processPointerEvent() local
5387 if (afm != null) { in processPointerEvent()
5388 afm.requestHideFillUi(); in processPointerEvent()
7053 AutofillManager afm = getAutofillManager(); in isAutofillUiShowing() local
7054 if (afm == null) { in isAutofillUiShowing()
7057 return afm.isAutofillUiShowing(); in isAutofillUiShowing()
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java5052 final AutofillManagerInternal afm = LocalServices.getService( in attachApplicationLocked() local
5054 if (afm != null) { in attachApplicationLocked()
5055 autofillOptions = afm.getAutofillOptions( in attachApplicationLocked()