Searched defs:onPendingSaveUi (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
H A DAutoFillUI.java317 public void onPendingSaveUi(int operation, @NonNull IBinder token) { method in class:AutoFillUI
322 Slog.w(TAG, "onPendingSaveUi(" + operation + "): no save ui");
/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DAutofillManagerService.java673 public void onPendingSaveUi(int operation, IBinder token) { method in class:AutofillManagerService.AutoFillManagerServiceStub
682 service.onPendingSaveUi(operation, token);
H A DAutofillManagerServiceImpl.java507 void onPendingSaveUi(int operation, @NonNull IBinder token) { method in class:AutofillManagerServiceImpl
508 if (sVerbose) Slog.v(TAG, "onPendingSaveUi(" + operation + "): " + token);
514 session.onPendingSaveUi(operation, token);
H A DSession.java1890 void onPendingSaveUi(int operation, @NonNull IBinder token) { method in class:Session
1891 getUiForShowing().onPendingSaveUi(operation, token);
/frameworks/base/core/java/android/view/autofill/
H A DAutofillManager.java189 * Used on {@link #onPendingSaveUi(int, IBinder)} to cancel the pending UI.
196 * Used on {@link #onPendingSaveUi(int, IBinder)} to restore the pending UI.
1498 public void onPendingSaveUi(int operation, IBinder token) { method in class:AutofillManager
1499 if (sVerbose) Log.v(TAG, "onPendingSaveUi(" + operation + "): " + token);
1503 mService.onPendingSaveUi(operation, token);

Completed in 333 milliseconds