Home
last modified time | relevance | path

Searched refs:cellIdentity (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCellularNetworkService.java228 CellIdentity cellIdentity = in createRegistrationStateFromVoiceRegState() local
229 convertHalCellIdentityToCellIdentity(voiceRegState.cellIdentity); in createRegistrationStateFromVoiceRegState()
233 cellIdentity, cssSupported, roamingIndicator, systemIsInPrl, in createRegistrationStateFromVoiceRegState()
248 CellIdentity cellIdentity = in createRegistrationStateFromVoiceRegState() local
249 convertHalCellIdentityToCellIdentity(voiceRegState.cellIdentity); in createRegistrationStateFromVoiceRegState()
253 cellIdentity, cssSupported, roamingIndicator, systemIsInPrl, in createRegistrationStateFromVoiceRegState()
273 CellIdentity cellIdentity = in createRegistrationStateFromDataRegState() local
274 convertHalCellIdentityToCellIdentity(dataRegState.cellIdentity); in createRegistrationStateFromDataRegState()
278 cellIdentity, maxDataCalls); in createRegistrationStateFromDataRegState()
288 CellIdentity cellIdentity = in createRegistrationStateFromDataRegState() local
[all …]
DServiceStateTracker.java906 private void processCellLocationInfo(CellLocation cellLocation, CellIdentity cellIdentity) { in processCellLocationInfo() argument
911 if (cellIdentity != null) { in processCellLocationInfo()
912 switch (cellIdentity.getType()) { in processCellLocationInfo()
914 cid = ((CellIdentityGsm) cellIdentity).getCid(); in processCellLocationInfo()
915 lac = ((CellIdentityGsm) cellIdentity).getLac(); in processCellLocationInfo()
919 cid = ((CellIdentityWcdma) cellIdentity).getCid(); in processCellLocationInfo()
920 lac = ((CellIdentityWcdma) cellIdentity).getLac(); in processCellLocationInfo()
921 psc = ((CellIdentityWcdma) cellIdentity).getPsc(); in processCellLocationInfo()
925 cid = ((CellIdentityTdscdma) cellIdentity).getCid(); in processCellLocationInfo()
926 lac = ((CellIdentityTdscdma) cellIdentity).getLac(); in processCellLocationInfo()
[all …]
DPhone.java1719 CellIdentityCdma cellIdentity = cellInfoCdma.getCellIdentity(); in privatizeCellInfoList() local
1721 cellIdentity.getNetworkId(), in privatizeCellInfoList()
1722 cellIdentity.getSystemId(), in privatizeCellInfoList()
1723 cellIdentity.getBasestationId(), in privatizeCellInfoList()
/frameworks/base/telephony/java/android/telephony/
DNetworkRegistrationState.java123 int[] availableServices, @Nullable CellIdentity cellIdentity) { in NetworkRegistrationState() argument
130 mCellIdentity = cellIdentity; in NetworkRegistrationState()
140 int[] availableServices, @Nullable CellIdentity cellIdentity, boolean cssSupported, in NetworkRegistrationState() argument
143 reasonForDenial, emergencyOnly, availableServices, cellIdentity); in NetworkRegistrationState()
155 int[] availableServices, @Nullable CellIdentity cellIdentity, int maxDataCalls) { in NetworkRegistrationState() argument
157 reasonForDenial, emergencyOnly, availableServices, cellIdentity); in NetworkRegistrationState()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DServiceStateTrackerTest.java1513 CellIdentityGsm cellIdentity = new CellIdentityGsm(-1, -1, -1, -1, -1, -1); in testRatRatchet() local
1515 0, 0, 1, 2, 0, false, null, cellIdentity, 1); in testRatRatchet()
1524 0, 0, 1, 2, 0, false, null, cellIdentity, false, 0, 0, 0); in testRatRatchet()
1533 cellIdentity, false, 0, 0, 0); in testRatRatchet()
1550 CellIdentityGsm cellIdentity = new CellIdentityGsm(-1, -1, -1, -1, -1, -1); in testRatRatchetWithCellChange() local
1552 0, 0, 1, 2, 0, false, null, cellIdentity, 1); in testRatRatchetWithCellChange()
1561 0, 0, 1, 2, 0, false, null, cellIdentity, false, 0, 0, 0); in testRatRatchetWithCellChange()
1568 cellIdentity = new CellIdentityGsm(-1, -1, -1, 5, -1, -1); in testRatRatchetWithCellChange()
1570 0, 0, 1, 1, 0, false, null, cellIdentity, false, 0, 0, 0); in testRatRatchetWithCellChange()
1589 CellIdentityGsm cellIdentity = new CellIdentityGsm(-1, -1, -1, 5, -1, -1); in testRatRatchetWithCellChangeBeforeRatChange() local
[all …]