Home
last modified time | relevance | path

Searched refs:uv_thread_t (Results 1 - 25 of 59) sorted by relevance

123

/third_party/libuv/test/
H A Dtest-thread-equal.c25 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()
H A Dtest-thread.c34 uv_thread_t thread_id;
42 uv_thread_t thread_id;
50 uv_thread_t thread_id;
147 uv_thread_t tid; in TEST_IMPL()
203 uv_thread_t threads[2]; in TEST_IMPL()
246 uv_thread_t thread; in TEST_IMPL()
253 uv_thread_t thread; in TEST_IMPL()
H A Dtest-barrier.c50 uv_thread_t thread; in TEST_IMPL()
72 uv_thread_t thread; in TEST_IMPL()
94 uv_thread_t thread; in TEST_IMPL()
132 uv_thread_t threads[4]; in TEST_IMPL()
H A Dtest-condvar.c129 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()
H A Dtest-process-title-threadsafe.c82 uv_thread_t setter_threads[4]; in TEST_IMPL()
83 uv_thread_t getter_thread; in TEST_IMPL()
H A Dtest-semaphore.c51 uv_thread_t thread; in TEST_IMPL()
75 uv_thread_t thread; in TEST_IMPL()
H A Dtest-thread-affinity.c33 uv_thread_t tid; in check_affinity()
57 uv_thread_t threads[3]; in TEST_IMPL()
H A Dbenchmark-thread.c43 uv_thread_t tid; in BENCHMARK_IMPL()
H A Dtest-async-null-cb.c29 static uv_thread_t thread;
H A Dtest-signal-multiple-loops.c224 uv_thread_t loop_creating_threads[NUM_LOOP_CREATING_THREADS]; in TEST_IMPL()
225 uv_thread_t signal_handling_threads[NUM_SIGNAL_HANDLING_THREADS]; in TEST_IMPL()
H A Dtest-eintr-handling.c66 uv_thread_t thread; in TEST_IMPL()
H A Dtest-embed.c49 uv_thread_t thread; in TEST_IMPL()
/third_party/libuv/src/win/
H A Dthread.c77 /* Verify that uv_thread_t can be stored in a TLS slot. */
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()
183 int uv_thread_setaffinity(uv_thread_t* tid, in uv_thread_setaffinity()
226 int uv_thread_getaffinity(uv_thread_t* tid, in uv_thread_getaffinity()
259 uv_thread_t uv_thread_self(void) { in uv_thread_self()
260 uv_thread_t key; in uv_thread_self()
277 int uv_thread_join(uv_thread_t *ti
[all...]
/third_party/node/deps/uv/src/win/
H A Dthread.c77 /* Verify that uv_thread_t can be stored in a TLS slot. */
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* t
[all...]
/third_party/libuv/src/unix/
H A Dthread.c123 int uv_thread_create(uv_thread_t *tid, void (*entry)(void *arg), void *arg) { in uv_thread_create()
129 int uv_thread_create_ex(uv_thread_t* tid, in uv_thread_create_ex()
182 int uv_thread_setaffinity(uv_thread_t* tid, in uv_thread_setaffinity()
221 int uv_thread_getaffinity(uv_thread_t* tid, in uv_thread_getaffinity()
252 int uv_thread_setaffinity(uv_thread_t* tid, in uv_thread_setaffinity()
260 int uv_thread_getaffinity(uv_thread_t* tid, in uv_thread_getaffinity()
281 uv_thread_t uv_thread_self(void) { in uv_thread_self()
285 int uv_thread_join(uv_thread_t *tid) { in uv_thread_join()
290 int uv_thread_equal(const uv_thread_t* t1, const uv_thread_t* t
[all...]
/third_party/libuv/docs/code/thread-create/
H A Dmain.c27 uv_thread_t hare_id; in main()
28 uv_thread_t tortoise_id; in main()
/third_party/node/deps/uv/src/unix/
H A Dthread.c230 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/node/src/
H A Dnode_platform.cc62 std::unique_ptr<uv_thread_t> Start() { in Start()
66 std::unique_ptr<uv_thread_t> t { new uv_thread_t() }; in Start()
189 std::unique_ptr<uv_thread_t> t { new uv_thread_t() }; in WorkerThreadsTaskRunner()
H A Dinspector_io.h65 uv_thread_t thread_;
/third_party/libuv/include/uv/
H A Ddarwin.h38 uv_thread_t cf_thread; \
/third_party/node/deps/uv/include/uv/
H A Ddarwin.h38 uv_thread_t cf_thread; \
/third_party/libwebsockets/lib/event-libs/libuv/
H A Dprivate-lib-event-libs-libuv.h61 uv_thread_t uv_thread;
/third_party/libuv/docs/code/locks/
H A Dmain.c44 uv_thread_t threads[3]; in main()
/third_party/node/test/node-api/test_fatal/
H A Dtest_fatal.c10 static uv_thread_t uv_thread;
/third_party/libuv/docs/code/signal/
H A Dmain.c58 uv_thread_t thread1, thread2; in main()

Completed in 12 milliseconds

123