Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiNativeTest.java58 private static final WifiNative.TxFateReport TX_FATE_REPORT = new WifiNative.TxFateReport(
194 WifiNative.TxFateReport fateReport = new WifiNative.TxFateReport( in testTxFateReportCtorSetsFields()
291 WifiNative.TxFateReport fateReport = TX_FATE_REPORT; in testTxFateReportToTableRowString()
305 fateReport = new WifiNative.TxFateReport( in testTxFateReportToTableRowString()
325 fateReport = new WifiNative.TxFateReport( in testTxFateReportToTableRowString()
351 WifiNative.TxFateReport fateReport = TX_FATE_REPORT; in testTxFateReportToVerboseStringWithPiiAllowed()
367 fateReport = new WifiNative.TxFateReport( in testTxFateReportToVerboseStringWithPiiAllowed()
379 fateReport = new WifiNative.TxFateReport( in testTxFateReportToVerboseStringWithPiiAllowed()
480 WifiNative.TxFateReport[] fateReports = null; in testGetTxPktFatesReturnsErrorWhenHalIsNotStarted()
DWifiDiagnosticsTest.java458 public boolean answer(String ifaceName, WifiNative.TxFateReport[] fates) { in getDumpString()
459 fates[0] = new WifiNative.TxFateReport( in getDumpString()
463 fates[1] = new WifiNative.TxFateReport( in getDumpString()
592 public boolean answer(String ifaceName, WifiNative.TxFateReport[] fates) {
593 fates[0] = new WifiNative.TxFateReport(
DWifiVendorHalTest.java1527 WifiNative.TxFateReport[] retrievedFates = new WifiNative.TxFateReport[1]; in testGetTxPktFates()
1570 WifiNative.TxFateReport[] retrievedFates = new WifiNative.TxFateReport[1]; in testGetTxPktFatesExceedsInputArrayLength()
1677 assertFalse(mWifiVendorHal.getTxPktFates(TEST_IFACE_NAME, new WifiNative.TxFateReport[0])); in testGetTxPktFatesEmptyInputArray()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiDiagnostics.java737 WifiNative.TxFateReport[] txFates = in fetchPacketFates()
738 new WifiNative.TxFateReport[WifiLoggerHal.MAX_FATE_LOG_LEN]; in fetchPacketFates()
DWifiNative.java2960 public static final class TxFateReport extends FateReport { class in WifiNative
2961 TxFateReport(byte fate, long driverTimestampUSec, byte frameType, byte[] frameBytes) { in TxFateReport() method in WifiNative.TxFateReport
3060 public boolean getTxPktFates(@NonNull String ifaceName, TxFateReport[] reportBufs) { in getTxPktFates()
DWifiVendorHal.java1849 public boolean getTxPktFates(@NonNull String ifaceName, WifiNative.TxFateReport[] reportBufs) { in getTxPktFates()
1869 new WifiNative.TxFateReport(code, us, type, frame); in getTxPktFates()