Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/com/android/internal/telephony/
DNetworkScanResult.java36 public final class NetworkScanResult implements Parcelable { class
64 public NetworkScanResult(int scanStatus, int scanError, List<CellInfo> networkInfos) { in NetworkScanResult() method in NetworkScanResult
82 private NetworkScanResult(Parcel in) { in NetworkScanResult() method in NetworkScanResult
92 NetworkScanResult nsr; in equals()
95 nsr = (NetworkScanResult) o; in equals()
127 public static final Creator<NetworkScanResult> CREATOR =
128 new Creator<NetworkScanResult>() {
130 public NetworkScanResult createFromParcel(Parcel in) {
131 return new NetworkScanResult(in);
135 public NetworkScanResult[] newArray(int size) {
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DNetworkScanResultTest.java66 NetworkScanResult nsr = new NetworkScanResult(0, 0, infos); in testParcel()
72 NetworkScanResult newNsr = NetworkScanResult.CREATOR.createFromParcel(p); in testParcel()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRadioIndication.java794 android.hardware.radio.V1_1.NetworkScanResult result) { in networkScanResult()
800 android.hardware.radio.V1_2.NetworkScanResult result) { in networkScanResult_1_2()
806 android.hardware.radio.V1_4.NetworkScanResult result) { in networkScanResult_1_4()
812 android.hardware.radio.V1_5.NetworkScanResult result) { in networkScanResult_1_5()
1161 android.hardware.radio.V1_1.NetworkScanResult result) { in responseNetworkScan()
1164 NetworkScanResult nsr = null; in responseNetworkScan()
1166 nsr = new NetworkScanResult(result.status, result.error, infos); in responseNetworkScan()
1172 android.hardware.radio.V1_2.NetworkScanResult result) { in responseNetworkScan_1_2()
1175 NetworkScanResult nsr = null; in responseNetworkScan_1_2()
1177 nsr = new NetworkScanResult(result.status, result.error, infos); in responseNetworkScan_1_2()
[all …]
DNetworkScanRequestTracker.java446 NetworkScanResult nsr = (NetworkScanResult) ar.result; in receiveResult()
461 if (nsr.scanStatus == NetworkScanResult.SCAN_STATUS_COMPLETE) { in receiveResult()
DRadioResponse.java2273 NetworkScanResult nsr = null; in responseScanStatus()
2275 nsr = new NetworkScanResult( in responseScanStatus()
2276 NetworkScanResult.SCAN_STATUS_PARTIAL, RadioError.NONE, null); in responseScanStatus()