Searched refs:thread_ids (Results 1 – 5 of 5) sorted by relevance
/third_party/mesa3d/src/gallium/tests/unit/ |
D | pipe_barrier_test.c | 52 static int thread_ids[NUM_THREADS]; variable 116 thread_ids[i] = i; in main() 117 threads[i] = u_thread_create(thread_function, (void *) &thread_ids[i]); in main()
|
/third_party/e2fsprogs/lib/ext2fs/ |
D | rw_bitmaps.c | 525 pthread_t *thread_ids = NULL; in ext2fs_rw_bitmaps() local 574 thread_ids = calloc(sizeof(pthread_t), num_threads); in ext2fs_rw_bitmaps() 575 if (!thread_ids) in ext2fs_rw_bitmaps() 602 retval = pthread_create(&thread_ids[i], &attr, in ext2fs_rw_bitmaps() 608 if (!thread_ids[i]) in ext2fs_rw_bitmaps() 610 rc = pthread_join(thread_ids[i], NULL); in ext2fs_rw_bitmaps() 623 free(thread_ids); in ext2fs_rw_bitmaps()
|
/third_party/flutter/engine/flutter/fml/ |
D | message_loop_unittests.cc | 298 std::set<std::thread::id> thread_ids; in TEST() local 304 thread_ids.insert(std::this_thread::get_id()); in TEST() 309 ASSERT_GE(thread_ids.size(), 1u); in TEST()
|
/third_party/ltp/testcases/network/netstress/ |
D | netstress.c | 130 static pthread_t *thread_ids; variable 462 thread_ids = SAFE_MALLOC(sizeof(pthread_t) * clients_num); in client_init() 483 SAFE_PTHREAD_CREATE(&thread_ids[i], &attr, client_fn, (void *)i); in client_init() 492 pthread_join(thread_ids[i], &res); in client_run() 526 free(thread_ids); in client_cleanup()
|
/third_party/ltp/testcases/kernel/power_management/lib/ |
D | pm_sched_mc.py | 196 thread_ids = threads_sibs.split("-") 198 if not thread_ids in siblings_list: 199 siblings_list.append(thread_ids)
|