Home
last modified time | relevance | path

Searched refs:responseInfo (Results 1 – 3 of 3) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRadioResponse.java100 public void getIccCardStatusResponse(RadioResponseInfo responseInfo, CardStatus cardStatus) { in getIccCardStatusResponse() argument
101 responseIccCardStatus(responseInfo, cardStatus); in getIccCardStatusResponse()
108 public void supplyIccPinForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPinForAppResponse() argument
109 responseInts(responseInfo, remainingAttempts); in supplyIccPinForAppResponse()
116 public void supplyIccPukForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPukForAppResponse() argument
117 responseInts(responseInfo, remainingAttempts); in supplyIccPukForAppResponse()
124 public void supplyIccPin2ForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPin2ForAppResponse() argument
125 responseInts(responseInfo, remainingAttempts); in supplyIccPin2ForAppResponse()
132 public void supplyIccPuk2ForAppResponse(RadioResponseInfo responseInfo, int remainingAttempts) { in supplyIccPuk2ForAppResponse() argument
133 responseInts(responseInfo, remainingAttempts); in supplyIccPuk2ForAppResponse()
[all …]
DOemHookResponse.java39 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()
DRIL.java3771 RILRequest processResponse(RadioResponseInfo responseInfo) { in processResponse() argument
3772 int serial = responseInfo.serial; in processResponse()
3773 int error = responseInfo.error; in processResponse()
3774 int type = responseInfo.type; in processResponse()
3871 void processResponseDone(RILRequest rr, RadioResponseInfo responseInfo, Object ret) { in processResponseDone() argument
3872 if (responseInfo.error == 0) { in processResponseDone()
3880 + " error " + responseInfo.error); in processResponseDone()
3882 rr.onError(responseInfo.error, ret); in processResponseDone()
3884 mMetrics.writeOnRilSolicitedResponse(mPhoneId, rr.mSerial, responseInfo.error, in processResponseDone()
3887 if (responseInfo.type == RadioResponseType.SOLICITED) { in processResponseDone()