Home
last modified time | relevance | path

Searched refs:mCellLoc (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmServiceStateTracker.java98 GsmCellLocation mCellLoc; field in GsmServiceStateTracker
225 mCellLoc = new GsmCellLocation(); in GsmServiceStateTracker()
367 mCellLoc.setLacAndCid(lac, cid); in handleMessage()
1039 boolean hasLocationChanged = !mNewCellLoc.equals(mCellLoc); in pollStateDone()
1082 GsmCellLocation tcl = mCellLoc; in pollStateDone()
1083 mCellLoc = mNewCellLoc; in pollStateDone()
1596 if ((mCellLoc.getLac() >= 0) && (mCellLoc.getCid() >= 0)) { in getCellLocation()
1597 if (DBG) log("getCellLocation(): X good mCellLoc=" + mCellLoc); in getCellLocation()
1598 return mCellLoc; in getCellLocation()
1654 log("getCellLocation(): X empty mCellLoc and CellInfo mCellLoc=" + mCellLoc); in getCellLocation()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCdmaServiceStateTracker.java79 CdmaCellLocation mCellLoc; field in CdmaServiceStateTracker
176 mCellLoc = new CdmaCellLocation(); in CdmaServiceStateTracker()
392 mCellLoc.setCellLocationData(baseStationId, baseStationLatitude, in handleMessage()
1171 boolean hasLocationChanged = !mNewCellLoc.equals(mCellLoc); in pollStateDone()
1191 CdmaCellLocation tcl = mCellLoc; in pollStateDone()
1192 mCellLoc = mNewCellLoc; in pollStateDone()
2016 pw.println(" mCellLoc=" + mCellLoc); in dump()
DCdmaLteServiceStateTracker.java363 boolean hasLocationChanged = !mNewCellLoc.equals(mCellLoc); in pollStateDone()
418 CdmaCellLocation tcl = mCellLoc; in pollStateDone()
419 mCellLoc = mNewCellLoc; in pollStateDone()
DCDMAPhone.java633 CdmaCellLocation loc = mSST.mCellLoc; in getCellLocation()