HomeSort by relevance Sort by last modified time
    Searched refs:IccIoResult (Results 1 - 25 of 32) sorted by null

1 2

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/apdu/
TransmitApduLogicalChannelInvocation.java 25 import com.android.internal.telephony.uicc.IccIoResult;
37 extends AsyncMessageInvocation<ApduCommand, IccIoResult> {
55 protected IccIoResult parseResult(AsyncResult ar) {
56 IccIoResult response;
58 response = (IccIoResult) ar.result;
67 response = new IccIoResult(SW1_ERROR, 0 /* sw2 */, (byte[]) null /* payload */);
ApduSender.java 25 import com.android.internal.telephony.uicc.IccIoResult;
152 mTransmitApdu.invoke(command, new AsyncResultCallback<IccIoResult>() {
154 public void onResult(IccIoResult response) {
158 new AsyncResultCallback<IccIoResult>() {
160 public void onResult(IccIoResult fullResponse) {
195 IccIoResult lastResponse,
197 AsyncResultCallback<IccIoResult> resultCallback,
217 new AsyncResultCallback<IccIoResult>() {
219 public void onResult(IccIoResult response) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccIoResult.java 25 IccIoResult {
178 public IccIoResult(int sw1, int sw2, byte[] payload) {
184 public IccIoResult(int sw1, int sw2, String hexString) {
190 return "IccIoResult sw1:0x" + Integer.toHexString(sw1) + " sw2:0x"
IccFileHandler.java 352 * onComplete.obj.userObj will be a IccIoResult on success
369 * onComplete.obj.userObj will be a IccIoResult on success
408 IccIoResult result = (IccIoResult) ar.result;
427 IccIoResult result;
443 result = (IccIoResult) ar.result;
470 result = (IccIoResult) ar.result;
512 result = (IccIoResult) ar.result;
549 result = (IccIoResult) ar.result;
585 result = (IccIoResult) ar.result
    [all...]
UiccPkcs15.java 116 IccIoResult response = (IccIoResult) ar.result;
119 log("IccIoResult: " + response + " payload: " + result);
UiccCarrierPrivilegeRules.java 470 IccIoResult response = (IccIoResult) ar.result;
IccRecords.java 96 private IccIoResult auth_rsp;
522 (new IccIoResult(0x6A, 0x82, (byte[]) null)).getException();
684 auth_rsp = (IccIoResult)ar.result;
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
UiccCarrierPrivilegeRulesTest.java 119 IccIoResult iir = new IccIoResult(0x90, 0x00, IccUtils.hexStringToBytes(hexString));
335 IccIoResult iir = new IccIoResult(0x90, 0x00, IccUtils.hexStringToBytes(hexString));
398 IccIoResult iir = new IccIoResult(0x90, 0x00, IccUtils.hexStringToBytes(hexString));
458 IccIoResult iir = new IccIoResult(0x90, 0x00, IccUtils.hexStringToBytes(hexString));
573 IccIoResult iir = new IccIoResult(0x90, 0x00
    [all...]
UiccCardTest.java 43 private IccIoResult mIccIoResult;
121 mIccIoResult = new IccIoResult(0x90, 0x00, IccUtils.hexStringToBytes("FF40"));
UiccProfileTest.java 60 private IccIoResult mIccIoResult;
143 mIccIoResult = new IccIoResult(0x90, 0x00, IccUtils.hexStringToBytes("FF40"));
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/apdu/
LogicalChannelMocker.java 29 import com.android.internal.telephony.uicc.IccIoResult;
83 IccIoResult result = isException ? null : new IccIoResult(sw1, sw2, hex);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
UsimDataDownloadHandler.java 30 import com.android.internal.telephony.uicc.IccIoResult;
199 private void sendSmsAckForEnvelopeResponse(IccIoResult response, int dcs, int pid) {
300 sendSmsAckForEnvelopeResponse((IccIoResult) ar.result, dcsPid[0], dcsPid[1]);
  /hardware/interfaces/radio/1.1/vts/functional/
radio_response.cpp 159 const IccIoResult& /*iccIo*/) {
506 const IccIoResult& /*iccIo*/) {
540 const RadioResponseInfo& /*info*/, const IccIoResult& /*result*/) {
555 const RadioResponseInfo& /*info*/, const IccIoResult& /*result*/) {
591 const RadioResponseInfo& /*info*/, const IccIoResult& /*result*/) {
radio_hidl_hal_utils_v1_1.h 55 IccIoResult iccIoResult;
140 Return<void> iccIOForAppResponse(const RadioResponseInfo& info, const IccIoResult& iccIo);
316 const IccIoResult& iccIo);
334 const IccIoResult& result);
343 const IccIoResult& result);
362 const IccIoResult& result);
  /hardware/interfaces/radio/1.0/
IRadioResponse.hal 606 * @param iccIo ICC io operation response as defined by IccIoResult in types.hal
621 oneway iccIOForAppResponse(RadioResponseInfo info, IccIoResult iccIo);
    [all...]
types.hal     [all...]
  /hardware/interfaces/radio/1.0/vts/functional/
radio_hidl_hal_utils_v1_0.h 54 IccIoResult iccIoResult;
139 Return<void> iccIOForAppResponse(const RadioResponseInfo& info, const IccIoResult& iccIo);
315 const IccIoResult& iccIo);
333 const IccIoResult& result);
342 const IccIoResult& result);
361 const IccIoResult& result);
radio_response.cpp 211 const IccIoResult& iccIo) {
213 this->iccIoResult = iccIo;
682 const IccIoResult& /*iccIo*/) {
731 const IccIoResult& result) {
733 this->iccIoResult = result;
754 const IccIoResult& result) {
756 this->iccIoResult = result;
807 const IccIoResult& result) {
809 this->iccIoResult = result;
  /hardware/interfaces/radio/1.2/vts/functional/
radio_response.cpp 163 const IccIoResult& /*iccIo*/) {
514 const IccIoResult& /*iccIo*/) {
548 const RadioResponseInfo& /*info*/, const IccIoResult& /*result*/) {
563 const RadioResponseInfo& /*info*/, const IccIoResult& /*result*/) {
599 const RadioResponseInfo& /*info*/, const IccIoResult& /*result*/) {
radio_hidl_hal_utils_v1_2.h 139 Return<void> iccIOForAppResponse(const RadioResponseInfo& info, const IccIoResult& iccIo);
315 const IccIoResult& iccIo);
334 const IccIoResult& result);
343 const IccIoResult& result);
362 const IccIoResult& result);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RadioResponse.java 54 import com.android.internal.telephony.uicc.IccIoResult;
398 * @param iccIo ICC io operation response as defined by IccIoResult in types.hal
401 android.hardware.radio.V1_0.IccIoResult iccIo) {
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
UsimDataDownloadCommands.java.broken 27 import com.android.internal.telephony.uicc.IccIoResult;
150 IccIoResult result = new IccIoResult(mExpectingSendEnvelopeResponseSw1,
  /packages/services/Telephony/src/com/android/phone/
PhoneInterfaceManager.java 113 import com.android.internal.telephony.uicc.IccIoResult;
432 request.result = new IccIoResult(0x6F, 0, (byte[])null);
452 request.result = new IccIoResult(0x6F, 0, (byte[])null);
473 request.result = new IccIoResult(0x6F, 0, (byte[])null);
492 request.result = new IccIoResult(0x6F, 0, (byte[])null);
513 request.result = new IccIoResult(0x6F, 0, (byte[])null);
532 request.result = new IccIoResult(0x6f, 0, (byte[])null);
544 request.result = new IccIoResult(0x6F, 0, (byte[])null);
560 request.result = new IccIoResult(0x6F, 0, (byte[])null);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedCommands.java 60 import com.android.internal.telephony.uicc.IccIoResult;
138 private IccIoResult mIccIoResultForApduLogicalChannel;
    [all...]
  /hardware/ril/libril/
ril_service.cpp     [all...]

Completed in 925 milliseconds

1 2