Searched refs:thrd_t (Results 1 – 13 of 13) sorted by relevance
/hardware/google/gfxstream/guest/mesa/src/c11/ |
D | threads.h | 99 } 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/ |
D | u_thread.h | 67 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()
|
D | u_thread.c | 51 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()
|
D | fossilize_db.h | 83 thrd_t thrd;
|
D | u_queue.h | 211 thrd_t *threads;
|
D | u_queue.c | 463 queue->threads = (thrd_t*) calloc(queue->max_threads, sizeof(thrd_t)); in util_queue_init()
|
/hardware/google/gfxstream/guest/mesa/src/c11/impl/ |
D | threads_win32.c | 52 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()
|
D | threads_posix.c | 270 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/ |
D | u_trace_test.cpp | 23 thrd_t threads[NUM_DEBUG_TEST_THREAD]; in TEST()
|
/hardware/google/gfxstream/guest/mesa/src/util/tests/ |
D | u_call_once_test.cpp | 59 thrd_t threads[NUM_DEBUG_TEST_THREAD]; in TEST()
|
D | sparse_array_test.cpp | 56 thrd_t threads[16]; in TEST()
|
D | u_debug_test.cpp | 57 thrd_t threads[NUM_DEBUG_TEST_THREAD]; in TEST()
|
/hardware/google/gfxstream/guest/mesa/src/vulkan/runtime/ |
D | vk_queue.h | 98 thrd_t thread;
|