Lines Matching refs:threadPool_
112 uno_ThreadPool threadPool_; member in binaryurp::__anon5d43642f0111::AttachThread
116 AttachThread::AttachThread(uno_ThreadPool threadPool): threadPool_(threadPool) { in AttachThread()
120 uno_threadpool_attach(threadPool_); in AttachThread()
124 uno_threadpool_detach(threadPool_); in ~AttachThread()
198 threadPool_(0), currentContextMode_(false), proxies_(0), calls_(0), in Bridge()
219 OSL_ASSERT(threadPool_ == 0 && !writer_.is() && !reader_.is()); in start()
220 threadPool_ = uno_threadpool_create(); in start()
221 OSL_ASSERT(threadPool_ != 0); in start()
253 OSL_ASSERT(threadPool_ != 0); in terminate()
254 uno_threadpool_dispose(threadPool_); in terminate()
309 OSL_ASSERT(threadPool_ != 0); in getThreadPool()
310 return threadPool_; in getThreadPool()
551 AttachThread att(threadPool_); in makeCall()
562 uno_threadpool_enter(threadPool_, &job); in makeCall()
791 if (threadPool_ != 0) { in ~Bridge()
792 uno_threadpool_destroy(threadPool_); in ~Bridge()
919 AttachThread att(threadPool_); in makeReleaseCall()