Searched refs:setLowLatencyMode (Results 1 – 15 of 15) sorted by relevance
533 when(mClientModeManager.setLowLatencyMode(anyBoolean())).thenReturn(true); in testHiPerfLockAcquireCauseDisablePS()564 when(mClientModeManager.setLowLatencyMode(anyBoolean())).thenReturn(true); in testHiPerfLockReleaseCauseEnablePS()706 when(mClientModeManager.setLowLatencyMode(anyBoolean())).thenReturn(true); in testHiPerfLockAcquireFail()751 when(mClientModeManager.setLowLatencyMode(anyBoolean())).thenReturn(true); in testHiPerfLockReleaseFail()1010 when(mClientModeManager.setLowLatencyMode(anyBoolean())).thenReturn(true); in testLatencyLockAcquireCauseLlEnableNew()1017 verify(mClientModeManager).setLowLatencyMode(true); in testLatencyLockAcquireCauseLlEnableNew()1038 verify(mClientModeManager, never()).setLowLatencyMode(anyBoolean()); in testLatencyLockAcquireCauseLL_enableLegacy()1055 when(mClientModeManager.setLowLatencyMode(anyBoolean())).thenReturn(true); in testLatencyLockReleaseCauseLlDisable()1063 inOrder.verify(mClientModeManager).setLowLatencyMode(true); in testLatencyLockReleaseCauseLlDisable()1070 inOrder.verify(mClientModeManager).setLowLatencyMode(false); in testLatencyLockReleaseCauseLlDisable()[all …]
1213 when(mWifiVendorHal.setLowLatencyMode(anyBoolean())).thenReturn(true); in testLowLatencyModeTrue()1214 assertTrue(mWifiNative.setLowLatencyMode(true)); in testLowLatencyModeTrue()1215 verify(mWifiVendorHal).setLowLatencyMode(true); in testLowLatencyModeTrue()1223 when(mWifiVendorHal.setLowLatencyMode(anyBoolean())).thenReturn(true); in testLowLatencyModeFalse()1224 assertTrue(mWifiNative.setLowLatencyMode(false)); in testLowLatencyModeFalse()1225 verify(mWifiVendorHal).setLowLatencyMode(false); in testLowLatencyModeFalse()1234 when(mWifiVendorHal.setLowLatencyMode(anyBoolean())).thenReturn(false); in testSetLowLatencyModeFail()1235 assertFalse(mWifiNative.setLowLatencyMode(lowLatencyMode)); in testSetLowLatencyModeFail()1236 verify(mWifiVendorHal).setLowLatencyMode(lowLatencyMode); in testSetLowLatencyModeFail()
6172 when(mWifiNative.setLowLatencyMode(anyBoolean())).thenReturn(true); in verifySetLowLatencyTrueSuccess()6173 assertTrue(mCmi.setLowLatencyMode(true)); in verifySetLowLatencyTrueSuccess()6174 verify(mWifiNative).setLowLatencyMode(true); in verifySetLowLatencyTrueSuccess()6183 when(mWifiNative.setLowLatencyMode(anyBoolean())).thenReturn(true); in verifySetLowLatencyFalseSuccess()6184 assertTrue(mCmi.setLowLatencyMode(false)); in verifySetLowLatencyFalseSuccess()6185 verify(mWifiNative).setLowLatencyMode(false); in verifySetLowLatencyFalseSuccess()6195 when(mWifiNative.setLowLatencyMode(anyBoolean())).thenReturn(false); in verifySetLowLatencyModeFailure()6196 assertFalse(mCmi.setLowLatencyMode(lowLatencyMode)); in verifySetLowLatencyModeFailure()6197 verify(mWifiNative).setLowLatencyMode(eq(lowLatencyMode)); in verifySetLowLatencyModeFailure()
744 if (!setLowLatencyMode(clientModeManager, false)) { in resetCurrentMode()800 if (!setLowLatencyMode(clientModeManager, true)) { in setNewMode()866 private boolean setLowLatencyMode(ClientModeManager clientModeManager, boolean enabled) { in setLowLatencyMode() method in WifiLockManager875 if (!clientModeManager.setLowLatencyMode(enabled)) { in setLowLatencyMode()884 clientModeManager.setLowLatencyMode(!enabled); in setLowLatencyMode()
182 default boolean setLowLatencyMode(boolean enabled) { in setLowLatencyMode() method
195 boolean setLowLatencyMode(boolean enabled); in setLowLatencyMode() method
1578 public boolean setLowLatencyMode(boolean enabled) { in setLowLatencyMode() method in ConcreteClientModeManager1579 return getClientMode().setLowLatencyMode(enabled); in setLowLatencyMode()
1561 public boolean setLowLatencyMode(boolean enabled) { in setLowLatencyMode() method in WifiVendorHal1564 return mWifiChip.setLowLatencyMode(enabled); in setLowLatencyMode()
2981 public boolean setLowLatencyMode(boolean enabled) {2982 return mWifiVendorHal.setLowLatencyMode(enabled);
3725 public boolean setLowLatencyMode(boolean enabled) { in setLowLatencyMode() method in ClientModeImpl3729 if (!mWifiNative.setLowLatencyMode(enabled)) { in setLowLatencyMode()
591 assertFalse(mDut.setLowLatencyMode(true)); in testSetLowLatencyMode_1_2()592 assertFalse(mDut.setLowLatencyMode(false)); in testSetLowLatencyMode_1_2()605 assertTrue(mDut.setLowLatencyMode(true)); in testSetLowLatencyMode_1_3_enabled()619 assertTrue(mDut.setLowLatencyMode(false)); in testSetLowLatencyMode_1_3_disabled()
399 boolean setLowLatencyMode(boolean enable); in setLowLatencyMode() method
899 public boolean setLowLatencyMode(boolean enable) { in setLowLatencyMode() method in WifiChip901 () -> mWifiChip.setLowLatencyMode(enable)); in setLowLatencyMode()
1012 public boolean setLowLatencyMode(boolean enable) { in setLowLatencyMode() method in WifiChipAidlImpl
521 public boolean setLowLatencyMode(boolean enable) { in setLowLatencyMode() method in WifiChipHidlImpl