Home
last modified time | relevance | path

Searched refs:cellLocation (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
DTrackerService.java349 GsmCellLocation cellLocation = (GsmCellLocation)location;
350 String updateMsg = "cid=" + cellLocation.getCid() +
351 ", lac=" + cellLocation.getLac();
354 CdmaCellLocation cellLocation = (CdmaCellLocation)location;
355 String updateMsg = "BID=" + cellLocation.getBaseStationId() +
356 ", SID=" + cellLocation.getSystemId() +
357 ", NID=" + cellLocation.getNetworkId() +
358 ", lat=" + cellLocation.getBaseStationLatitude() +
359 ", long=" + cellLocation.getBaseStationLongitude() +
360 ", SID=" + cellLocation.getSystemId() +
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmCellBroadcastHandler.java120 GsmCellLocation cellLocation = (GsmCellLocation)cl; in handleGsmBroadcastSms() local
121 lac = cellLocation.getLac(); in handleGsmBroadcastSms()
122 cid = cellLocation.getCid(); in handleGsmBroadcastSms()
/frameworks/base/telephony/java/com/android/internal/telephony/
DITelephonyRegistry.aidl57 void notifyCellLocation(in Bundle cellLocation); in notifyCellLocation() argument
58 void notifyCellLocationForSubscriber(in int subId, in Bundle cellLocation); in notifyCellLocationForSubscriber() argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DTelephonyRegistryMock.java261 public void notifyCellLocation(Bundle cellLocation) { in notifyCellLocation() argument
266 public void notifyCellLocationForSubscriber(int subId, Bundle cellLocation) { in notifyCellLocationForSubscriber() argument
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java1278 public void notifyCellLocation(Bundle cellLocation) { in notifyCellLocation() argument
1279 notifyCellLocationForSubscriber(SubscriptionManager.DEFAULT_SUBSCRIPTION_ID, cellLocation); in notifyCellLocation()
1282 public void notifyCellLocationForSubscriber(int subId, Bundle cellLocation) { in notifyCellLocationForSubscriber() argument
1284 + " cellLocation=" + cellLocation); in notifyCellLocationForSubscriber()
1290 + " cellLocation=" + cellLocation); in notifyCellLocationForSubscriber()
1295 mCellLocation[phoneId] = cellLocation; in notifyCellLocationForSubscriber()
1302 log("notifyCellLocation: cellLocation=" + cellLocation in notifyCellLocationForSubscriber()
1305 r.callback.onCellLocationChanged(new Bundle(cellLocation)); in notifyCellLocationForSubscriber()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DGsmCdmaPhoneTest.java238 CellLocation cellLocation = new GsmCellLocation(); in testGetCellLocation() local
241 doReturn(cellLocation).when(mSST).getCellLocation(workSource); in testGetCellLocation()
242 assertEquals(cellLocation, mPhoneUT.getCellLocation(workSource)); in testGetCellLocation()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DServiceStateTracker.java906 private void processCellLocationInfo(CellLocation cellLocation, CellIdentity cellIdentity) { in processCellLocationInfo() argument
940 ((GsmCellLocation) cellLocation).setLacAndCid(lac, cid); in processCellLocationInfo()
941 ((GsmCellLocation) cellLocation).setPsc(psc); in processCellLocationInfo()
972 ((CdmaCellLocation) cellLocation).setCellLocationData(baseStationId, in processCellLocationInfo()