Searched refs:cellLocation (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/ |
D | TrackerService.java | 349 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/ |
D | ITelephonyRegistry.aidl | 68 void notifyCellLocationForSubscriber(in int subId, in CellIdentity cellLocation); in notifyCellLocationForSubscriber() argument
|
/frameworks/base/core/java/android/telephony/ |
D | TelephonyRegistryManager.java | 895 public void notifyCellLocation(int subId, @NonNull CellIdentity cellLocation) { in notifyCellLocation() argument 897 sRegistry.notifyCellLocationForSubscriber(subId, cellLocation); in notifyCellLocation()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | GsmCdmaPhoneTest.java | 443 CellIdentity cellLocation = new CellIdentityGsm(); in testGetCellLocation() local 446 doReturn(cellLocation).when(mSST).getCellIdentity(); in testGetCellLocation() 447 assertEquals(cellLocation, mPhoneUT.getCurrentCellIdentity()); in testGetCellLocation()
|