Home
last modified time | relevance | path

Searched refs:run_thread (Results 1 – 8 of 8) sorted by relevance

/third_party/curl/tests/libtest/
Dlib3026.c33 static DWORD WINAPI run_thread(LPVOID ptr) in run_thread() function
36 static unsigned int WINAPI run_thread(void *ptr) in run_thread()
82 th = CreateThread(NULL, 0, run_thread, &results[i], 0, NULL); in test()
84 th = _beginthreadex(NULL, 0, run_thread, &results[i], 0, NULL); in test()
115 static void *run_thread(void *ptr) in run_thread() function
146 res = pthread_create(&tids[i], NULL, run_thread, &results[i]); in test()
Dlib1565.c46 static void *run_thread(void *ptr) in run_thread() function
113 res = pthread_create(&tid, NULL, run_thread, NULL); in test()
/third_party/openssl/test/
Dthreadstest.h21 static int run_thread(thread_t *t, void (*f)(void)) in run_thread() function
46 static int run_thread(thread_t *t, void (*f)(void)) in run_thread() function
71 static int run_thread(thread_t *t, void (*f)(void)) in run_thread() function
Dthreadstest.c69 if (!TEST_true(run_thread(&thread, once_run_thread_cb)) in test_once()
121 || !TEST_true(run_thread(&thread, thread_local_thread_cb)) in test_thread_local()
279 if (!TEST_true(run_thread(multi_threads + multi_num_threads++, thread_func))) in start_threads()
537 if (!TEST_true(run_thread(&thread1, worker)) in test_multi()
538 || !TEST_true(run_thread(&thread2, worker2))) in test_multi()
600 if (!TEST_true(run_thread(&thread1, thread_multi_simple_fetch)) in test_multi_default()
601 || !TEST_true(run_thread(&thread2, thread_multi_simple_fetch))) in test_multi_default()
645 (void)TEST_true(run_thread(&threads[i], test_multi_load_worker)); in test_multi_load()
Dthreadstest_fips.c34 if (!TEST_true(run_thread(&thread, thread_fips_rand_fetch))) in test_fips_rand_leak()
Ddrbgtest.c724 static int run_thread(thread_t *t) in run_thread() function
750 static int run_thread(thread_t *t) in run_thread() function
774 run_thread(&t[i]); in test_multi_thread()
/third_party/python/Lib/test/
Dtest_threading.py1510 def run_thread(): function
1520 default_output = run_thread()
1522 custom_hook_output = run_thread()
1524 recovered_output = run_thread()
Dtest_gc.py406 def run_thread(): function
417 t = threading.Thread(target=run_thread)