Searched refs:worker_stack_size (Results 1 – 3 of 3) sorted by relevance
/art/runtime/ |
D | thread_pool.h | 189 size_t worker_stack_size); 224 size_t worker_stack_size = ThreadPoolWorker::kDefaultStackSize) { 225 ThreadPool* pool = new ThreadPool(name, num_threads, create_peers, worker_stack_size); 245 size_t worker_stack_size) in ThreadPool() argument 246 : AbstractThreadPool(name, num_threads, create_peers, worker_stack_size) {} in ThreadPool()
|
D | thread_pool.cc | 196 size_t worker_stack_size) in AbstractThreadPool() argument 209 worker_stack_size_(worker_stack_size) {} in AbstractThreadPool()
|
/art/runtime/jit/ |
D | jit.h | 118 size_t worker_stack_size = ThreadPoolWorker::kDefaultStackSize) { 119 JitThreadPool* pool = new JitThreadPool(name, num_threads, worker_stack_size); 154 size_t worker_stack_size) in JitThreadPool() argument 156 : AbstractThreadPool(name, num_threads, /* create_peers= */ true, worker_stack_size) {} in JitThreadPool()
|