| /src/crypto/external/apache2/openssl/dist/test/ |
| threadstest.h | 36 static DWORD WINAPI thread_run(LPVOID arg) function 48 *t = CreateThread(NULL, 0, thread_run, *(void **)&f, 0, NULL); 61 static void *thread_run(void *arg) function 74 return pthread_create(t, NULL, thread_run, *(void **)&f) == 0;
|
| drbgtest.c | 703 static DWORD WINAPI thread_run(LPVOID arg) function 716 *t = CreateThread(NULL, 0, thread_run, NULL, 0, NULL); 729 static void *thread_run(void *arg) function 742 return pthread_create(t, NULL, thread_run, NULL) == 0;
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| threadstest.h | 36 static DWORD WINAPI thread_run(LPVOID arg) function 48 *t = CreateThread(NULL, 0, thread_run, *(void **) &f, 0, NULL); 61 static void *thread_run(void *arg) function 73 return pthread_create(t, NULL, thread_run, *(void **) &f) == 0;
|
| drbgtest.c | 713 static DWORD WINAPI thread_run(LPVOID arg) function 726 *t = CreateThread(NULL, 0, thread_run, NULL, 0, NULL); 739 static void *thread_run(void *arg) function 752 return pthread_create(t, NULL, thread_run, NULL) == 0;
|
| /src/external/mpl/bind/dist/lib/isc/ |
| thread.c | 93 thread_run(void *wrap) { function 141 ret = pthread_create(thread, &attr, thread_run, thread_wrap(func, arg));
|
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| threadstest.c | 36 static DWORD WINAPI thread_run(LPVOID arg) function 48 *t = CreateThread(NULL, 0, thread_run, *(void **) &f, 0, NULL); 61 static void *thread_run(void *arg) function 73 return pthread_create(t, NULL, thread_run, *(void **) &f) == 0;
|
| drbgtest.c | 874 static DWORD WINAPI thread_run(LPVOID arg) function 887 *t = CreateThread(NULL, 0, thread_run, NULL, 0, NULL); 900 static void *thread_run(void *arg) function 913 return pthread_create(t, NULL, thread_run, NULL) == 0;
|
| /src/external/mit/libuv/dist/test/ |
| test-thread-name.c | 33 static void thread_run(void* arg) { function 124 ASSERT_OK(uv_thread_create(threads + 1, thread_run, &sem));
|