Searched refs:sw1 (Results 1 - 4 of 4) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccIoResult.java24 public int sw1; field in class:IccIoResult
29 public IccIoResult(int sw1, int sw2, byte[] payload) { argument
30 this.sw1 = sw1;
35 public IccIoResult(int sw1, int sw2, String hexString) { argument
36 this(sw1, sw2, IccUtils.hexStringToBytes(hexString));
40 return "IccIoResponse sw1:0x" + Integer.toHexString(sw1) + " sw2:0x"
50 return sw1 == 0x90 || sw1
[all...]
H A DRIL.java3006 int sw1, sw2;
3010 sw1 = p.readInt();
3016 + " 0x" + Integer.toHexString(sw1)
3020 return new IccIoResult(sw1, sw2, s);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimDataDownloadHandler.java162 int sw1 = response.sw1;
166 if ((sw1 == 0x90 && sw2 == 0x00) || sw1 == 0x91) {
169 } else if (sw1 == 0x93 && sw2 == 0x00) {
173 } else if (sw1 == 0x62 || sw1 == 0x63) {
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java80 * @param sw1 simulated SW1 status to return
84 synchronized void expectSendEnvelope(String contents, int sw1, int sw2, String response) { argument
88 mExpectingSendEnvelopeResponseSw1 = sw1;

Completed in 274 milliseconds