HomeSort by relevance Sort by last modified time
    Searched full:celllocation (Results 1 - 25 of 31) sorted by null

1 2

  /frameworks/base/telephony/java/android/telephony/
CellLocation.java 31 public abstract class CellLocation {
50 * Create a new CellLocation from a intent notifier Bundle
56 * @return newly created CellLocation
60 public static CellLocation newFromBundle(Bundle bundle) {
90 * Return a new CellLocation object representing an unknown
94 public static CellLocation getEmpty() {
PhoneStateListener.java 24 import android.telephony.CellLocation;
295 PhoneStateListener.this.onCellLocationChanged((CellLocation)msg.obj);
385 public void onCellLocationChanged(CellLocation location) {
576 CellLocation location = CellLocation.newFromBundle(bundle);
  /cts/tests/tests/telephony/src/android/telephony/cts/
CellLocationTest.java 24 import android.telephony.CellLocation;
71 CellLocation cl = CellLocation.getEmpty();
84 public void onCellLocationChanged(CellLocation location) {
99 CellLocation.requestLocationUpdate();
TelephonyManagerTest.java 31 import android.telephony.CellLocation;
85 public void onCellLocationChanged(CellLocation location) {
95 CellLocation.requestLocationUpdate();
114 CellLocation.requestLocationUpdate();
PhoneStateListenerTest.java 22 import android.telephony.CellLocation;
294 public void onCellLocationChanged(CellLocation location) {
  /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 57 void notifyCellLocation(in Bundle cellLocation);
58 void notifyCellLocationForSubscriber(in int subId, in Bundle cellLocation);
IPhoneStateListener.aidl 34 // we use bundle here instead of CellLocation so it can get the right subclass
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCellBroadcastHandler.java 22 import android.telephony.CellLocation;
113 CellLocation cl = mPhone.getCellLocation();
118 GsmCellLocation cellLocation = (GsmCellLocation)cl;
119 lac = cellLocation.getLac();
120 cid = cellLocation.getCid();
  /frameworks/base/telephony/java/android/telephony/gsm/
GsmCellLocation.java 20 import android.telephony.CellLocation;
25 public class GsmCellLocation extends CellLocation {
  /frameworks/base/services/core/java/com/android/server/
TelephonyRegistry.java 36 import android.telephony.CellLocation;
289 CellLocation location = CellLocation.getEmpty();
    [all...]
  /frameworks/base/services/core/java/com/android/server/emergency/
EmergencyAffordanceService.java 32 import android.telephony.CellLocation;
84 public void onCellLocationChanged(CellLocation location) {
  /frameworks/base/telephony/java/android/telephony/cdma/
CdmaCellLocation.java 20 import android.telephony.CellLocation;
25 public class CdmaCellLocation extends CellLocation {
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
TelephonyRegistryMock.java 259 public void notifyCellLocation(Bundle cellLocation) {
264 public void notifyCellLocationForSubscriber(int subId, Bundle cellLocation) {
PhoneMock.java 31 import android.telephony.CellLocation;
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
JsonBuilder.java 89 import android.telephony.CellLocation;
200 if (data instanceof CellLocation) {
201 return buildJsonCellLocation((CellLocation) data);
497 private static JSONObject buildJsonCellLocation(CellLocation cellLocation)
500 if (cellLocation instanceof GsmCellLocation) {
501 GsmCellLocation location = (GsmCellLocation) cellLocation;
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmCdmaPhoneTest.java 31 import android.telephony.CellLocation;
171 CellLocation cellLocation = new GsmCellLocation();
172 doReturn(cellLocation).when(mSST).getCellLocation();
173 assertEquals(cellLocation, mPhoneUT.getCellLocation());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneBase.java 27 import android.telephony.CellLocation;
153 public CellLocation getCellLocation() {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java 27 import android.telephony.CellLocation;
113 public CellLocation getCellLocation() {
  /frameworks/opt/telephony/src/java/android/telephony/
SmsCbLocation.java 143 * Test whether this location is within the location area of the CellLocation.
SmsCbMessage.java 257 * if the location is included within another location area or within a PLMN and CellLocation.
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneInternalInterface.java 26 import android.telephony.CellLocation;
221 * Get the current CellLocation.
223 CellLocation getCellLocation();
697 * Update the ServiceState CellLocation for current network registration.
GsmCdmaCallTracker.java 30 import android.telephony.CellLocation;
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 41 import android.telephony.CellLocation;
213 private CellLocation mCellLocationResult = null;
243 public void onCellLocationChanged(CellLocation location) {
592 private final void updateLocation(CellLocation location) {
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
TelephonyManagerFacade.java 29 import android.telephony.CellLocation;
558 public CellLocation telephonyGetCellLocation() {
    [all...]

Completed in 1426 milliseconds

1 2