Home
last modified time | relevance | path

Searched refs:ApduException (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/apdu/
DApduException.java28 public class ApduException extends Exception { class
32 public ApduException(int apduStatus) { in ApduException() method in ApduException
37 public ApduException(String message) { in ApduException() method in ApduException
DApduSender.java113 new ApduException("The logical channel is still in use."), in send()
119 new ApduException("The logical channel is in use."), in send()
139 new ApduException("Failed to open logical channel opened for AID: " in send()
189 new ApduException(status), resultCallback, handler); in sendCommand()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/apdu/
DApduSenderTest.java126 assertTrue(mResponseCaptor.exception instanceof ApduException); in testOpenChannelErrorStatus()
304 assertEquals(0x6985, ((ApduException) mResponseCaptor.exception).getApduStatus()); in testSendErrorResponseInMiddle()
330 assertTrue(mResponseCaptor.exception instanceof ApduException); in testChannelAlreadyOpened()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/
DEuiccCard.java48 import com.android.internal.telephony.uicc.euicc.apdu.ApduException;
1226 if (e instanceof ApduException in sendApduWithSimResetErrorWorkaround()
1227 && ((ApduException) e).getApduStatus() == APDU_ERROR_SIM_REFRESH) { in sendApduWithSimResetErrorWorkaround()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/
DEuiccCardTest.java55 import com.android.internal.telephony.uicc.euicc.apdu.ApduException;
825 assertEquals(0x6985, ((ApduException) e.getCause()).getApduStatus()); in testLoadBoundProfilePackage_ErrorStatus()