Searched refs:rspMsg (Results 1 – 3 of 3) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | ServiceStateTracker.java | 3918 public void requestCellLocation(WorkSource workSource, Message rspMsg) { in requestCellLocation() argument 3920 AsyncResult.forMessage(rspMsg, mCellIdentity.asCellLocation(), null); in requestCellLocation() 3921 rspMsg.sendToTarget(); in requestCellLocation() 3925 Message cellLocRsp = obtainMessage(EVENT_CELL_LOCATION_RESPONSE, rspMsg); in requestCellLocation() 4764 public void requestAllCellInfo(WorkSource workSource, Message rspMsg) { in requestAllCellInfo() argument 4767 AsyncResult.forMessage(rspMsg); in requestAllCellInfo() 4768 rspMsg.sendToTarget(); in requestAllCellInfo() 4776 if (rspMsg != null) mPendingCellInfoRequests.add(rspMsg); in requestAllCellInfo() 4783 if (rspMsg != null) { in requestAllCellInfo() 4785 AsyncResult.forMessage(rspMsg, mLastCellInfoList, null); in requestAllCellInfo() [all …]
|
D | Phone.java | 1878 public void requestCellInfoUpdate(WorkSource workSource, Message rspMsg) { in requestCellInfoUpdate() argument 1879 getServiceStateTracker().requestAllCellInfo(workSource, rspMsg); in requestCellInfoUpdate() 1894 public void getCellLocation(WorkSource workSource, Message rspMsg) { in getCellLocation() argument 1895 getServiceStateTracker().requestCellLocation(workSource, rspMsg); in getCellLocation()
|
D | GsmCdmaPhone.java | 515 public void getCellLocation(WorkSource workSource, Message rspMsg) { in getCellLocation() argument 516 mSST.requestCellLocation(workSource, rspMsg); in getCellLocation()
|