Home
last modified time | relevance | path

Searched defs:ThreadPool (Results 1 – 25 of 98) sorted by relevance

1234

/aosp_15_r20/external/rust/android-crates-io/crates/threadpool/src/
Dlib.rs281 pub fn build(self) -> ThreadPool { in build()
342 pub struct ThreadPool { struct
348 shared_data: Arc<ThreadPoolSharedData>, argument
351 impl ThreadPool { impl
367 pub fn new(num_threads: usize) -> ThreadPool { in new()
397 pub fn with_name(name: String, num_threads: usize) -> ThreadPool { in with_name()
407 pub fn new_with_name(name: String, num_threads: usize) -> ThreadPool { in new_with_name()
639 impl Clone for ThreadPool { implementation
676 fn clone(&self) -> ThreadPool { in clone()
687 impl Default for ThreadPool { implementation
[all …]
/aosp_15_r20/tools/netsim/rust/daemon/src/http_server/
H A Dthread_pool.rs22 pub struct ThreadPool { struct
29 impl ThreadPool { impl
37 pub fn new(size: usize) -> ThreadPool { in new()
63 impl Drop for ThreadPool { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/futures-executor/src/
Dthread_pool.rs31 pub struct ThreadPool { struct
50 impl AssertSendSync for ThreadPool {} argument
59 impl fmt::Debug for ThreadPool { implementation
79 impl ThreadPool { impl
136 impl Spawn for ThreadPool { implementation
171 impl Clone for ThreadPool { implementation
178 impl Drop for ThreadPool { implementation
269 pub fn create(&mut self) -> Result<ThreadPool, io::Error> { in create()
/aosp_15_r20/external/rust/android-crates-io/crates/rayon-core/src/thread_pool/
Dmod.rs51 pub struct ThreadPool { struct
55 impl ThreadPool { implementation
59 pub fn new(configuration: crate::Configuration) -> Result<ThreadPool, Box<dyn Error>> { in new()
65 ) -> Result<ThreadPool, ThreadPoolBuildError> in build()
405 impl Drop for ThreadPool { implementation
411 impl fmt::Debug for ThreadPool { implementation
Dtest.rs282 fn nest<'scope, OP>(pools: &[ThreadPool], scopes: Vec<&Scope<'scope>>, op: OP) in nested_scopes()
319 fn nest<'scope, OP>(pools: &[ThreadPool], scopes: Vec<&ScopeFifo<'scope>>, op: OP) in nested_fifo_scopes()
/aosp_15_r20/external/llvm/lib/Support/
H A DThreadPool.cpp24 ThreadPool::ThreadPool() : ThreadPool(std::thread::hardware_concurrency()) {} in ThreadPool() function in ThreadPool
26 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() function in ThreadPool
115 ThreadPool::ThreadPool() : ThreadPool(0) {} in ThreadPool() function in ThreadPool
118 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() function in ThreadPool
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DThreadPool.cpp24 ThreadPool::ThreadPool() : ThreadPool(hardware_concurrency()) {} in ThreadPool() function in ThreadPool
26 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() function in ThreadPool
111 ThreadPool::ThreadPool() : ThreadPool(0) {} in ThreadPool() function in ThreadPool
114 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() function in ThreadPool
/aosp_15_r20/external/cronet/base/task/
H A Dthread_pool_unittest.cc20 TEST(ThreadPool, PostTaskAndReplyWithResultThreeArgs) { in TEST() argument
34 TEST(ThreadPool, PostTaskAndReplyWithResultFourArgs) { in TEST() argument
48 TEST(ThreadPool, BindPostTaskFizzlesOnShutdown) { in TEST() argument
73 TEST(ThreadPool, PostTaskAndReplyFizzlesOnShutdown) { in TEST() argument
/aosp_15_r20/external/toolchain-utils/toolchain_utils_githooks/
H A Dcheck-presubmit.py459 thread_pool: multiprocessing.pool.ThreadPool,
530 thread_pool: multiprocessing.pool.ThreadPool,
575 thread_pool: multiprocessing.pool.ThreadPool,
729 _thread_pool: multiprocessing.pool.ThreadPool,
760 _thread_pool: multiprocessing.pool.ThreadPool,
H A Dcheck-presubmit459 thread_pool: multiprocessing.pool.ThreadPool,
530 thread_pool: multiprocessing.pool.ThreadPool,
575 thread_pool: multiprocessing.pool.ThreadPool,
729 _thread_pool: multiprocessing.pool.ThreadPool,
760 _thread_pool: multiprocessing.pool.ThreadPool,
/aosp_15_r20/external/tensorflow/tensorflow/core/lib/core/
H A Dthreadpool_test.cc34 TEST(ThreadPool, Empty) { in TEST() argument
41 TEST(ThreadPool, DoWork) { in TEST() argument
262 TEST(ThreadPool, ParallelFor) { in TEST() argument
288 TEST(ThreadPool, ParallelForWithAdaptiveSchedulingStrategy) { in TEST() argument
318 TEST(ThreadPool, ParallelForWithWorkerId) { in TEST() argument
356 TEST(ThreadPool, Parallelism) { in TEST() argument
/aosp_15_r20/external/zstd/contrib/pzstd/utils/test/
H A DThreadPoolTest.cpp19 TEST(ThreadPool, Ordering) { in TEST() argument
34 TEST(ThreadPool, AllJobsFinished) { in TEST() argument
55 TEST(ThreadPool, AddJobWhileJoining) { in TEST() argument
/aosp_15_r20/external/federated-compute/fcp/base/
H A Dscheduler_test.cc37 TEST(ThreadPool, TasksAreExecuted) { in TEST() argument
54 TEST(ThreadPool, ThreadsAreUtilized) { in TEST() argument
76 TEST(ThreadPool, StressTest) { in TEST() argument
/aosp_15_r20/external/tensorflow/tensorflow/core/platform/
H A Dthreadpool.cc89 ThreadPool::ThreadPool(Env* env, const string& name, int num_threads) in ThreadPool() function in tensorflow::thread::ThreadPool
92 ThreadPool::ThreadPool(Env* env, const ThreadOptions& thread_options, in ThreadPool() function in tensorflow::thread::ThreadPool
96 ThreadPool::ThreadPool(Env* env, const ThreadOptions& thread_options, in ThreadPool() function in tensorflow::thread::ThreadPool
108 ThreadPool::ThreadPool(thread::ThreadPoolInterface* user_threadpool) { in ThreadPool() function in tensorflow::thread::ThreadPool
/aosp_15_r20/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/
DThreadPool.java26 public class ThreadPool { class
83 public ThreadPool() { in ThreadPool() method in ThreadPool
87 public ThreadPool(int initPoolSize, int maxPoolSize) { in ThreadPool() method in ThreadPool
/aosp_15_r20/libcore/luni/src/test/java/tests/support/
H A DThreadPool.java22 public class ThreadPool extends ThreadGroup { class
32 public ThreadPool(int numThreads) { in ThreadPool() method in ThreadPool
/aosp_15_r20/hardware/google/aemu/base/include/aemu/base/threads/
DThreadPool.h90 ThreadPool(int threads, Fn&& processor) : mProcessor() { in ThreadPool() function
112 explicit ThreadPool(Processor&& processor) in ThreadPool() function
/aosp_15_r20/libcore/ojluni/src/main/java/sun/nio/ch/
H A DThreadPool.java37 public class ThreadPool { class
52 private ThreadPool(ExecutorService executor, in ThreadPool() method in ThreadPool
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/
H A DThreadPool.cpp35 ThreadPool::ThreadPool(ThreadPoolStrategy S) in ThreadPool() function in ThreadPool
192 ThreadPool::ThreadPool(ThreadPoolStrategy S) : MaxThreadCount(1) { in ThreadPool() function in ThreadPool
/aosp_15_r20/external/pytorch/torch/csrc/lazy/core/
H A Dthread_pool.cpp19 class ThreadPool { class
21 explicit ThreadPool(size_t num_threads) { in ThreadPool() function in torch::lazy::__anon5bb5d7310111::ThreadPool
/aosp_15_r20/frameworks/av/services/audioflinger/afutils/
H A DNBAIO_Tee.cpp161 class ThreadPool { class in android::AudioFileHandler
163 explicit ThreadPool(size_t size) in ThreadPool() function in android::AudioFileHandler::ThreadPool
/aosp_15_r20/packages/modules/RemoteKeyProvisioning/app/src/com/android/rkpdapp/
DThreadPool.java27 public class ThreadPool { class
/aosp_15_r20/external/ruy/ruy/
H A Dcontext.h27 class ThreadPool; variable
H A Dctx.h27 class ThreadPool; variable
/aosp_15_r20/external/zstd/contrib/pzstd/utils/
H A DThreadPool.h27 explicit ThreadPool(std::size_t numThreads) { in ThreadPool() function

1234