/aosp_15_r20/external/webrtc/rtc_base/ |
H A D | platform_thread.cc | 130 std::function<void()> thread_function, in SpawnJoinable() argument 133 return SpawnThread(std::move(thread_function), name, attributes, in SpawnJoinable() 138 std::function<void()> thread_function, in SpawnDetached() argument 141 return SpawnThread(std::move(thread_function), name, attributes, in SpawnDetached() 172 std::function<void()> thread_function, in SpawnThread() argument 176 RTC_DCHECK(thread_function); in SpawnThread() 181 new std::function<void()>([thread_function = std::move(thread_function), in SpawnThread() 185 thread_function(); in SpawnThread()
|
H A D | platform_thread.h | 85 std::function<void()> thread_function, 92 std::function<void()> thread_function, 106 static PlatformThread SpawnThread(std::function<void()> thread_function,
|
H A D | async_resolver.cc | 155 auto thread_function = in Start() local 180 std::make_unique<absl::AnyInvocable<void() &&>>(thread_function)); in Start() 182 PlatformThread::SpawnDetached(std::move(thread_function), "AsyncResolver"); in Start()
|
/aosp_15_r20/external/pthreadpool/src/ |
H A D | gcd.c | 29 const thread_function_t thread_function = in thread_main() local 30 (thread_function_t) pthreadpool_load_relaxed_void_p(&threadpool->thread_function); in thread_main() 38 thread_function(threadpool, thread); in thread_main() 78 thread_function_t thread_function, in pthreadpool_parallelize() argument 87 assert(thread_function != NULL); in pthreadpool_parallelize() 95 pthreadpool_store_relaxed_void_p(&threadpool->thread_function, (void*) thread_function); in pthreadpool_parallelize()
|
H A D | pthreads.c | 203 const thread_function_t thread_function = in thread_main() local 204 (thread_function_t) pthreadpool_load_relaxed_void_p(&threadpool->thread_function); in thread_main() 210 thread_function(threadpool, thread); in thread_main() 296 thread_function_t thread_function, in pthreadpool_parallelize() argument 305 assert(thread_function != NULL); in pthreadpool_parallelize() 318 pthreadpool_store_relaxed_void_p(&threadpool->thread_function, (void*) thread_function); in pthreadpool_parallelize() 387 thread_function(threadpool, &threadpool->threads[0]); in pthreadpool_parallelize()
|
H A D | windows.c | 105 const thread_function_t thread_function = in thread_main() local 106 (thread_function_t) pthreadpool_load_relaxed_void_p(&threadpool->thread_function); in thread_main() 112 thread_function(threadpool, thread); in thread_main() 192 thread_function_t thread_function, in pthreadpool_parallelize() argument 201 assert(thread_function != NULL); in pthreadpool_parallelize() 210 pthreadpool_store_relaxed_void_p(&threadpool->thread_function, (void*) thread_function); in pthreadpool_parallelize() 284 thread_function(threadpool, &threadpool->threads[0]); in pthreadpool_parallelize()
|
H A D | threadpool-object.h | 609 pthreadpool_atomic_void_p thread_function; member 722 thread_function_t thread_function,
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/impl/ |
D | thread_pool.ipp | 28 struct thread_pool::thread_function 68 thread_function f = { &scheduler_ }; 94 thread_function f = { &scheduler_ }; 112 thread_function f = { &scheduler_ };
|
D | system_context.ipp | 26 struct system_context::thread_function 53 thread_function f = { &scheduler_ };
|
/aosp_15_r20/external/google-breakpad/src/client/linux/minidump_writer/ |
H A D | linux_dumper_unittest_helper.cc | 63 void* thread_function(void* data) { in thread_function() function 96 pthread_create(&threads[i], &thread_attributes, &thread_function, &pipefd); in main() 98 thread_function(&pipefd); in main()
|
/aosp_15_r20/external/ltp/testcases/open_posix_testsuite/conformance/definitions/pthread_h/ |
H A D | 4-1-buildonly.c | 17 static void *thread_function(void *arg PTS_ATTRIBUTE_UNUSED) in thread_function() function 26 pthread_create(&a_thread, NULL, thread_function, NULL); in dummy_func()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/atomic/test/ |
D | atomicity.cpp | 62 … boost::thread(boost::bind(&concurrent_runner::thread_function, this, fn, 0)).swap(first_thread_); in concurrent_runner() 63 … boost::thread(boost::bind(&concurrent_runner::thread_function, this, fn, 1)).swap(second_thread_); in concurrent_runner() 98 void thread_function(boost::function<bool(std::size_t)> function, std::size_t instance) in thread_function() function in concurrent_runner
|
D | atomicity_ref.cpp | 68 … boost::thread(boost::bind(&concurrent_runner::thread_function, this, fn, 0)).swap(first_thread_); in concurrent_runner() 69 … boost::thread(boost::bind(&concurrent_runner::thread_function, this, fn, 1)).swap(second_thread_); in concurrent_runner() 104 void thread_function(boost::function<bool(std::size_t)> function, std::size_t instance) in thread_function() function in concurrent_runner
|
/aosp_15_r20/external/mesa3d/src/gallium/tests/unit/ |
H A D | pipe_barrier_test.c | 71 thread_function(void *thread_data) in thread_function() function 117 u_thread_create(threads + i, thread_function, (void *) &thread_ids[i]); in main()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/detail/impl/ |
D | win_iocp_io_context.ipp | 37 struct win_iocp_io_context::thread_function 39 explicit thread_function(win_iocp_io_context* s) 109 thread_.reset(new boost::asio::detail::thread(thread_function(this))); 571 timer_thread_function thread_function = { this }; 572 timer_thread_.reset(new thread(thread_function, 65536));
|
D | select_reactor.ipp | 38 class select_reactor::thread_function 41 explicit thread_function(select_reactor* r) 69 thread_ = new boost::asio::detail::thread(thread_function(this));
|
D | scheduler.ipp | 34 class scheduler::thread_function 37 explicit thread_function(scheduler* s) 131 thread_ = new boost::asio::detail::thread(thread_function(this));
|
/aosp_15_r20/bionic/tests/ |
H A D | leak_test.cpp | 150 const auto thread_function = +[](void* ptr) -> void* { in TEST() local 157 ASSERT_EQ(0, pthread_create(&thread, nullptr, thread_function, &threads[i])); in TEST()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/detail/ |
D | scheduler.hpp | 170 class thread_function; 171 friend class thread_function;
|
D | select_reactor.hpp | 209 class thread_function; 210 friend class thread_function;
|
D | win_iocp_io_context.hpp | 296 struct thread_function; 297 friend struct thread_function;
|
/aosp_15_r20/system/core/init/ |
H A D | ueventd_test.cpp | 166 auto thread_function = [&]() { in TEST() local 188 [&]() { return std::thread(thread_function); }); in TEST()
|
/aosp_15_r20/external/google-breakpad/src/common/linux/tests/ |
H A D | crash_generator.cc | 85 void* thread_function(void* data) { in thread_function() function 324 thread_function, &thread_data[i]) != 0) { in CreateThreadsInChildProcess()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/lldb/Host/ |
D | ThreadLauncher.h | 24 std::function<lldb::thread_result_t()> thread_function,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/lldb/Host/ |
D | ThreadLauncher.h | 24 std::function<lldb::thread_result_t()> thread_function,
|