Searched refs:run_thread (Results 1 – 11 of 11) sorted by relevance
/external/tensorflow/tensorflow/python/distribute/coordinator/ |
D | fault_tolerance_test.py | 308 run_thread = threading.Thread(target=run_fn) 309 run_thread.start() 314 self.thread_coord.join([run_thread]) 342 run_thread = threading.Thread(target=run_fn) 343 run_thread.start() 348 self.thread_coord.join([run_thread]) 381 run_thread = threading.Thread(target=run_fn) 382 run_thread.start() 389 self.thread_coord.join([run_thread])
|
/external/autotest/client/tests/monotonic_time/src/ |
D | threads.c | 33 static void *run_thread(void *arg) in run_thread() function 70 err = pthread_create(&thread->thread, NULL, run_thread, thread); in create_per_cpu_threads()
|
/external/curl/docs/examples/ |
D | threaded-shared-conn.c | 97 static void *run_thread(void *ptr) in run_thread() function 138 error = pthread_create(&tid[i], NULL, run_thread, &url[i]); in main()
|
/external/curl/tests/libtest/ |
D | lib1565.c | 44 static void *run_thread(void *ptr) in run_thread() function 110 res = pthread_create(&tid, NULL, run_thread, NULL); in test()
|
/external/tensorflow/tensorflow/python/keras/utils/ |
D | data_utils.py | 614 self.run_thread = None 636 self.run_thread = threading.Thread(target=self._run) 637 self.run_thread.daemon = True 638 self.run_thread.start() 658 self.run_thread.join(timeout)
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_stoptheworld_mac.cpp | 84 pthread_t run_thread = (pthread_t)internal_start_thread(RunThread, &arg); in StopTheWorld() local 85 internal_join_thread(run_thread); in StopTheWorld()
|
/external/ltp/include/ |
D | tst_fuzzy_sync.h | 251 static void *tst_fzsync_thread_wrapper(void *run_thread) in tst_fzsync_thread_wrapper() argument 253 struct tst_fzsync_run_thread t = *(struct tst_fzsync_run_thread *)run_thread; in tst_fzsync_thread_wrapper()
|
/external/python/cpython2/Lib/test/ |
D | test_gc.py | 349 def run_thread(): function 360 t = threading.Thread(target=run_thread)
|
/external/adhd/cras/src/libcras/ |
D | cras_client.h | 1362 int (*run_thread)(struct cras_client *client); member 1492 return client->run_thread(client->client_); in libcras_client_run_thread()
|
D | cras_client.c | 4041 client->run_thread = cras_client_run_thread; in libcras_client_create()
|
/external/python/cpython3/Lib/test/ |
D | test_gc.py | 405 def run_thread(): function 416 t = threading.Thread(target=run_thread)
|