Home
last modified time | relevance | path

Searched refs:newClientState (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/speech/
H A DRemoteSpeechRecognitionService.java122 final ClientState newClientState = new ClientState(); in startListening() local
123 newClientState.mDelegatingListener = new DelegatingListener(listener, in startListening()
130 newClientState.mRecordingInProgress = false; in startListening()
144 mClients.put(listener.asBinder(), newClientState); in startListening() local
145 clientState = newClientState; in startListening()
/aosp14/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DSession.java1654 @Nullable Bundle newClientState, int flags) { in processResponseLockedForPcc() argument
1670 processResponseLocked(response, newClientState, flags); in processResponseLockedForPcc()
2644 final Bundle newClientState = data.getBundle(AutofillManager.EXTRA_CLIENT_STATE); in setAuthenticationResultLocked() local
2653 replaceResponseLocked(authenticatedResponse, (FillResponse) result, newClientState); in setAuthenticationResultLocked()
2660 if (newClientState != null) { in setAuthenticationResultLocked()
2662 mClientState = newClientState; in setAuthenticationResultLocked()
4899 @NonNull FillResponse newResponse, @Nullable Bundle newClientState) { in replaceResponseLocked() argument
4905 processResponseLockedForPcc(newResponse, newClientState, 0); in replaceResponseLocked()
5266 @Nullable Bundle newClientState, int flags) { in processResponseLocked() argument
5280 + ",newClientState=" + newClientState); in processResponseLocked()
[all …]
/aosp14/frameworks/base/core/java/android/view/autofill/
H A DAutofillManager.java2321 final Bundle newClientState = data.getBundleExtra(EXTRA_CLIENT_STATE); in onAuthenticationResult() local
2322 if (newClientState != null) { in onAuthenticationResult()
2323 responseData.putBundle(EXTRA_CLIENT_STATE, newClientState); in onAuthenticationResult()