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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccIoResult.java25 public int sw2; field in class:IccIoResult
29 public IccIoResult(int sw1, int sw2, byte[] payload) { argument
31 this.sw2 = sw2;
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"
41 + Integer.toHexString(sw2);
61 if (sw2 == 0x08) {
67 return new IccException("sw1:" + sw1 + " sw2
[all...]
H A DRIL.java3006 int sw1, sw2;
3011 sw2 = p.readInt();
3017 + " 0x" + Integer.toHexString(sw2) + " "
3020 return new IccIoResult(sw1, sw2, s);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimDataDownloadHandler.java163 int sw2 = response.sw2;
166 if ((sw1 == 0x90 && sw2 == 0x00) || sw1 == 0x91) {
169 } else if (sw1 == 0x93 && sw2 == 0x00) {
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java81 * @param sw2 simulated SW2 status to return
84 synchronized void expectSendEnvelope(String contents, int sw1, int sw2, String response) { argument
89 mExpectingSendEnvelopeResponseSw2 = sw2;

Completed in 126 milliseconds