Searched refs:responseInfo (Results 1 – 6 of 6) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | RadioResponse.java | 106 public void getIccCardStatusResponse(RadioResponseInfo responseInfo, CardStatus cardStatus) { in getIccCardStatusResponse() argument 107 responseIccCardStatus(responseInfo, cardStatus); in getIccCardStatusResponse() 114 public void getIccCardStatusResponse_1_2(RadioResponseInfo responseInfo, in getIccCardStatusResponse_1_2() argument 116 responseIccCardStatus_1_2(responseInfo, cardStatus); in getIccCardStatusResponse_1_2() 123 public void getIccCardStatusResponse_1_4(RadioResponseInfo responseInfo, in getIccCardStatusResponse_1_4() argument 125 responseIccCardStatus_1_4(responseInfo, cardStatus); in getIccCardStatusResponse_1_4() 132 public void supplyIccPinForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPinForAppResponse() argument 133 responseInts(responseInfo, remainingAttempts); in supplyIccPinForAppResponse() 140 public void supplyIccPukForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPukForAppResponse() argument 141 responseInts(responseInfo, remainingAttempts); in supplyIccPukForAppResponse() [all …]
|
D | RadioConfigResponse.java | 47 public void getSimSlotsStatusResponse(RadioResponseInfo responseInfo, in getSimSlotsStatusResponse() argument 49 RILRequest rr = mRadioConfig.processResponse(responseInfo); in getSimSlotsStatusResponse() 53 if (responseInfo.error == RadioError.NONE) { in getSimSlotsStatusResponse() 59 rr.onError(responseInfo.error, ret); in getSimSlotsStatusResponse() 62 + responseInfo.error); in getSimSlotsStatusResponse() 66 Rlog.e(TAG, "getSimSlotsStatusResponse: Error " + responseInfo.toString()); in getSimSlotsStatusResponse() 73 public void getSimSlotsStatusResponse_1_2(RadioResponseInfo responseInfo, in getSimSlotsStatusResponse_1_2() argument 75 RILRequest rr = mRadioConfig.processResponse(responseInfo); in getSimSlotsStatusResponse_1_2() 79 if (responseInfo.error == RadioError.NONE) { in getSimSlotsStatusResponse_1_2() 85 rr.onError(responseInfo.error, ret); in getSimSlotsStatusResponse_1_2() [all …]
|
D | OemHookResponse.java | 39 public void sendRequestRawResponse(RadioResponseInfo responseInfo, ArrayList<Byte> data) { in sendRequestRawResponse() argument 40 RILRequest rr = mRil.processResponse(responseInfo); in sendRequestRawResponse() 44 if (responseInfo.error == RadioError.NONE) { in sendRequestRawResponse() 48 mRil.processResponseDone(rr, responseInfo, ret); in sendRequestRawResponse() 56 public void sendRequestStringsResponse(RadioResponseInfo responseInfo, ArrayList<String> data) { in sendRequestStringsResponse() argument 57 RadioResponse.responseStringArrayList(mRil, responseInfo, data); in sendRequestStringsResponse()
|
D | RadioConfig.java | 257 public RILRequest processResponse(RadioResponseInfo responseInfo) { in processResponse() argument 258 int serial = responseInfo.serial; in processResponse() 259 int error = responseInfo.error; in processResponse() 260 int type = responseInfo.type; in processResponse()
|
D | RIL.java | 4710 public RILRequest processResponse(RadioResponseInfo responseInfo) { in processResponse() argument 4711 int serial = responseInfo.serial; in processResponse() 4712 int error = responseInfo.error; in processResponse() 4713 int type = responseInfo.type; in processResponse() 4817 public void processResponseDone(RILRequest rr, RadioResponseInfo responseInfo, Object ret) { in processResponseDone() argument 4818 if (responseInfo.error == 0) { in processResponseDone() 4826 + " error " + responseInfo.error); in processResponseDone() 4828 rr.onError(responseInfo.error, ret); in processResponseDone() 4830 mMetrics.writeOnRilSolicitedResponse(mPhoneId, rr.mSerial, responseInfo.error, in processResponseDone() 4833 if (responseInfo.type == RadioResponseType.SOLICITED) { in processResponseDone()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | RILTest.java | 1109 RadioResponseInfo responseInfo = in verifyRILResponse() local 1112 RILRequest rr = ril.processResponse(responseInfo); in verifyRILResponse() 1119 ril.processResponseDone(rr, responseInfo, null); in verifyRILResponse() 1125 RadioResponseInfo responseInfo = in verifyRILErrorResponse() local 1128 RILRequest rr = ril.processResponse(responseInfo); in verifyRILErrorResponse() 1135 ril.processResponseDone(rr, responseInfo, null); in verifyRILErrorResponse()
|