HomeSort by relevance Sort by last modified time
    Searched refs:PosixDynamicThreadPool (Results 1 - 3 of 3) sorted by null

  /external/libchrome/base/threading/
worker_pool_posix.h 12 // although PosixDynamicThreadPool spawns the worker threads and manages the
14 // PosixDynamicThreadPool for work and eventually clean themselves up. The
15 // worker threads all maintain scoped_refptrs to the PosixDynamicThreadPool
16 // instance, which prevents PosixDynamicThreadPool from disappearing before all
17 // worker threads exit. The owner of PosixDynamicThreadPool should likewise
18 // maintain a scoped_refptr to the PosixDynamicThreadPool instance.
45 class BASE_EXPORT PosixDynamicThreadPool
46 : public RefCountedThreadSafe<PosixDynamicThreadPool> {
52 PosixDynamicThreadPool(const std::string& name_prefix,
68 friend class RefCountedThreadSafe<PosixDynamicThreadPool>;
    [all...]
worker_pool_posix.cc 43 scoped_refptr<base::PosixDynamicThreadPool> pool_;
47 : pool_(new base::PosixDynamicThreadPool("WorkerPool",
66 base::PosixDynamicThreadPool* pool)
73 scoped_refptr<base::PosixDynamicThreadPool> pool_;
119 PosixDynamicThreadPool::PosixDynamicThreadPool(const std::string& name_prefix,
127 PosixDynamicThreadPool::~PosixDynamicThreadPool() {
132 void PosixDynamicThreadPool::Terminate() {
141 void PosixDynamicThreadPool::PostTask
    [all...]