Searched refs:responseInfo (Results 1 – 6 of 6) sorted by relevance
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | RadioResponse.java | 256 responseVoid(responseInfo); in dialResponse() 271 responseVoid(responseInfo); in hangupConnectionResponse() 278 responseVoid(responseInfo); in hangupWaitingOrBackgroundResponse() 285 responseVoid(responseInfo); in hangupForegroundResumeBackgroundResponse() 292 responseVoid(responseInfo); in switchWaitingOrHoldingAndActiveResponse() 299 responseVoid(responseInfo); in conferenceResponse() 306 responseVoid(responseInfo); in rejectCallResponse() 553 responseVoid(responseInfo); in setRadioPowerResponse() 561 responseVoid(responseInfo); in sendDtmfResponse() 684 responseVoid(responseInfo); in sendUssdResponse() [all …]
|
H A D | RadioConfigResponse.java | 74 rr.onError(responseInfo.error, ret); in getSimSlotsStatusResponse() 77 + responseInfo.error); in getSimSlotsStatusResponse() 100 rr.onError(responseInfo.error, ret); in getSimSlotsStatusResponse_1_2() 103 + responseInfo.error); in getSimSlotsStatusResponse_1_2() 126 + responseInfo.error); in setSimSlotsMappingResponse() 164 rr.onError(responseInfo.error, ret); in getPhoneCapabilityResponse() 167 + responseInfo.error); in getPhoneCapabilityResponse() 190 + responseInfo.error); in setPreferredDataModemResponse() 214 + responseInfo.error); in setModemsConfigResponse() 237 + responseInfo.error); in getModemsConfigResponse() [all …]
|
H A D | RadioConfig.java | 317 public RILRequest processResponse(RadioResponseInfo responseInfo) { in processResponse() argument 318 int serial = responseInfo.serial; in processResponse() 319 int error = responseInfo.error; in processResponse() 320 int type = responseInfo.type; in processResponse() 342 android.hardware.radio.V1_6.RadioResponseInfo responseInfo) { in processResponse_1_6() argument 343 int serial = responseInfo.serial; in processResponse_1_6() 344 int error = responseInfo.error; in processResponse_1_6() 345 int type = responseInfo.type; in processResponse_1_6()
|
H A D | RIL.java | 6096 public RILRequest processResponse(RadioResponseInfo responseInfo) { in processResponse() argument 6097 return processResponseInternal(responseInfo.serial, responseInfo.error, responseInfo.type); in processResponse() 6110 android.hardware.radio.V1_6.RadioResponseInfo responseInfo) { in processResponse_1_6() argument 6111 return processResponseInternal(responseInfo.serial, responseInfo.error, responseInfo.type); in processResponse_1_6() 6217 public void processResponseDone(RILRequest rr, RadioResponseInfo responseInfo, Object ret) { in processResponseDone() argument 6218 processResponseDoneInternal(rr, responseInfo.error, responseInfo.type, ret); in processResponseDone() 6232 RILRequest rr, android.hardware.radio.V1_6.RadioResponseInfo responseInfo, in processResponseDone_1_6() argument 6234 processResponseDoneInternal(rr, responseInfo.error, responseInfo.type, ret); in processResponseDone_1_6() 6264 public void processResponseFallback(RILRequest rr, RadioResponseInfo responseInfo, Object ret) { in processResponseFallback() argument 6265 if (responseInfo.error == REQUEST_NOT_SUPPORTED && RILJ_LOGD) { in processResponseFallback() [all …]
|
/aosp12/hardware/ril/libril/ |
H A D | ril_service.cpp | 3265 responseInfo); in hangupConnectionResponse() 3287 responseInfo); in hangupWaitingOrBackgroundResponse() 3309 responseInfo); in hangupForegroundResumeBackgroundResponse() 3331 responseInfo); in switchWaitingOrHoldingAndActiveResponse() 3351 responseInfo); in conferenceResponse() 3371 responseInfo); in rejectCallResponse() 3954 responseInfo); in setRadioPowerResponse() 3975 responseInfo); in sendDtmfResponse() 4477 responseInfo, in getNetworkSelectionModeResponse() 5747 responseInfo, in requestIsimAuthenticationResponse() [all …]
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
H A D | RILTest.java | 1387 RadioResponseInfo responseInfo = in verifyRILResponse() local 1390 RILRequest rr = ril.processResponse(responseInfo); in verifyRILResponse() 1397 ril.processResponseDone(rr, responseInfo, null); in verifyRILResponse() 1407 RILRequest rr = ril.processResponse_1_6(responseInfo); in verifyRILResponse_1_6() 1414 ril.processResponseDone_1_6(rr, responseInfo, null); in verifyRILResponse_1_6() 1420 RadioResponseInfo responseInfo = in verifyRILErrorResponse() local 1423 RILRequest rr = ril.processResponse(responseInfo); in verifyRILErrorResponse() 1430 ril.processResponseDone(rr, responseInfo, null); in verifyRILErrorResponse() 1437 RadioResponseInfo responseInfo = in verifyRILUnsupportedResponse() local 1441 RILRequest rr = ril.processResponse(responseInfo); in verifyRILUnsupportedResponse() [all …]
|