HomeSort by relevance Sort by last modified time
    Searched refs:cellLocation (Results 1 - 4 of 4) sorted by null

  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
TrackerService.java 37 import android.telephony.CellLocation;
346 public void onCellLocationChanged(CellLocation location) {
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()
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephonyRegistry.aidl 41 void notifyCellLocation(in Bundle cellLocation);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 415 android.telephony.CellLocation cl = mPhone.getCellLocation();
420 GsmCellLocation cellLocation = (GsmCellLocation)cl;
421 lac = cellLocation.getLac();
422 cid = cellLocation.getCid();
  /frameworks/base/services/java/com/android/server/
TelephonyRegistry.java 34 import android.telephony.CellLocation;
169 CellLocation location = CellLocation.getEmpty();
562 public void notifyCellLocation(Bundle cellLocation) {
567 mCellLocation = cellLocation;
575 r.callback.onCellLocationChanged(new Bundle(cellLocation));

Completed in 103 milliseconds