Home
last modified time | relevance | path

Searched refs:aidl_scan_result (Results 1 – 3 of 3) sorted by relevance

/hardware/interfaces/wifi/aidl/default/
Daidl_struct_util.cpp655 bool has_ie_data, StaScanResult* aidl_scan_result) { in convertLegacyGscanResultToAidl() argument
656 if (!aidl_scan_result) { in convertLegacyGscanResultToAidl()
659 *aidl_scan_result = {}; in convertLegacyGscanResultToAidl()
660 aidl_scan_result->timeStampInUs = legacy_scan_result.ts; in convertLegacyGscanResultToAidl()
661 aidl_scan_result->ssid = std::vector<uint8_t>( in convertLegacyGscanResultToAidl()
665 aidl_scan_result->bssid = std::array<uint8_t, 6>(); in convertLegacyGscanResultToAidl()
667 std::begin(aidl_scan_result->bssid)); in convertLegacyGscanResultToAidl()
668 aidl_scan_result->frequency = legacy_scan_result.channel; in convertLegacyGscanResultToAidl()
669 aidl_scan_result->rssi = legacy_scan_result.rssi; in convertLegacyGscanResultToAidl()
670 aidl_scan_result->beaconPeriodInMs = legacy_scan_result.beacon_period; in convertLegacyGscanResultToAidl()
[all …]
Daidl_struct_util.h88 bool has_ie_data, StaScanResult* aidl_scan_result);
220 uint64_t ts_us, CachedScanResult* aidl_scan_result);
Dwifi_sta_iface.cpp528 StaScanResult aidl_scan_result; in startBackgroundScanInternal() local
529 if (!aidl_struct_util::convertLegacyGscanResultToAidl(*result, true, &aidl_scan_result)) { in startBackgroundScanInternal()
534 if (!callback->onBackgroundFullScanResult(id, buckets_scanned, aidl_scan_result) in startBackgroundScanInternal()