Home
last modified time | relevance | path

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

/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DWifiMetrics.java2355 private String returnCodeToString(int scanReturnCode) { in returnCodeToString() argument
2356 switch(scanReturnCode){ in returnCodeToString()
2377 public void incrementScanReturnEntry(int scanReturnCode, int countToAdd) { in incrementScanReturnEntry() argument
2379 if (DBG) Log.v(TAG, "incrementScanReturnEntry " + returnCodeToString(scanReturnCode)); in incrementScanReturnEntry()
2380 int entry = mScanReturnEntries.get(scanReturnCode); in incrementScanReturnEntry()
2382 mScanReturnEntries.put(scanReturnCode, entry); in incrementScanReturnEntry()
2389 public int getScanReturnEntry(int scanReturnCode) { in getScanReturnEntry() argument
2391 return mScanReturnEntries.get(scanReturnCode); in getScanReturnEntry()
4602 mWifiLogProto.scanReturnEntries[i].scanReturnCode = mScanReturnEntries.keyAt(i); in consolidateProto()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DWifiMetricsTest.java1614 if (mDecodedProto.scanReturnEntries[i].scanReturnCode == returnCode) { in assertScanReturnEntryEquals()