Home
last modified time | relevance | path

Searched refs:cellLocation (Results 1 – 5 of 5) 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/base/core/java/com/android/internal/telephony/
DITelephonyRegistry.aidl72 void notifyCellLocation(in CellIdentity cellLocation); in notifyCellLocation() argument
73 void notifyCellLocationForSubscriber(in int subId, in CellIdentity cellLocation); in notifyCellLocationForSubscriber() argument
/frameworks/base/core/java/android/telephony/
DTelephonyRegistryManager.java700 public void notifyCellLocation(int subId, @NonNull CellIdentity cellLocation) { in notifyCellLocation() argument
702 sRegistry.notifyCellLocationForSubscriber(subId, cellLocation); in notifyCellLocation()
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java1826 public void notifyCellLocation(CellIdentity cellLocation) { in notifyCellLocation() argument
1827 notifyCellLocationForSubscriber(SubscriptionManager.DEFAULT_SUBSCRIPTION_ID, cellLocation); in notifyCellLocation()
1831 public void notifyCellLocationForSubscriber(int subId, CellIdentity cellLocation) { in notifyCellLocationForSubscriber() argument
1833 + " cellLocation=" + cellLocation); in notifyCellLocationForSubscriber()
1839 + " cellLocation=" + cellLocation); in notifyCellLocationForSubscriber()
1844 mCellIdentity[phoneId] = cellLocation; in notifyCellLocationForSubscriber()
1851 log("notifyCellLocation: cellLocation=" + cellLocation in notifyCellLocationForSubscriber()
1854 r.callback.onCellLocationChanged(cellLocation); in notifyCellLocationForSubscriber()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DGsmCdmaPhoneTest.java379 CellIdentity cellLocation = new CellIdentityGsm(); in testGetCellLocation() local
382 doReturn(cellLocation).when(mSST).getCellIdentity(); in testGetCellLocation()
383 assertEquals(cellLocation, mPhoneUT.getCellIdentity()); in testGetCellLocation()