Home
last modified time | relevance | path

Searched refs:create_thread (Results 1 – 25 of 57) sorted by relevance

123

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/test/sync/mutual_exclusion/sync_pq/
Dpq_multi_thread_pass.cpp59 tg.create_thread(boost::bind(call_pull, &pq, &b)); in test_pull()
74 tg.create_thread(boost::bind(call_push, &pq, &b, i)); in test_push()
90 tg.create_thread(boost::bind(call_pull, &pq, &b)); in test_both()
91 tg.create_thread(boost::bind(call_push, &pq, &b, i)); in test_both()
136 tg1.create_thread(boost::bind(push_range, &pq, i*(limit/n)+1, (i+1)*(limit/n)+1)); in compute_sum()
137 tg2.create_thread(boost::bind(atomic_pull, &pq, &sum)); in compute_sum()
180 tg1.create_thread(boost::bind(push_range, &pq1, i*(limit/n)+1, (i+1)*(limit/n)+1)); in sum_with_moving()
181 tg2.create_thread(boost::bind(move_between_queues, &pq1, &pq2)); in sum_with_moving()
Dtq_multi_thread_pass.cpp88 tg.create_thread(boost::bind(call_push, &tq, start)); in test_push_while_pull()
89 tg.create_thread(boost::bind(call_pull, &tq, start)); in test_push_while_pull()
100 tg.create_thread(boost::bind(call_push, &tq, start)); in test_push_while_pull_until()
101 tg.create_thread(boost::bind(call_pull_until, &tq, start)); in test_push_while_pull_until()
112 tg.create_thread(boost::bind(call_push, &tq, start)); in test_push_while_pull_for()
113 tg.create_thread(boost::bind(call_pull_for, &tq, start)); in test_push_while_pull_for()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/test/
Dtest_shared_mutex.cpp43 …pool.create_thread(locking_thread<boost::shared_lock<boost::shared_mutex> >(rw_mutex,unblocked_cou… in BOOST_AUTO_TEST_CASE()
91 …pool.create_thread(locking_thread<boost::unique_lock<boost::shared_mutex> >(rw_mutex,unblocked_cou… in BOOST_AUTO_TEST_CASE()
131 …pool.create_thread(locking_thread<boost::shared_lock<boost::shared_mutex> >(rw_mutex,unblocked_cou… in BOOST_AUTO_TEST_CASE()
141 …pool.create_thread(locking_thread<boost::unique_lock<boost::shared_mutex> >(rw_mutex,unblocked_cou… in BOOST_AUTO_TEST_CASE()
182 …pool.create_thread(locking_thread<boost::shared_lock<boost::shared_mutex> >(rw_mutex,unblocked_cou… in BOOST_AUTO_TEST_CASE()
238 …pool.create_thread(locking_thread<boost::shared_lock<boost::shared_mutex> >(rw_mutex,unblocked_cou… in BOOST_AUTO_TEST_CASE()
244 …pool.create_thread(locking_thread<boost::unique_lock<boost::shared_mutex> >(rw_mutex,unblocked_cou… in BOOST_AUTO_TEST_CASE()
Dtest_condition_notify_all.cpp29 group.create_thread(bind(&wait_for_flag::wait_without_predicate, data)); in do_test_condition_notify_all_wakes_from_wait()
58 group.create_thread(bind(&wait_for_flag::wait_with_predicate, data)); in do_test_condition_notify_all_wakes_from_wait_with_predicate()
87 group.create_thread(bind(&wait_for_flag::timed_wait_without_predicate, data)); in do_test_condition_notify_all_wakes_from_timed_wait()
116 group.create_thread(bind(&wait_for_flag::timed_wait_with_predicate, data)); in do_test_condition_notify_all_wakes_from_timed_wait_with_predicate()
145 group.create_thread(bind(&wait_for_flag::relative_timed_wait_with_predicate, data)); in do_test_condition_notify_all_wakes_from_relative_timed_wait_with_predicate()
Dtest_4648.cpp42 myThreadGroup.create_thread(boost::bind(boostThreadLocksTest::firstFunction,&myObject)); in main()
43 myThreadGroup.create_thread(boost::bind(boostThreadLocksTest::firstFunction,&myObject)); in main()
44 myThreadGroup.create_thread(boost::bind(boostThreadLocksTest::firstFunction,&myObject)); in main()
Dtest_once.cpp58 group.create_thread(&call_once_thread); in BOOST_AUTO_TEST_CASE()
117 group.create_thread(&call_once_with_functor); in BOOST_AUTO_TEST_CASE()
177 group.create_thread(&call_once_with_exception); in BOOST_AUTO_TEST_CASE()
Dtest_shared_mutex_part_2.cpp77 …pool.create_thread(locking_thread<boost::upgrade_lock<boost::shared_mutex> >(rw_mutex,unblocked_co… in BOOST_AUTO_TEST_CASE()
119 …pool.create_thread(locking_thread<boost::shared_lock<boost::shared_mutex> >(rw_mutex,unblocked_cou… in BOOST_AUTO_TEST_CASE()
123 …pool.create_thread(locking_thread<boost::upgrade_lock<boost::shared_mutex> >(rw_mutex,unblocked_co… in BOOST_AUTO_TEST_CASE()
Dtest_completion_latch.cpp64 g.create_thread(&latch_thread); in test_completion_latch_reset()
86 g2.create_thread(&latch_thread); in test_completion_latch_reset()
Dtest_3628.cpp84 tg.create_thread(ThreadFuncWaiter); in main()
87 tg.create_thread(ThreadFuncNotifier); in main()
Dtest_tss.cpp163 threads.create_thread(&test_tss_thread); in do_test_tss()
259 threads.create_thread(&test_tss_void_thread); in do_test_tss_void()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/exception/test/
Dexception_ptr_test.cpp24 boost::shared_ptr<thread_handle> create_thread( boost::function<void()> const & f );
57 friend boost::shared_ptr<thread_handle> create_thread( boost::function<void()> const & f );
62 create_thread( boost::function<void()> const & f ) in create_thread() function
170 … std::generate_n(std::inserter(threads,threads.end()),1,boost::bind(create_thread,thread_func)); in main()
/aosp_15_r20/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setschedpolicy/
H A D2-1.c92 static int create_thread(int prio, pthread_t * tid) in create_thread() function
166 rc = create_thread(PRIO_LOW, &t3); in main()
170 rc = create_thread(PRIO_MED, &t2); in main()
174 rc = create_thread(PRIO_HIGH, &t1); in main()
/aosp_15_r20/external/wayland/tests/
H A Ddisplay-test.c474 create_thread(struct client *c, void *(*func)(void*)) in create_thread() function
531 thread = create_thread(c, thread_read_error); in threading_post_err()
592 th1 = create_thread(c, thread_prepare_and_read); in threading_cancel_read()
593 th2 = create_thread(c, thread_prepare_and_read); in threading_cancel_read()
594 th3 = create_thread(c, thread_prepare_and_read); in threading_cancel_read()
631 th1 = create_thread(c, thread_prepare_and_read); in threading_read_eagain()
632 th2 = create_thread(c, thread_prepare_and_read); in threading_read_eagain()
633 th3 = create_thread(c, thread_prepare_and_read); in threading_read_eagain()
/aosp_15_r20/external/python/cpython2/Demo/pysvr/
Dpysvr.c46 static void create_thread(int, struct sockaddr_in *);
169 create_thread(conn, &clientaddr); in main_thread()
185 create_thread(int conn, struct sockaddr_in *addr) in create_thread() function
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/detail/
Dthread_group.hpp45 void create_thread(Function f) in create_thread() function in boost::asio::detail::thread_group
55 create_thread(f); in create_threads()
/aosp_15_r20/external/ltp/testcases/realtime/lib/
H A Dlibrttest.c288 int create_thread(void *(*func) (void *), void *arg, int prio, int policy) in create_thread() function
332 return create_thread(func, arg, prio, SCHED_FIFO); in create_fifo_thread()
337 return create_thread(func, arg, prio, SCHED_RR); in create_rr_thread()
342 return create_thread(func, arg, 0, SCHED_OTHER); in create_other_thread()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/example/
Dthread_group.cpp35 threads.create_thread(&increment_count); in main()
42 threads.create_thread(&increment_count); in main()
Donce.cpp36 threads.create_thread(&thread_proc); in main()
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/pal/xous/
H A Dthread.rs5 blocking_scalar, create_thread, do_yield, join_thread, map_memory, update_memory_flags,
61 let tid = create_thread( in new()
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/pal/xous/
H A Dthread.rs5 blocking_scalar, create_thread, do_yield, join_thread, map_memory, update_memory_flags,
61 let tid = create_thread( in new()
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/pal/xous/
H A Dthread.rs5 blocking_scalar, create_thread, do_yield, join_thread, map_memory, update_memory_flags,
61 let tid = create_thread( in new()
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/sys/pal/xous/
H A Dthread.rs5 blocking_scalar, create_thread, do_yield, join_thread, map_memory, update_memory_flags,
61 let tid = create_thread( in new()
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/pal/xous/
H A Dthread.rs5 blocking_scalar, create_thread, do_yield, join_thread, map_memory, update_memory_flags,
61 let tid = create_thread( in new()
/aosp_15_r20/external/curl/docs/examples/
H A Dsmooth-gtk-thread.c122 void *create_thread(void *progress_bar) in create_thread() function
210 if(!g_thread_create(&create_thread, progress_bar, FALSE, NULL) != 0) in main()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/tutorial/
Donce.cpp28 threads.create_thread(&thread_proc); in main()

123