Loading telephony/java/android/telephony/TelephonyManager.java +1 −1 Original line number Diff line number Diff line Loading @@ -4279,7 +4279,7 @@ public class TelephonyManager { try { ITelephony telephony = getITelephony(); if (telephony != null) return telephony.iccTransmitApduBasicChannel(subId, cla, return telephony.iccTransmitApduBasicChannel(subId, getOpPackageName(), cla, instruction, p1, p2, p3, data); } catch (RemoteException ex) { } catch (NullPointerException ex) { Loading telephony/java/com/android/internal/telephony/ITelephony.aidl +2 −1 Original line number Diff line number Diff line Loading @@ -680,6 +680,7 @@ interface ITelephony { * Input parameters equivalent to TS 27.007 AT+CSIM command. * * @param subId The subscription to use. * @param callingPackage the name of the package making the call. * @param cla Class of the APDU command. * @param instruction Instruction of the APDU command. * @param p1 P1 value of the APDU command. Loading @@ -690,7 +691,7 @@ interface ITelephony { * @return The APDU response from the ICC card with the status appended at * the end. */ String iccTransmitApduBasicChannel(int subId, int cla, int instruction, String iccTransmitApduBasicChannel(int subId, String callingPackage, int cla, int instruction, int p1, int p2, int p3, String data); /** Loading Loading
telephony/java/android/telephony/TelephonyManager.java +1 −1 Original line number Diff line number Diff line Loading @@ -4279,7 +4279,7 @@ public class TelephonyManager { try { ITelephony telephony = getITelephony(); if (telephony != null) return telephony.iccTransmitApduBasicChannel(subId, cla, return telephony.iccTransmitApduBasicChannel(subId, getOpPackageName(), cla, instruction, p1, p2, p3, data); } catch (RemoteException ex) { } catch (NullPointerException ex) { Loading
telephony/java/com/android/internal/telephony/ITelephony.aidl +2 −1 Original line number Diff line number Diff line Loading @@ -680,6 +680,7 @@ interface ITelephony { * Input parameters equivalent to TS 27.007 AT+CSIM command. * * @param subId The subscription to use. * @param callingPackage the name of the package making the call. * @param cla Class of the APDU command. * @param instruction Instruction of the APDU command. * @param p1 P1 value of the APDU command. Loading @@ -690,7 +691,7 @@ interface ITelephony { * @return The APDU response from the ICC card with the status appended at * the end. */ String iccTransmitApduBasicChannel(int subId, int cla, int instruction, String iccTransmitApduBasicChannel(int subId, String callingPackage, int cla, int instruction, int p1, int p2, int p3, String data); /** Loading