Searched defs:sw2 (Results 1 - 2 of 2) 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...]
/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 147 milliseconds