Searched refs:sw1 (Results 1 – 5 of 5) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
D | IccIoResult.java | 25 public int sw1; field in IccIoResult 30 public IccIoResult(int sw1, int sw2, byte[] payload) { in IccIoResult() argument 31 this.sw1 = sw1; in IccIoResult() 36 public IccIoResult(int sw1, int sw2, String hexString) { in IccIoResult() argument 37 this(sw1, sw2, IccUtils.hexStringToBytes(hexString)); in IccIoResult() 42 return "IccIoResponse sw1:0x" + Integer.toHexString(sw1) + " sw2:0x" in toString() 52 return sw1 == 0x90 || sw1 == 0x91 || sw1 == 0x9e || sw1 == 0x9f; in success() 61 switch (sw1) { in getException() 69 return new IccException("sw1:" + sw1 + " sw2:" + sw2); in getException()
|
D | UiccCarrierPrivilegeRules.java | 380 if (response.sw1 == 0x90 && response.sw2 == 0x00 && in handleMessage() 399 " sw1=" + response.sw1 + " sw2=" + response.sw2; in handleMessage()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
D | UsimDataDownloadHandler.java | 200 int sw1 = response.sw1; in sendSmsAckForEnvelopeResponse() local 204 if ((sw1 == 0x90 && sw2 == 0x00) || sw1 == 0x91) { in sendSmsAckForEnvelopeResponse() 207 } else if (sw1 == 0x93 && sw2 == 0x00) { in sendSmsAckForEnvelopeResponse() 211 } else if (sw1 == 0x62 || sw1 == 0x63) { in sendSmsAckForEnvelopeResponse()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
D | UsimDataDownloadCommands.java | 85 synchronized void expectSendEnvelope(String contents, int sw1, int sw2, String response) { in expectSendEnvelope() argument 89 mExpectingSendEnvelopeResponseSw1 = sw1; in expectSendEnvelope()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | RIL.java | 3332 int sw1, sw2; in responseICC_IO() local 3335 sw1 = p.readInt(); in responseICC_IO() 3341 + " 0x" + Integer.toHexString(sw1) in responseICC_IO() 3345 return new IccIoResult(sw1, sw2, s); in responseICC_IO() 3350 int sw1, sw2; in responseICC_IOBase64() local 3353 sw1 = p.readInt(); in responseICC_IOBase64() 3359 + " 0x" + Integer.toHexString(sw1) in responseICC_IOBase64() 3364 … return new IccIoResult(sw1, sw2, android.util.Base64.decode(s, android.util.Base64.DEFAULT)); in responseICC_IOBase64()
|