Home
last modified time | relevance | path

Searched refs:thrd_t (Results 1 – 13 of 13) sorted by relevance

/hardware/google/gfxstream/guest/mesa/src/c11/
Dthreads.h99 } thrd_t; typedef
118 typedef pthread_t thrd_t; typedef
166 int thrd_create(thrd_t *, thrd_start_t, void *);
167 thrd_t thrd_current(void);
168 int thrd_detach(thrd_t);
169 int thrd_equal(thrd_t, thrd_t);
176 int thrd_join(thrd_t, int *);
/hardware/google/gfxstream/guest/mesa/src/util/
Du_thread.h67 int u_thread_create(thrd_t *thrd, int (*routine)(void *), void *param);
81 util_set_thread_affinity(thrd_t thread,
101 util_thread_get_time_nano(thrd_t thread);
110 static inline bool u_thread_is_self(thrd_t thread) in u_thread_is_self()
Du_thread.c51 int u_thread_create(thrd_t *thrd, int (*routine)(void *), void *param) in u_thread_create()
103 util_set_thread_affinity(thrd_t thread, in util_set_thread_affinity()
155 util_thread_get_time_nano(thrd_t thread) in util_thread_get_time_nano()
Dfossilize_db.h83 thrd_t thrd;
Du_queue.h211 thrd_t *threads;
Du_queue.c463 queue->threads = (thrd_t*) calloc(queue->max_threads, sizeof(thrd_t)); in util_queue_init()
/hardware/google/gfxstream/guest/mesa/src/c11/impl/
Dthreads_win32.c52 static_assert(sizeof(thrd_t) == sizeof(HANDLE), "The size of thrd_t must equal to HANDLE");
65 thrd_t thrd;
69 thrd_t thrd;
294 thrd_create(thrd_t *thr, thrd_start_t func, void *arg) in thrd_create()
317 thrd_t
352 thrd_detach(thrd_t thr) in thrd_detach()
360 thrd_equal(thrd_t thr0, thrd_t thr1) in thrd_equal()
375 thrd_join(thrd_t thr, int *res) in thrd_join()
Dthreads_posix.c270 thrd_create(thrd_t *thr, thrd_start_t func, void *arg) in thrd_create()
286 thrd_t
294 thrd_detach(thrd_t thr) in thrd_detach()
301 thrd_equal(thrd_t thr0, thrd_t thr1) in thrd_equal()
316 thrd_join(thrd_t thr, int *res) in thrd_join()
/hardware/google/gfxstream/guest/mesa/src/util/tests/perf/
Du_trace_test.cpp23 thrd_t threads[NUM_DEBUG_TEST_THREAD]; in TEST()
/hardware/google/gfxstream/guest/mesa/src/util/tests/
Du_call_once_test.cpp59 thrd_t threads[NUM_DEBUG_TEST_THREAD]; in TEST()
Dsparse_array_test.cpp56 thrd_t threads[16]; in TEST()
Du_debug_test.cpp57 thrd_t threads[NUM_DEBUG_TEST_THREAD]; in TEST()
/hardware/google/gfxstream/guest/mesa/src/vulkan/runtime/
Dvk_queue.h98 thrd_t thread;