Home
last modified time | relevance | path

Searched refs:tasks (Results 1 – 21 of 21) sorted by relevance

/tools/test/connectivity/acts/tests/google/coex/functionality_tests/
DWlanWithA2dpFunctionalityTest.py125 tasks = [(music_play_and_check,
129 if not multithread_func(self.log, tasks):
147 tasks = [(music_play_and_check,
151 if not multithread_func(self.log, tasks):
160 tasks = [(music_play_and_check,
165 if not multithread_func(self.log, tasks):
174 tasks = [(music_play_and_check,
178 if not multithread_func(self.log, tasks):
746 tasks = [(start_fping, (self.pri_ad, self.iperf["duration"])),
749 if not multithread_func(self.log, tasks):
[all …]
DWlanWithHfpFunctionalityTest.py127 tasks = [(initiate_disconnect_from_hf, (
131 if not multithread_func(self.log, tasks):
688 tasks = [(start_fping, (self.pri_ad, self.iperf["duration"])),
693 if not multithread_func(self.log, tasks):
DCoexBtMultiProfileFunctionalityTest.py86 tasks = [(initiate_disconnect_from_hf,
89 if not multithread_func(self.log, tasks):
/tools/test/connectivity/acts/tests/google/tel/live/
DTelLiveVoiceConfTest.py125 tasks = []
128 tasks.append((setup_func, (self.log, ad)))
129 if tasks != [] and not multithread_func(self.log, tasks):
196 tasks = []
199 tasks.append((setup_func, (self.log, ad)))
200 if tasks != [] and not multithread_func(self.log, tasks):
312 tasks = []
315 tasks.append((setup_func, (self.log, ad)))
316 if tasks != [] and not multithread_func(self.log, tasks):
7268 tasks = [(phone_setup_iwlan,
[all …]
DTelLiveVideoTest.py102 tasks = [(phone_setup_video, (self.log, ads[0])), (phone_setup_video,
104 if not multithread_func(self.log, tasks):
138 tasks = [(phone_setup_video, (self.log, ads[0])), (phone_setup_video,
140 if not multithread_func(self.log, tasks):
173 tasks = [(phone_setup_video, (self.log, ads[0])), (phone_setup_video,
175 if not multithread_func(self.log, tasks):
209 tasks = [(phone_setup_video, (self.log, ads[0])), (phone_setup_video,
211 if not multithread_func(self.log, tasks):
255 tasks = [(phone_setup_video, (self.log, ads[0])), (phone_setup_video,
257 if not multithread_func(self.log, tasks):
[all …]
DTelLiveVideoDataTest.py60 tasks = [(phone_setup_video, (self.log, ads[0])), (phone_setup_video,
62 if not multithread_func(self.log, tasks):
DTelLiveSmokeTest.py81 tasks = [(phone_setup_volte, (self.log, ads[0])),
83 if not multithread_func(self.log, tasks):
151 tasks = [(phone_setup_csfb, (self.log, ads[0])),
153 if not multithread_func(self.log, tasks):
226 tasks = [(phone_setup_voice_3g, (self.log, ads[0])),
228 if not multithread_func(self.log, tasks):
298 tasks = [(phone_setup_iwlan,
304 if not multithread_func(self.log, tasks):
DTelWifiVideoTest.py106 tasks = [
114 if not multithread_func(self.log, tasks):
147 tasks = [
155 if not multithread_func(self.log, tasks):
DTelLiveProjectFiTest.py492 tasks = [(self.operator_network_switch, [ad, carrier])
494 if not multithread_func(self.log, tasks):
510 tasks = [(self._account_registration, [ad])
512 if not multithread_func(self.log, tasks):
DTelLivePreflightTest.py115 tasks = [(ota_updater.update, [ad]) for ad in self.android_devices]
117 run_multithread_func(self.log, tasks)
DTelLiveStressCallTest.py125 tasks = [(phone_setup_video, (self.log, ads[0])), (phone_setup_video,
127 if not multithread_func(self.log, tasks):
DTelLiveSettingsTest.py1347 tasks = [(set_qxdm_logger_command, [ad, "IMS_DS_CNE_LnX_Golden.cfg"])
1349 return multithread_func(self.log, tasks)
1354 tasks = [(set_qxdm_logger_command, [ad, " QC_Default.cfg"])
1356 return multithread_func(self.log, tasks)
DTelLiveDataTest.py1965 tasks = [(provider_setup_func, (self.log, self.provider)),
1967 if not multithread_func(self.log, tasks):
/tools/test/connectivity/acts/tests/google/coex/performance_tests/
DWlanWithA2dpPerformanceTest.py69 tasks = [(music_play_and_check,
73 if not multithread_func(self.log, tasks):
DWlanWithHfpPerformanceTest.py95 tasks = [(self.call_from_sec_ad_to_pri_ad, ()),
97 if not multithread_func(self.log, tasks):
/tools/test/connectivity/acts/tests/google/coex/slave_role/performance_tests/
DWlanWithA2dpPerformanceSlaveTest.py72 tasks = [(music_play_and_check,
76 if not multithread_func(self.log, tasks):
DWlanWithHFPPerformanceSlaveTest.py78 tasks = [(self.dbus.answer_call, (self.iperf["duration"],)),
80 if not multithread_func(self.log, tasks):
/tools/tradefederation/core/tests/src/com/android/tradefed/device/metric/
DDeviceMetricDataFuncTest.java90 List<Callable<HashMap<String, Metric>>> tasks = Collections.nCopies(threadCount, task); in testAddToMetricsMultiThreaded() local
97 List<Future<HashMap<String, Metric>>> futures = executorService.invokeAll(tasks); in testAddToMetricsMultiThreaded()
/tools/test/connectivity/acts/framework/acts/test_utils/tel/
DTelephonyBaseTest.py360 tasks = [(self._ad_take_bugreport, (ad, test_name, begin_time))
362 tasks.extend([(self._ad_take_extra_logs, (ad, test_name, begin_time))
364 run_multithread_func(self.log, tasks)
Dtel_test_utils.py4487 tasks = []
4489 tasks.append((ensure_phone_default_state, (log, ad,
4491 if not multithread_func(log, tasks):
4731 def run_multithread_func(log, tasks): argument
4742 number_of_workers = min(MAX_NUMBER_OF_WORKERS, len(tasks))
4747 results = list(executor.map(task_wrapper, tasks))
4754 [task[0].__name__ for task in tasks], results)
4758 def multithread_func(log, tasks): argument
4769 results = run_multithread_func(log, tasks)
4776 def multithread_func_and_check_results(log, tasks, expected_results): argument
[all …]
/tools/test/connectivity/acts/framework/acts/test_utils/coex/
Dcoex_test_utils.py538 def multithread_func(log, tasks): argument
548 results = run_multithread_func(log, tasks)