Home
last modified time | relevance | path

Searched refs:thd (Results 1 – 11 of 11) sorted by relevance

/external/jemalloc/test/src/
Dthd.c5 thd_create(thd_t *thd, void *(*proc)(void *), void *arg) in thd_create() argument
8 *thd = CreateThread(NULL, 0, routine, arg, 0, NULL); in thd_create()
9 if (*thd == NULL) in thd_create()
14 thd_join(thd_t thd, void **ret) in thd_join() argument
17 if (WaitForSingleObject(thd, INFINITE) == WAIT_OBJECT_0 && ret) { in thd_join()
19 GetExitCodeThread(thd, (LPDWORD) &exit_code); in thd_join()
26 thd_create(thd_t *thd, void *(*proc)(void *), void *arg) in thd_create() argument
29 if (pthread_create(thd, NULL, proc, arg) != 0) in thd_create()
34 thd_join(thd_t thd, void **ret) in thd_join() argument
37 pthread_join(thd, ret); in thd_join()
/external/ltp/testcases/misc/math/float/
Dmain.c327 int thd; in handle_signals() local
379 for (thd = 0; thd < indice; thd++) { in handle_signals()
384 "%d)", thd, indice); in handle_signals()
386 pthread_cancel(threads[thd]); in handle_signals()
/external/jemalloc/test/unit/
Dtsd.c88 thd_t thd; in TEST_BEGIN() local
91 thd_create(&thd, thd_start, (void *)THREAD_DATA); in TEST_BEGIN()
92 thd_join(thd, NULL); in TEST_BEGIN()
Dstats.c136 thd_t thd; in no_lazy_lock() local
138 thd_create(&thd, thd_start, NULL); in no_lazy_lock()
139 thd_join(thd, NULL); in no_lazy_lock()
/external/jemalloc/test/integration/
Dthread_tcache_enabled.c96 thd_t thd; in TEST_BEGIN() local
98 thd_create(&thd, thd_start, NULL); in TEST_BEGIN()
99 thd_join(thd, NULL); in TEST_BEGIN()
Dallocated.c108 thd_t thd; in TEST_BEGIN() local
110 thd_create(&thd, thd_start, NULL); in TEST_BEGIN()
111 thd_join(thd, NULL); in TEST_BEGIN()
/external/jemalloc/test/include/test/
Dthd.h8 void thd_create(thd_t *thd, void *(*proc)(void *), void *arg);
9 void thd_join(thd_t thd, void **ret);
Djemalloc_test.h.in124 #include "test/thd.h"
/external/curl/tests/server/
Dsockfilt.c697 DWORD nfd = 0, thd = 0, wsa = 0; in select_ws() local
759 data[thd].thread = handle; in select_ws()
760 thd++; in select_ws()
784 data[thd].thread = handle; in select_ws()
785 thd++; in select_ws()
885 for(idx = 0; idx < thd; idx++) { in select_ws()
/external/jemalloc/
DAndroid.bp170 "test/src/thd.c",
DMakefile.in146 $(srcroot)test/src/thd.c $(srcroot)test/src/timer.c