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/
DPhone.java1573 List<CellInfo> cellInfoList = getServiceStateTracker().getAllCellInfo(); in getAllCellInfo() local
1574 return privatizeCellInfoList(cellInfoList); in getAllCellInfo()
1582 private List<CellInfo> privatizeCellInfoList(List<CellInfo> cellInfoList) { in privatizeCellInfoList() argument
1583 if (cellInfoList == null) return null; in privatizeCellInfoList()
1587 ArrayList<CellInfo> privateCellInfoList = new ArrayList<CellInfo>(cellInfoList.size()); in privatizeCellInfoList()
1589 for (CellInfo c : cellInfoList) { in privatizeCellInfoList()
1605 cellInfoList = privateCellInfoList; in privatizeCellInfoList()
1607 return cellInfoList; in privatizeCellInfoList()