Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DServiceStateTracker.java4121 public void requestCellIdentity(WorkSource workSource, Message rspMsg) { in requestCellIdentity() argument
4123 AsyncResult.forMessage(rspMsg, mCellIdentity, null); in requestCellIdentity()
4124 rspMsg.sendToTarget(); in requestCellIdentity()
4128 Message cellLocRsp = obtainMessage(EVENT_CELL_LOCATION_RESPONSE, rspMsg); in requestCellIdentity()
5005 public void requestAllCellInfo(WorkSource workSource, Message rspMsg) { in requestAllCellInfo() argument
5008 AsyncResult.forMessage(rspMsg); in requestAllCellInfo()
5009 rspMsg.sendToTarget(); in requestAllCellInfo()
5017 if (rspMsg != null) mPendingCellInfoRequests.add(rspMsg); in requestAllCellInfo()
5024 if (rspMsg != null) { in requestAllCellInfo()
5026 AsyncResult.forMessage(rspMsg, mLastCellInfoList, null); in requestAllCellInfo()
[all …]
DPhone.java1945 public void requestCellInfoUpdate(WorkSource workSource, Message rspMsg) { in requestCellInfoUpdate() argument
1946 getServiceStateTracker().requestAllCellInfo(workSource, rspMsg); in requestCellInfoUpdate()
1960 public void getCellIdentity(WorkSource workSource, Message rspMsg) { in getCellIdentity() argument
1961 getServiceStateTracker().requestCellIdentity(workSource, rspMsg); in getCellIdentity()
DGsmCdmaPhone.java541 public void getCellIdentity(WorkSource workSource, Message rspMsg) { in getCellIdentity() argument
542 mSST.requestCellIdentity(workSource, rspMsg); in getCellIdentity()