OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cellLocation
(Results
1 - 5
of
5
) 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/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCellBroadcastHandler.java
23
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/com/android/internal/telephony/
ITelephonyRegistry.aidl
41
void notifyCellLocation(in Bundle
cellLocation
);
/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
));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableSection.cpp
[
all
...]
Completed in 899 milliseconds