Searched refs:wfc_mode (Results 1 – 6 of 6) sorted by relevance
/tools/test/connectivity/acts_tests/tests/google/tel/live/ |
D | TelWifiVoiceTest.py | 446 def _wfc_phone_setup(self, is_airplane_mode, wfc_mode, volte_mode=True): argument 456 if not set_wfc_mode(self.log, self.android_devices[0], wfc_mode): 472 def _wfc_phone_setup_cellular_absent(self, wfc_mode): argument 498 if not set_wfc_mode(self.log, self.android_devices[0], wfc_mode): 553 wfc_mode, argument 564 if not set_wfc_mode(self.log, self.android_devices[0], wfc_mode): 581 def _wfc_phone_setup_cellular_absent_wifi_absent(self, wfc_mode): argument 607 if not set_wfc_mode(self.log, self.android_devices[0], wfc_mode): 658 def _wfc_phone_setup_wifi_disabled(self, is_airplane_mode, wfc_mode): argument 668 if not set_wfc_mode(self.log, self.android_devices[0], wfc_mode): [all …]
|
D | TelLiveImsSettingsTest.py | 154 wfc_mode=None): argument 158 airplane_mode, wifi_enabled, volte_enabled, wfc_enabled, wfc_mode) 173 if wfc_mode: 174 set_wfc_mode(self.log, self.dut, wfc_mode) 175 wfc_mode = self.dut.droid.imsGetWfcMode() 199 wfc_mode == WFC_MODE_WIFI_PREFERRED) and ( 993 for wfc_mode in wfc_modes: 996 wfc_enabled, wfc_mode):
|
D | TelLiveVoiceTest.py | 769 def _call_epdg_to_epdg_wfc(self, ads, apm_mode, wfc_mode, wifi_ssid, argument 792 tasks = [(phone_setup_iwlan, (self.log, ads[0], apm_mode, wfc_mode, 794 (phone_setup_iwlan, (self.log, ads[1], apm_mode, wfc_mode,
|
/tools/test/connectivity/acts/framework/acts/test_utils/tel/ |
D | tel_video_utils.py | 80 def phone_setup_video(log, ad, wfc_mode=WFC_MODE_DISABLED): argument 95 wfc_mode) 101 wfc_mode=WFC_MODE_DISABLED): argument 117 if not set_wfc_mode(log, ad, wfc_mode): 119 ad.serial, wfc_mode))
|
D | tel_voice_utils.py | 759 wfc_mode, argument 787 is_airplane_mode, wfc_mode, 795 wfc_mode, argument 821 if wfc_mode != WFC_MODE_DISABLED and not ad.droid.imsIsWfcEnabledByPlatform( 836 if not set_wfc_mode(log, ad, wfc_mode): 837 ad.log.error("Unable to set WFC mode to %s.", wfc_mode)
|
D | tel_test_utils.py | 5069 def set_wfc_mode(log, ad, wfc_mode): argument 5082 if wfc_mode != WFC_MODE_DISABLED and wfc_mode not in ad.telephony[ 5084 ad.log.error("WFC mode %s is not supported", wfc_mode) 5085 raise signals.TestSkip("WFC mode %s is not supported" % wfc_mode) 5087 ad.log.info("Set wfc mode to %s", wfc_mode) 5088 if wfc_mode != WFC_MODE_DISABLED: 5091 if wfc_mode == WFC_MODE_DISABLED: 5096 ad.droid.imsSetWfcMode(wfc_mode) 5098 if mode != wfc_mode: 5099 ad.log.error("WFC mode is %s, not in %s", mode, wfc_mode) [all …]
|