Searched refs:disableDuration (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/view/autofill/ |
D | IAutoFillManagerClient.aidl | 131 void notifyDisableAutofill(long disableDuration, in ComponentName componentName); in notifyDisableAutofill() argument
|
D | AutofillManager.java | 2579 private void notifyDisableAutofill(long disableDuration, ComponentName componentName) { in notifyDisableAutofill() argument 2584 long expiration = SystemClock.elapsedRealtime() + disableDuration; in notifyDisableAutofill() 3423 public void notifyDisableAutofill(long disableDuration, ComponentName componentName) in notifyDisableAutofill() argument 3427 afm.post(() -> afm.notifyDisableAutofill(disableDuration, componentName)); in notifyDisableAutofill()
|
/frameworks/base/core/java/android/service/autofill/ |
D | FillResponse.java | 839 final long disableDuration = parcel.readLong(); 840 if (disableDuration > 0) { 841 builder.disableAutofill(disableDuration);
|
/frameworks/base/services/autofill/java/com/android/server/autofill/ |
D | Session.java | 972 final long disableDuration = response.getDisableDuration(); 973 if (disableDuration > 0) { 977 notifyDisableAutofillToClient(disableDuration, 981 mService.disableAutofillForActivity(mComponentName, disableDuration, 984 mService.disableAutofillForApp(mComponentName.getPackageName(), disableDuration, 1002 TimeUtils.formatDuration(disableDuration, message); 1010 || disableDuration > 0) { 3050 private void notifyDisableAutofillToClient(long disableDuration, ComponentName componentName) { 3054 mClient.notifyDisableAutofill(disableDuration, componentName);
|