Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DIccRecords.java882 AuthAsyncResponse rsp = (AuthAsyncResponse) ar.userObj; in handleMessage() local
885 synchronized (rsp) { in handleMessage()
887 rsp.exception = ar.exception; in handleMessage()
890 rsp.exception = new NullPointerException( in handleMessage()
895 rsp.authRsp = (IccIoResult) ar.result; in handleMessage()
896 if (VDBG) log("ICC SIM AKA: authRsp = " + rsp.authRsp); in handleMessage()
898 rsp.exception = e; in handleMessage()
902 rsp.notifyAll(); in handleMessage()
1199 AuthAsyncResponse rsp = new AuthAsyncResponse(); in getIccSimChallengeResponse() local
1201 synchronized (rsp) { in getIccSimChallengeResponse()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DTelephonyEventBuilder.java109 public TelephonyEventBuilder setSetupDataCallResponse(RilSetupDataCallResponse rsp) { in setSetupDataCallResponse() argument
111 mEvent.setupDataCallResponse = rsp; in setSetupDataCallResponse()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DServiceStateTrackerTest.java570 Message rsp = cih.obtainMessage(0x7357); in testGetCellInfoResponse() local
572 sst.requestAllCellInfo(null, rsp); in testGetCellInfoResponse()
574 synchronized (rsp) { in testGetCellInfoResponse()
575 if (cih.cellInfoResult == null) rsp.wait(5000); in testGetCellInfoResponse()
578 AsyncResult ar = (AsyncResult) rsp.obj; in testGetCellInfoResponse()
589 Message rsp = cih.obtainMessage(0x7357); in testGetCellInfoResponseTimeout() local
591 sst.requestAllCellInfo(null, rsp); in testGetCellInfoResponseTimeout()
593 synchronized (rsp) { in testGetCellInfoResponseTimeout()
594 if (cih.cellInfoResult == null) rsp.wait(5000); in testGetCellInfoResponseTimeout()