Searched refs:cellInfo (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/services/core/java/com/android/server/emergency/
H A DEmergencyAffordanceService.java77 public void onCellInfoChanged(List<CellInfo> cellInfo) {
276 for (CellInfo cellInfo : cellInfos) {
278 if (cellInfo instanceof CellInfoGsm) {
279 mcc = ((CellInfoGsm) cellInfo).getCellIdentity().getMcc();
280 } else if (cellInfo instanceof CellInfoLte) {
281 mcc = ((CellInfoLte) cellInfo).getCellIdentity().getMcc();
282 } else if (cellInfo instanceof CellInfoWcdma) {
283 mcc = ((CellInfoWcdma) cellInfo).getCellIdentity().getMcc();
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DTestPhoneNotifier.java.broken67 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) {
H A DServiceStateTrackerTest.java348 CellInfoGsm cellInfo = CellInfoGsm.CREATOR.createFromParcel(p);
351 list.add(cellInfo);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DLocaleTracker.java185 for (CellInfo cellInfo : mCellInfo) {
187 if (cellInfo instanceof CellInfoGsm) {
188 mcc = ((CellInfoGsm) cellInfo).getCellIdentity().getMccString();
189 } else if (cellInfo instanceof CellInfoLte) {
190 mcc = ((CellInfoLte) cellInfo).getCellIdentity().getMccString();
191 } else if (cellInfo instanceof CellInfoWcdma) {
192 mcc = ((CellInfoWcdma) cellInfo).getCellIdentity().getMccString();
H A DPhoneNotifier.java52 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo); argument
H A DDefaultPhoneNotifier.java224 public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { argument
228 mRegistry.notifyCellInfoForSubscriber(subId, cellInfo);
H A DRadioResponse.java1008 ArrayList<android.hardware.radio.V1_0.CellInfo> cellInfo) {
1009 responseCellInfoList(responseInfo, cellInfo);
1014 * @param cellInfo List of current cell information known to radio
1018 ArrayList<android.hardware.radio.V1_2.CellInfo> cellInfo) {
1019 responseCellInfoList_1_2(responseInfo, cellInfo);
1934 ArrayList<android.hardware.radio.V1_0.CellInfo> cellInfo) {
1938 ArrayList<CellInfo> ret = RIL.convertHalCellInfoList(cellInfo);
1948 ArrayList<android.hardware.radio.V1_2.CellInfo> cellInfo) {
1952 ArrayList<CellInfo> ret = RIL.convertHalCellInfoList_1_2(cellInfo);
1007 getCellInfoListResponse(RadioResponseInfo responseInfo, ArrayList<android.hardware.radio.V1_0.CellInfo> cellInfo) argument
1016 getCellInfoListResponse_1_2( RadioResponseInfo responseInfo, ArrayList<android.hardware.radio.V1_2.CellInfo> cellInfo) argument
1933 responseCellInfoList(RadioResponseInfo responseInfo, ArrayList<android.hardware.radio.V1_0.CellInfo> cellInfo) argument
1946 responseCellInfoList_1_2( RadioResponseInfo responseInfo, ArrayList<android.hardware.radio.V1_2.CellInfo> cellInfo) argument
H A DPhone.java2192 public void notifyCellInfo(List<CellInfo> cellInfo) { argument
2193 mNotifier.notifyCellInfo(this, privatizeCellInfoList(cellInfo));
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIPhoneStateListener.aidl43 void onCellInfoChanged(in List<CellInfo> cellInfo);
H A DITelephonyRegistry.aidl60 void notifyCellInfo(in List<CellInfo> cellInfo);
69 void notifyCellInfoForSubscriber(in int subId, in List<CellInfo> cellInfo);
/frameworks/base/telephony/java/android/telephony/
H A DPhoneStateListener.java520 * @param cellInfo is the list of currently visible cells.
522 public void onCellInfoChanged(List<CellInfo> cellInfo) { argument
692 public void onCellInfoChanged(List<CellInfo> cellInfo) { argument
693 send(LISTEN_CELL_INFO, 0, 0, cellInfo);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkMonitor.java1292 for (CellInfo cellInfo : info) {
1293 if (cellInfo.isRegistered()) {
1300 if (cellInfo instanceof CellInfoCdma) {
1301 CellIdentityCdma cellId = ((CellInfoCdma) cellInfo).getCellIdentity();
1303 } else if (cellInfo instanceof CellInfoGsm) {
1304 CellIdentityGsm cellId = ((CellInfoGsm) cellInfo).getCellIdentity();
1306 } else if (cellInfo instanceof CellInfoLte) {
1307 CellIdentityLte cellId = ((CellInfoLte) cellInfo).getCellIdentity();
1309 } else if (cellInfo instanceof CellInfoWcdma) {
1310 CellIdentityWcdma cellId = ((CellInfoWcdma) cellInfo)
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DTelephonyRegistryMock.java276 public void notifyCellInfo(List<CellInfo> cellInfo) { argument
309 public void notifyCellInfoForSubscriber(int subId, List<CellInfo> cellInfo) { argument
H A DPhoneMock.java581 public void notifyCellInfo(List<CellInfo> cellInfo) { argument
/frameworks/base/services/core/java/com/android/server/
H A DTelephonyRegistry.java980 public void notifyCellInfo(List<CellInfo> cellInfo) { argument
981 notifyCellInfoForSubscriber(SubscriptionManager.DEFAULT_SUBSCRIPTION_ID, cellInfo);
984 public void notifyCellInfoForSubscriber(int subId, List<CellInfo> cellInfo) { argument
990 + " cellInfo=" + cellInfo);
995 mCellInfo.set(phoneId, cellInfo);
1002 log("notifyCellInfo: mCellInfo=" + cellInfo + " r=" + r);
1004 r.callback.onCellInfoChanged(cellInfo);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1905 CellInfoGsm cellInfo = CellInfoGsm.CREATOR.createFromParcel(p);
1908 mCellInfoList.add(cellInfo);

Completed in 407 milliseconds