Home
last modified time | relevance | path

Searched refs:cellLocation (Results 1 – 6 of 6) 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.aidl66 void notifyCellLocation(in Bundle cellLocation); in notifyCellLocation() argument
67 void notifyCellLocationForSubscriber(in int subId, in Bundle cellLocation); in notifyCellLocationForSubscriber() argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DTelephonyRegistryMock.java336 public void notifyCellLocation(Bundle cellLocation) { in notifyCellLocation() argument
341 public void notifyCellLocationForSubscriber(int subId, Bundle cellLocation) { in notifyCellLocationForSubscriber() argument
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java1534 public void notifyCellLocation(Bundle cellLocation) { in notifyCellLocation() argument
1535 notifyCellLocationForSubscriber(SubscriptionManager.DEFAULT_SUBSCRIPTION_ID, cellLocation); in notifyCellLocation()
1538 public void notifyCellLocationForSubscriber(int subId, Bundle cellLocation) { in notifyCellLocationForSubscriber() argument
1540 + " cellLocation=" + cellLocation); in notifyCellLocationForSubscriber()
1546 + " cellLocation=" + cellLocation); in notifyCellLocationForSubscriber()
1551 mCellLocation[phoneId] = cellLocation; in notifyCellLocationForSubscriber()
1558 log("notifyCellLocation: cellLocation=" + cellLocation in notifyCellLocationForSubscriber()
1561 r.callback.onCellLocationChanged(new Bundle(cellLocation)); in notifyCellLocationForSubscriber()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DGsmCdmaPhoneTest.java225 CellLocation cellLocation = new GsmCellLocation(); in testGetCellLocation() local
228 doReturn(cellLocation).when(mSST).getCellLocation(); in testGetCellLocation()
229 assertEquals(cellLocation, mPhoneUT.getCellLocation()); in testGetCellLocation()