Home
last modified time | relevance | path

Searched refs:CreateThread (Results 1 – 25 of 174) sorted by relevance

1234567

/aosp_15_r20/system/extras/memory_replay/tests/
H A DThreadsTest.cpp29 Thread* thread = threads.CreateThread(900); in TEST()
50 Thread* thread1 = threads.CreateThread(900); in TEST()
54 Thread* thread2 = threads.CreateThread(901); in TEST()
58 Thread* thread3 = threads.CreateThread(902); in TEST()
93 Thread* thread = threads.CreateThread(900); in TEST()
129 Thread* thread = threads.CreateThread(900+i); in TestTooManyThreads()
/aosp_15_r20/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_thread_registry_test.cc69 EXPECT_EQ(0U, registry->CreateThread(get_uid(0), true, -1, 0)); in TestRegistry()
73 EXPECT_EQ(i, registry->CreateThread(get_uid(i), is_detached(i), 0, 0)); in TestRegistry()
93 registry->CreateThread(get_uid(i), is_detached(i), 0, 0)); in TestRegistry()
190 args->registry->CreateThread(0, false, 0, (void*)args->shard)); in RunThread()
202 EXPECT_EQ(0U, registry->CreateThread(0, true, -1, 0)); in ThreadedTestRegistry()
/aosp_15_r20/external/webrtc/test/time_controller/
H A Dtime_controller_conformance_test.cc84 std::unique_ptr<rtc::Thread> thread = time_controller->CreateThread("thread"); in TEST_P()
101 std::unique_ptr<rtc::Thread> thread = time_controller->CreateThread("thread"); in TEST_P()
117 std::unique_ptr<rtc::Thread> thread = time_controller->CreateThread("thread"); in TEST_P()
135 std::unique_ptr<rtc::Thread> thread = time_controller->CreateThread("thread"); in TEST_P()
H A Dsimulated_time_controller.cc56 std::unique_ptr<rtc::Thread> SimulatedTimeControllerImpl::CreateThread( in CreateThread() function in webrtc::sim_time_impl::SimulatedTimeControllerImpl
185 std::unique_ptr<rtc::Thread> GlobalSimulatedTimeController::CreateThread( in CreateThread() function in webrtc::GlobalSimulatedTimeController
188 return impl_.CreateThread(name, std::move(socket_server)); in CreateThread()
H A Dsimulated_time_controller.h61 std::unique_ptr<rtc::Thread> CreateThread(
134 std::unique_ptr<rtc::Thread> CreateThread(
/aosp_15_r20/external/libchrome/base/threading/
H A Dplatform_thread_posix.cc86 bool CreateThread(size_t stack_size, in CreateThread() function
200 return CreateThread(stack_size, true /* joinable thread */, delegate, in CreateWithPriority()
216 bool result = CreateThread(stack_size, false /* non-joinable thread */, in CreateNonJoinableWithPriority()
/aosp_15_r20/external/compiler-rt/lib/asan/
H A Dasan_win.cc100 INTERCEPTOR_WINAPI(DWORD, CreateThread, in INTERCEPTOR_WINAPI() argument
114 return REAL(CreateThread)(security, stack_size, in INTERCEPTOR_WINAPI()
154 ASAN_INTERCEPT_FUNC(CreateThread); in InitializePlatformInterceptors()
/aosp_15_r20/external/compiler-rt/test/asan/TestCases/Windows/
H A Dthread_stack_reuse.cc24 thr = CreateThread(NULL, 0, thread_proc_1, NULL, 0, NULL); in main()
30 thr = CreateThread(NULL, 0, thread_proc_2, NULL, 0, NULL); in main()
/aosp_15_r20/external/google-breakpad/src/client/solaris/handler/
H A Dexception_handler_test.cc88 static void CreateThread(int num) { in CreateThread() function
115 CreateThread(10); in main()
/aosp_15_r20/external/cronet/base/threading/
H A Dplatform_thread_posix.cc115 bool CreateThread(size_t stack_size, in CreateThread() function
316 return CreateThread(stack_size, true /* joinable thread */, delegate, in CreateWithType()
332 bool result = CreateThread(stack_size, false /* non-joinable thread */, in CreateNonJoinableWithType()
/aosp_15_r20/external/pigweed/pw_thread_zephyr/
H A Dthread.cc51 void Context::CreateThread(const zephyr::Options& options, in CreateThread() function in pw::thread::Context
85 Context::CreateThread(options, std::move(entry), native_type_); in Thread()
/aosp_15_r20/external/cronet/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/threading/
H A Dplatform_thread_posix_for_testing.cc70 bool CreateThread(size_t stack_size, in CreateThread() function
123 return CreateThread(stack_size, delegate, thread_handle); in Create()
/aosp_15_r20/external/pigweed/pw_thread_embos/
H A Dthread.cc83 void Context::CreateThread(const embos::Options& options, in CreateThread() function in pw::thread::Context
121 native_type_->CreateThread(options, std::move(entry)); in Thread()
/aosp_15_r20/external/tensorflow/tensorflow/tsl/platform/windows/
H A Dsubprocess.cc377 CreateThread(NULL, 0, InputThreadFunction, in Communicate()
392 CreateThread(NULL, 0, OutputThreadFunction, in Communicate()
407 CreateThread(NULL, 0, OutputThreadFunction, in Communicate()
/aosp_15_r20/external/grpc-grpc/src/core/lib/gprpp/windows/
H A Dthd.cc75 handle = CreateThread(nullptr, options.stack_size(), thread_body, info_, in ThreadInternalsWindows()
78 handle = CreateThread(nullptr, 64 * 1024, thread_body, info_, 0, nullptr); in ThreadInternalsWindows()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/gprpp/windows/
Dthd.cc76 handle = CreateThread(nullptr, options.stack_size(), thread_body, info_, in ThreadInternalsWindows()
79 handle = CreateThread(nullptr, 64 * 1024, thread_body, info_, 0, nullptr); in ThreadInternalsWindows()
/aosp_15_r20/external/pigweed/pw_thread_threadx/
H A Dthread.cc113 void Context::CreateThread(const threadx::Options& options, in CreateThread() function in pw::thread::Context
158 native_type_->CreateThread(options, std::move(entry)); in Thread()
/aosp_15_r20/external/pigweed/pw_thread_freertos/
H A Dthread.cc130 void Context::CreateThread(const freertos::Options& options, in CreateThread() function in pw::thread::Context
190 Context::CreateThread(options, std::move(entry), native_type_); in Thread()
/aosp_15_r20/external/googletest/googletest/src/
H A Dgtest-port.cc430 static HANDLE CreateThread(Runnable* runnable, in CreateThread() function in testing::internal::__anon296b1de30311::ThreadWithParamSupport
434 HANDLE thread_handle = ::CreateThread( in CreateThread()
479 ThreadWithParamSupport::CreateThread(runnable, thread_can_start)) {} in ThreadWithParamBase()
611 ::CreateThread(nullptr, // Default security. in StartWatcherThreadFor()
/aosp_15_r20/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/src/
Dgtest-port.cc469 static HANDLE CreateThread(Runnable* runnable, in CreateThread() function in testing::internal::__anon2e43afc00311::ThreadWithParamSupport
473 HANDLE thread_handle = ::CreateThread( in CreateThread()
518 : thread_(ThreadWithParamSupport::CreateThread(runnable, in ThreadWithParamBase()
647 HANDLE watcher_thread = ::CreateThread( in StartWatcherThreadFor()
/aosp_15_r20/external/libvpx/third_party/googletest/src/src/
H A Dgtest-port.cc424 static HANDLE CreateThread(Runnable* runnable, in CreateThread() function in testing::internal::__anon9e07728b0311::ThreadWithParamSupport
428 HANDLE thread_handle = ::CreateThread( in CreateThread()
473 ThreadWithParamSupport::CreateThread(runnable, thread_can_start)) {} in ThreadWithParamBase()
597 HANDLE watcher_thread = ::CreateThread( in StartWatcherThreadFor()
/aosp_15_r20/external/cronet/third_party/googletest/src/googletest/src/
H A Dgtest-port.cc430 static HANDLE CreateThread(Runnable* runnable, in CreateThread() function in testing::internal::__anoncc0e3e6d0311::ThreadWithParamSupport
434 HANDLE thread_handle = ::CreateThread( in CreateThread()
479 ThreadWithParamSupport::CreateThread(runnable, thread_can_start)) {} in ThreadWithParamBase()
611 ::CreateThread(nullptr, // Default security. in StartWatcherThreadFor()
/aosp_15_r20/external/mesa3d/src/gtest/src/
H A Dgtest-port.cc424 static HANDLE CreateThread(Runnable* runnable, in CreateThread() function in testing::internal::__anonb4d7c8440311::ThreadWithParamSupport
428 HANDLE thread_handle = ::CreateThread( in CreateThread()
473 ThreadWithParamSupport::CreateThread(runnable, thread_can_start)) {} in ThreadWithParamBase()
597 HANDLE watcher_thread = ::CreateThread( in StartWatcherThreadFor()
/aosp_15_r20/external/intel-media-driver/media_driver/linux/ult/ult_app/googletest/src/
H A Dgtest-port.cc424 static HANDLE CreateThread(Runnable* runnable, in CreateThread() function in testing::internal::__anon80a093690311::ThreadWithParamSupport
428 HANDLE thread_handle = ::CreateThread( in CreateThread()
473 ThreadWithParamSupport::CreateThread(runnable, thread_can_start)) {} in ThreadWithParamBase()
597 HANDLE watcher_thread = ::CreateThread( in StartWatcherThreadFor()
/aosp_15_r20/external/libaom/third_party/googletest/src/googletest/src/
H A Dgtest-port.cc424 static HANDLE CreateThread(Runnable* runnable, in CreateThread() function in testing::internal::__anon45d827960311::ThreadWithParamSupport
428 HANDLE thread_handle = ::CreateThread( in CreateThread()
473 ThreadWithParamSupport::CreateThread(runnable, thread_can_start)) {} in ThreadWithParamBase()
597 HANDLE watcher_thread = ::CreateThread( in StartWatcherThreadFor()

1234567