Searched refs:cellLocation (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
H A 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
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCellBroadcastHandler.java118 GsmCellLocation cellLocation = (GsmCellLocation)cl;
119 lac = cellLocation.getLac();
120 cid = cellLocation.getCid();
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DITelephonyRegistry.aidl57 void notifyCellLocation(in Bundle cellLocation);
58 void notifyCellLocationForSubscriber(in int subId, in Bundle cellLocation);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DTelephonyRegistryMock.java259 public void notifyCellLocation(Bundle cellLocation) { argument
264 public void notifyCellLocationForSubscriber(int subId, Bundle cellLocation) { argument
/frameworks/base/services/core/java/com/android/server/
H A DTelephonyRegistry.java1132 public void notifyCellLocation(Bundle cellLocation) { argument
1133 notifyCellLocationForSubscriber(SubscriptionManager.DEFAULT_SUBSCRIPTION_ID, cellLocation);
1136 public void notifyCellLocationForSubscriber(int subId, Bundle cellLocation) { argument
1138 + " cellLocation=" + cellLocation);
1144 + " cellLocation=" + cellLocation);
1149 mCellLocation[phoneId] = cellLocation;
1155 log("notifyCellLocation: cellLocation=" + cellLocation
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DGsmCdmaPhoneTest.java171 CellLocation cellLocation = new GsmCellLocation();
172 doReturn(cellLocation).when(mSST).getCellLocation();
173 assertEquals(cellLocation, mPhoneUT.getCellLocation());

Completed in 300 milliseconds