HomeSort by relevance Sort by last modified time
    Searched refs:WifiScanType (Results 1 - 3 of 3) sorted by null

  /system/chre/core/
wifi_scan_request.cc 21 WifiScanType getWifiScanTypeForEnum(enum chreWifiScanType enumWifiScanType) {
24 return WifiScanType::Active;
26 return WifiScanType::ActivePlusPassiveDfs;
28 return WifiScanType::Passive;
30 return WifiScanType::Invalid;
35 : WifiScanRequest(WifiScanType::Invalid,
40 WifiScanRequest::WifiScanRequest(WifiScanType scanType,
49 WifiScanType WifiScanRequest::getScanType() const {
  /system/chre/core/include/chre/core/
wifi_scan_request.h 36 * This WifiScanType is designed to wrap constants provided by the CHRE API to
40 enum class WifiScanType {
48 * Translates a CHRE API enum wifi scan type to a WifiScanType. This funciton
49 * also performs input validation and will default to WifiScanType::Invalid if
53 * @return a WifiScanType given a CHRE API wifi scan type.
55 WifiScanType getWifiScanTypeForEnum(enum chreWifiScanType enumWifiScanType);
71 * configuration. The WifiScanType is set to Invalid and the frequency and
81 * @param wifiScanType The type of scan being requested.
87 WifiScanRequest(WifiScanType wifiScanType,
    [all...]
  /system/chre/core/tests/
wifi_scan_request_test.cc 22 using chre::WifiScanType;
26 EXPECT_EQ(request.getScanType(), WifiScanType::Invalid);

Completed in 337 milliseconds