Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DPhoneBase.java1341 List<CellInfo> cellInfoList = getServiceStateTracker().getAllCellInfo(); in getAllCellInfo() local
1342 return privatizeCellInfoList(cellInfoList); in getAllCellInfo()
1350 private List<CellInfo> privatizeCellInfoList(List<CellInfo> cellInfoList) { in privatizeCellInfoList() argument
1351 if (cellInfoList == null) return null; in privatizeCellInfoList()
1355 ArrayList<CellInfo> privateCellInfoList = new ArrayList<CellInfo>(cellInfoList.size()); in privatizeCellInfoList()
1357 for (CellInfo c : cellInfoList) { in privatizeCellInfoList()
1373 cellInfoList = privateCellInfoList; in privatizeCellInfoList()
1375 return cellInfoList; in privatizeCellInfoList()