Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiNativeTest.java64 private static final WifiNative.RxFateReport RX_FATE_REPORT = new WifiNative.RxFateReport(
211 WifiNative.RxFateReport fateReport = new WifiNative.RxFateReport( in testRxFateReportCtorSetsFields()
395 WifiNative.RxFateReport fateReport = RX_FATE_REPORT; in testRxFateReportToTableRowString()
411 fateReport = new WifiNative.RxFateReport( in testRxFateReportToTableRowString()
437 WifiNative.RxFateReport fateReport = RX_FATE_REPORT; in testRxFateReportToVerboseStringWithPiiAllowed()
455 fateReport = new WifiNative.RxFateReport( in testRxFateReportToVerboseStringWithPiiAllowed()
490 WifiNative.RxFateReport[] fateReports = null; in testGetRxPktFatesReturnsErrorWhenHalIsNotStarted()
DWifiDiagnosticsTest.java471 public boolean answer(String ifaceName, WifiNative.RxFateReport[] fates) { in getDumpString()
472 fates[0] = new WifiNative.RxFateReport( in getDumpString()
476 fates[1] = new WifiNative.RxFateReport( in getDumpString()
601 public boolean answer(String ifaceName, WifiNative.RxFateReport[] fates) {
602 fates[0] = new WifiNative.RxFateReport(
DWifiVendorHalTest.java1611 WifiNative.RxFateReport[] retrievedFates = new WifiNative.RxFateReport[1]; in testGetRxPktFates()
1654 WifiNative.RxFateReport[] retrievedFates = new WifiNative.RxFateReport[1]; in testGetRxPktFatesExceedsInputArrayLength()
1688 assertFalse(mWifiVendorHal.getRxPktFates(TEST_IFACE_NAME, new WifiNative.RxFateReport[0])); in testGetRxPktFatesEmptyInputArray()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiDiagnostics.java745 WifiNative.RxFateReport[] rxFates = in fetchPacketFates()
746 new WifiNative.RxFateReport[WifiLoggerHal.MAX_FATE_LOG_LEN]; in fetchPacketFates()
DWifiNative.java3003 public static final class RxFateReport extends FateReport { class in WifiNative
3004 RxFateReport(byte fate, long driverTimestampUSec, byte frameType, byte[] frameBytes) { in RxFateReport() method in WifiNative.RxFateReport
3068 public boolean getRxPktFates(@NonNull String ifaceName, RxFateReport[] reportBufs) { in getRxPktFates()
DWifiVendorHal.java1891 public boolean getRxPktFates(@NonNull String ifaceName, WifiNative.RxFateReport[] reportBufs) { in getRxPktFates()
1911 new WifiNative.RxFateReport(code, us, type, frame); in getRxPktFates()