Home
last modified time | relevance | path

Searched refs:setLatencyMode (Results 1 – 8 of 8) sorted by relevance

/aosp12/hardware/interfaces/wifi/1.3/vts/functional/
H A Dwifi_chip_hidl_test.cpp88 HIDL_INVOKE(wifi_chip_, setLatencyMode, kLatencyModeNormal); in TEST_P()
103 HIDL_INVOKE(wifi_chip_, setLatencyMode, kLatencyModeLow); in TEST_P()
/aosp12/hardware/interfaces/wifi/1.3/
H A DIWifiChip.hal58 * setLatencyMode()
77 setLatencyMode(LatencyMode mode) generates (WifiStatus status);
/aosp12/hardware/interfaces/wifi/1.5/default/
H A Dwifi_chip.h151 Return<void> setLatencyMode(LatencyMode mode,
H A Dwifi_legacy_hal.h557 wifi_error setLatencyMode(const std::string& iface_name,
H A Dwifi_chip.cpp664 Return<void> WifiChip::setLatencyMode(LatencyMode mode, in setLatencyMode() function in android::hardware::wifi::V1_5::implementation::WifiChip
1435 auto legacy_status = legacy_hal_.lock()->setLatencyMode( in setLatencyModeInternal()
H A Dwifi_legacy_hal.cpp895 wifi_error WifiLegacyHal::setLatencyMode(const std::string& iface_name, in setLatencyMode() function in android::hardware::wifi::V1_5::implementation::legacy_hal::WifiLegacyHal
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DWifiVendorHalTest.java3291 when(mIWifiChipV13.setLatencyMode(anyInt())).thenReturn(mWifiStatusSuccess); in testSetLowLatencyMode_1_3_enabled()
3293 verify(mIWifiChipV13).setLatencyMode(eq(mode)); in testSetLowLatencyMode_1_3_enabled()
3306 when(mIWifiChipV13.setLatencyMode(anyInt())).thenReturn(mWifiStatusSuccess); in testSetLowLatencyMode_1_3_disabled()
3308 verify(mIWifiChipV13).setLatencyMode(eq(mode)); in testSetLowLatencyMode_1_3_disabled()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DWifiVendorHal.java3179 WifiStatus status = iWifiChipV13.setLatencyMode(mode); in setLowLatencyMode()