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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccIoResult.java26 public int sw2; field in class:IccIoResult
30 public IccIoResult(int sw1, int sw2, byte[] payload) { argument
32 this.sw2 = sw2;
36 public IccIoResult(int sw1, int sw2, String hexString) { argument
37 this(sw1, sw2, IccUtils.hexStringToBytes(hexString));
42 return "IccIoResponse sw1:0x" + Integer.toHexString(sw1) + " sw2:0x"
43 + Integer.toHexString(sw2);
63 if (sw2 == 0x08) {
69 return new IccException("sw1:" + sw1 + " sw2
[all...]

Completed in 60 milliseconds