Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiMetrics.java1323 private String returnCodeToString(int scanReturnCode) { in returnCodeToString() argument
1324 switch(scanReturnCode){ in returnCodeToString()
1345 public void incrementScanReturnEntry(int scanReturnCode, int countToAdd) { in incrementScanReturnEntry() argument
1347 if (DBG) Log.v(TAG, "incrementScanReturnEntry " + returnCodeToString(scanReturnCode)); in incrementScanReturnEntry()
1348 int entry = mScanReturnEntries.get(scanReturnCode); in incrementScanReturnEntry()
1350 mScanReturnEntries.put(scanReturnCode, entry); in incrementScanReturnEntry()
1357 public int getScanReturnEntry(int scanReturnCode) { in getScanReturnEntry() argument
1359 return mScanReturnEntries.get(scanReturnCode); in getScanReturnEntry()
2993 mWifiLogProto.scanReturnEntries[i].scanReturnCode = mScanReturnEntries.keyAt(i); in consolidateProto()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiMetricsTest.java1231 if (mDecodedProto.scanReturnEntries[i].scanReturnCode == returnCode) { in assertScanReturnEntryEquals()