Home
last modified time | relevance | path

Searched refs:autofillId (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/services/autofill/java/com/android/server/autofill/
DAutofillManagerServiceImpl.java284 @NonNull IBinder appCallbackToken, @NonNull AutofillId autofillId, in startSessionLocked() argument
303 + " u=" + mUserId + " i=" + autofillId + " b=" + virtualBounds + " hc=" + in startSessionLocked()
307 newSession.updateLocked(autofillId, virtualBounds, value, ACTION_START_SESSION, flags); in startSessionLocked()
469 boolean updateSessionLocked(int sessionId, int uid, AutofillId autofillId, Rect virtualBounds, in updateSessionLocked() argument
476 + autofillId); in updateSessionLocked()
487 session.updateLocked(autofillId, virtualBounds, value, action, flags); in updateSessionLocked()
DAutofillManagerService.java534 public int startSession(IBinder activityToken, IBinder appCallback, AutofillId autofillId, in startSession() argument
540 autofillId = Preconditions.checkNotNull(autofillId, "autoFillId"); in startSession()
555 autofillId, bounds, value, hasCallback, flags, componentName); in startSession()
DSession.java1562 for (AutofillId autofillId : response.getAuthenticationIds()) { in setViewStatesLocked()
1563 final ViewState viewState = createOrUpdateViewStateLocked(autofillId, state, null); in setViewStatesLocked()
/frameworks/base/core/java/android/app/assist/
DAssistStructure.java2030 AutofillId autofillId = node.getAutofillId(); in dump() local
2031 if (autofillId == null) { in dump()
2034 Log.i(TAG, prefix + "Autofill info: id= " + autofillId in dump()
/frameworks/base/core/java/android/view/autofill/
DAutofillManager.java1482 private View findView(@NonNull AutofillId autofillId) { in findView() argument
1489 return client.findViewByAutofillIdTraversal(autofillId.getViewId()); in findView()
/frameworks/base/core/java/android/view/
DViewGroup.java1373 public View findViewByAutofillIdTraversal(int autofillId) { in findViewByAutofillIdTraversal() argument
1374 View foundView = super.findViewByAutofillIdTraversal(autofillId); in findViewByAutofillIdTraversal()
1383 foundView = child.findViewByAutofillIdTraversal(autofillId); in findViewByAutofillIdTraversal()
DView.java21618 public <T extends View> T findViewByAutofillIdTraversal(int autofillId) {
21619 if (getAutofillViewId() == autofillId) {