Searched refs:uv_thread_t (Results 1 – 25 of 47) sorted by relevance
12
/third_party/libuv/test/ |
D | test-thread-equal.c | 25 uv_thread_t main_thread_id; 26 uv_thread_t subthreads[2]; 29 uv_thread_t *thread_id = arg; in check_thread() 30 uv_thread_t self_id = uv_thread_self(); in check_thread() 39 uv_thread_t threads[2]; in TEST_IMPL()
|
D | test-thread.c | 34 uv_thread_t thread_id; 42 uv_thread_t thread_id; 50 uv_thread_t thread_id; 120 uv_thread_t tid; in TEST_IMPL() 146 uv_thread_t threads[2]; in TEST_IMPL() 189 uv_thread_t thread; in TEST_IMPL() 196 uv_thread_t thread; in TEST_IMPL()
|
D | test-barrier.c | 48 uv_thread_t thread; in TEST_IMPL() 69 uv_thread_t thread; in TEST_IMPL() 90 uv_thread_t thread; in TEST_IMPL() 122 uv_thread_t threads[4]; in TEST_IMPL()
|
D | test-condvar.c | 129 uv_thread_t thread; in TEST_IMPL() 148 uv_thread_t thread; in TEST_IMPL() 193 uv_thread_t thread; in TEST_IMPL() 212 uv_thread_t thread; in TEST_IMPL()
|
D | test-process-title-threadsafe.c | 82 uv_thread_t setter_threads[4]; in TEST_IMPL() 83 uv_thread_t getter_thread; in TEST_IMPL()
|
D | test-semaphore.c | 51 uv_thread_t thread; in TEST_IMPL() 75 uv_thread_t thread; in TEST_IMPL()
|
D | benchmark-thread.c | 43 uv_thread_t tid; in BENCHMARK_IMPL()
|
D | test-async-null-cb.c | 29 static uv_thread_t thread;
|
D | test-signal-multiple-loops.c | 208 uv_thread_t loop_creating_threads[NUM_LOOP_CREATING_THREADS]; in TEST_IMPL() 209 uv_thread_t signal_handling_threads[NUM_SIGNAL_HANDLING_THREADS]; in TEST_IMPL()
|
D | test-eintr-handling.c | 66 uv_thread_t thread; in TEST_IMPL()
|
D | test-async.c | 27 static uv_thread_t thread;
|
D | test-embed.c | 57 static uv_thread_t embed_thread;
|
D | benchmark-async-pummel.c | 65 uv_thread_t* tids; in test_async_pummel()
|
/third_party/libuv/src/win/ |
D | thread.c | 78 STATIC_ASSERT(sizeof(uv_thread_t) <= sizeof(void*)); 93 uv_thread_t self; 114 int uv_thread_create(uv_thread_t *tid, void (*entry)(void *arg), void *arg) { in uv_thread_create() 120 int uv_thread_create_ex(uv_thread_t* tid, in uv_thread_create_ex() 184 uv_thread_t uv_thread_self(void) { in uv_thread_self() 185 uv_thread_t key; in uv_thread_self() 202 int uv_thread_join(uv_thread_t *tid) { in uv_thread_join() 214 int uv_thread_equal(const uv_thread_t* t1, const uv_thread_t* t2) { in uv_thread_equal()
|
/third_party/libuv/docs/src/ |
D | threading.rst | 14 .. c:type:: uv_thread_t 77 .. c:function:: int uv_thread_create(uv_thread_t* tid, uv_thread_cb entry, void* arg) 81 .. c:function:: int uv_thread_create_ex(uv_thread_t* tid, const uv_thread_options_t* params, uv_thr… 91 .. c:function:: uv_thread_t uv_thread_self(void) 92 .. c:function:: int uv_thread_join(uv_thread_t *tid) 93 .. c:function:: int uv_thread_equal(const uv_thread_t* t1, const uv_thread_t* t2)
|
/third_party/libuv/docs/code/thread-create/ |
D | main.c | 28 uv_thread_t hare_id; in main() 29 uv_thread_t tortoise_id; in main()
|
/third_party/libuv/src/unix/ |
D | thread.c | 230 int uv_thread_create(uv_thread_t *tid, void (*entry)(void *arg), void *arg) { in uv_thread_create() 236 int uv_thread_create_ex(uv_thread_t* tid, in uv_thread_create_ex() 288 uv_thread_t uv_thread_self(void) { in uv_thread_self() 292 int uv_thread_join(uv_thread_t *tid) { in uv_thread_join() 297 int uv_thread_equal(const uv_thread_t* t1, const uv_thread_t* t2) { in uv_thread_equal()
|
/third_party/libuv/include/uv/ |
D | darwin.h | 38 uv_thread_t cf_thread; \
|
/third_party/node/src/ |
D | node_platform.cc | 55 std::unique_ptr<uv_thread_t> Start() { in Start() 59 std::unique_ptr<uv_thread_t> t { new uv_thread_t() }; in Start() 182 std::unique_ptr<uv_thread_t> t { new uv_thread_t() }; in WorkerThreadsTaskRunner()
|
D | inspector_io.h | 65 uv_thread_t thread_;
|
/third_party/node/test/node-api/test_fatal/ |
D | test_fatal.c | 10 static uv_thread_t uv_thread;
|
/third_party/libwebsockets/lib/event-libs/libuv/ |
D | private-lib-event-libs-libuv.h | 61 uv_thread_t uv_thread;
|
/third_party/libuv/docs/code/locks/ |
D | main.c | 44 uv_thread_t threads[3]; in main()
|
/third_party/libuv/docs/code/signal/ |
D | main.c | 58 uv_thread_t thread1, thread2; in main()
|
/third_party/libuv/src/ |
D | threadpool.c | 38 static uv_thread_t* threads; 39 static uv_thread_t default_threads[4];
|
12