Searched refs:mSelectResponse (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
H A DIccOpenLogicalChannelResponse.java47 private final byte[] mSelectResponse; field in class:IccOpenLogicalChannelResponse
57 mSelectResponse = selectResponse;
68 mSelectResponse = new byte[arrayLength];
69 in.readByteArray(mSelectResponse);
71 mSelectResponse = null;
93 return mSelectResponse;
105 if (mSelectResponse != null && mSelectResponse.length > 0) {
106 out.writeInt(mSelectResponse.length);
107 out.writeByteArray(mSelectResponse);
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/apdu/
H A DApduSenderTest.java85 private byte[] mSelectResponse; field in class:ApduSenderTest
96 mSelectResponse = null;
112 sender.send((selectResponse, requestBuilder) -> mSelectResponse = selectResponse,
116 assertEquals("A1A1A19000", IccUtils.bytesToHexString(mSelectResponse));
131 sender.send((selectResponse, requestBuilder) -> mSelectResponse = new byte[0],
136 mSelectResponse);
334 mSelectResponse = selectResponseOther,
340 assertNull("Should not open channel when another one is already opened.", mSelectResponse);

Completed in 49 milliseconds