Home
last modified time | relevance | path

Searched refs:submit (Results 1 – 25 of 43) sorted by relevance

12

/tools/tradefederation/core/common_util/com/android/tradefed/invoker/tracing/
DTracePropagatingExecutorService.java58 public <T> Future<T> submit(Callable<T> task) { in submit() method in TracePropagatingExecutorService
59 return delegate.submit(wrapTask(task)); in submit()
63 public <T> Future<T> submit(Runnable task, T result) { in submit() method in TracePropagatingExecutorService
64 return delegate.submit(wrapTask(task), result); in submit()
68 public Future<?> submit(Runnable task) { in submit() method in TracePropagatingExecutorService
69 return delegate.submit(wrapTask(task)); in submit()
/tools/tradefederation/core/javatests/com/android/tradefed/invoker/tracing/
DTracePropagatingExecutorServiceTest.java64 Future<ActiveTrace> f = executor.submit(new TraceCaptureTask()); in noTracePropagatesToTask()
73 Future<ActiveTrace> f = executor.submit(new TraceCaptureTask()); in activeTracePropagatesToTask()
84 executor.submit( in activeTracePropagatesToSubTask()
86 return executor.submit(subTask).get(); in activeTracePropagatesToSubTask()
97 executor.submit( in callerActiveTraceRestored()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/util/
DBatchProcessor.kt47 fun submit(task: Runnable) { in <lambda>() method
91 fun submit(task: Runnable) { in submit() method in trebuchet.util.WorkPool
92 workQueue.submit(task) in submit()
116 pool.submit(Runnable { in par_map()
/tools/test/connectivity/acts/framework/tests/controllers/monsoon_lib/sampling/engine/
Dassembly_line_test.py74 self.assertFalse(pool_mock().__enter__().submit.called)
84 submit = pool_mock().__enter__().submit
85 self.assertEqual(len(node_list), submit.call_count)
87 submit.assert_any_call(node.transformer.transform,
/tools/test/openhst/docs/
Dcontributing.md15 You generally only need to submit a CLA once, so if you've already submitted one
23 process](https://source.android.com/setup/contribute/submit-patches).
/tools/test/connectivity/acts/framework/acts/controllers/sl4a_lib/
Devent_dispatcher.py162 self._executor.submit(self.poll_events)
369 self._executor.submit(handler, event_obj, *args)
411 worker = self._executor.submit(self._handle, event_handler, event_name,
Drpc_client.py119 future = self._executor.submit(name, *args, **kwargs)
126 future = self._executor.submit(
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/bt/
DBtMultiprofileBaseTest.py117 throughput = executor.submit(self.measure_rfcomm_throughput, 100)
118 executor.submit(self.setup_iperf_and_run_throughput, )
Dble_performance_test_utils.py229 ble_throughput = executor.submit(run_ble_throughput, client_ad,
231 ble_rssi = executor.submit(read_ble_rssi, server_ad, gatt_server,
/tools/asuite/atest/integration_tests/
Datest_integration_test.py434 stdout_future = executor.submit(
437 stderr_future = executor.submit(
Dsplit_build_test_script.py391 executor.submit(self.compress_file, file_path)
416 executor.submit(self.decompress_file, file_path)
628 return executor.submit(test.run)
/tools/test/connectivity/acts/framework/acts/libs/utils/
Dmultithread.py47 future_object = executor.submit(task_wrapper, task)
/tools/tradefederation/core/src/com/android/tradefed/monitoring/
DLabResourceDeviceMonitor.java327 future = mCollectionExecutor.submit(collector::getHostResourceMetrics); in buildMonitoredHost()
382 mCollectionExecutor.submit( in buildMonitoredDevice()
/tools/test/connectivity/acts/framework/acts/
Dutils.py380 future_to_params = {executor.submit(func, *p): p for p in param_list}
1181 futures = [executor.submit(call) for call in calls]
1247 futures = [executor.submit(call_wrapper, call) for call in calls]
1875 executor.submit(mdns_query, interface, address))
Dbase_test.py930 executor.submit(self._ad_take_bugreport, ad, test_name, begin_time)
931 executor.submit(self._ad_take_extra_logs, ad, test_name,
/tools/trebuchet/
DCONTRIBUTING.md14 You generally only need to submit a CLA once, so if you've already submitted one
/tools/tradefederation/core/javatests/com/android/tradefed/invoker/logger/
DInvocationLocalTest.java105 executor.submit( in invocation()
/tools/apksig/src/test/java/com/android/apksig/internal/apk/
DApkSigningBlockUtilsTest.java104 jobs.add(forkJoinPool.submit(provider.createRunnable())); in testMultithreadedVersionMatchesSinglethreaded()
/tools/test/connectivity/acts/framework/acts/controllers/monsoon_lib/sampling/engine/
Dassembly_line.py100 thread_pool.submit(node.transformer.transform,
/tools/test/connectivity/acts_tests/tests/google/ble/concurrency/
DConcurrentGattConnectTest.py278 executor.submit(run_continuous_write_descriptor, *arguments_list)
/tools/tradefederation/core/src/com/android/tradefed/util/
DRemoteZip.java260 service.submit( in downloadFiles()
/tools/metalava/
DAPI-LINT.md77 To submit the revised baseline.txt to the main Android
/tools/asuite/atest/docs/
Ddeveloper_workflow.md91 All tests should be passing before you submit your change.
/tools/repohooks/
Dpre-upload.py419 executor.submit(_run_hook, hook, project, commit, desc, diff)
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/wifi_performance_test_utils/
D__init__.py58 thread_future = executor.submit(f, *args, **kwargs)

12