Home
last modified time | relevance | path

Searched refs:responseData (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/nfc/java/android/nfc/
DTransceiveResult.java75 byte[] responseData;
79 responseData = new byte[responseLength];
80 in.readByteArray(responseData);
82 responseData = null;
84 return new TransceiveResult(result, responseData);
/frameworks/libs/systemui/motiontoollib/src/com/android/app/motiontool/
DDdmHandleMotionTool.kt69 val responseData: ByteArray = MotionToolsResponse.newBuilder() in handleChunk() constant
75 return Chunk(CHUNK_MOTO, responseData, 0, responseData.size) in handleChunk()
94 val responseData = response.toByteArray() in handleChunk() constant
95 return Chunk(CHUNK_MOTO, responseData, 0, responseData.size) in handleChunk()
/frameworks/base/core/tests/coretests/src/android/credentials/
DCredentialManagerTest.java369 final Bundle responseData = new Bundle(); in testCreateCredential_success() local
370 responseData.putString("foo", "bar"); in testCreateCredential_success()
388 callbackCaptor.getValue().onResponse(new CreateCredentialResponse(responseData)); in testCreateCredential_success()
391 assertBundleEquals(responseCaptor.getValue().getData(), responseData); in testCreateCredential_success() local
/frameworks/base/core/java/android/view/autofill/
DAutofillManager.java2476 final Bundle responseData = new Bundle(); in onAuthenticationResult() local
2477 responseData.putParcelable(EXTRA_AUTHENTICATION_RESULT, result); in onAuthenticationResult()
2482 responseData.putSerializable( in onAuthenticationResult()
2487 responseData.putBundle(EXTRA_CLIENT_STATE, newClientState); in onAuthenticationResult()
2490 responseData.putBoolean(EXTRA_AUTHENTICATION_RESULT_EPHEMERAL_DATASET, in onAuthenticationResult()
2495 mService.setAuthenticationResult(responseData, mSessionId, authenticationId, in onAuthenticationResult()