Lines Matching defs:thread
2 * thread_pool.cpp - Thread Pool
29 : public Thread
33 : Thread (name)
57 XCAM_LOG_DEBUG ("thread(%s, %p) stopped", XCAM_STR(get_name ()), this);
72 XCAM_LOG_DEBUG ("user thread(%s) get null data, need stop", XCAM_STR (_pool->get_name ()));
163 "thread pool(%s) start failed by creating user thread", XCAM_STR (get_name()));
217 SmartPtr<UserThread> thread = new UserThread (this, name);
218 XCAM_ASSERT (thread.ptr ());
220 ERROR, thread.ptr () && thread->start (), XCAM_RETURN_ERROR_THREAD,
221 "ThreadPool(%s) create user thread failed by starting error", XCAM_STR (get_name()));
223 _thread_list.push_back (thread);
260 XCAM_LOG_WARNING ("thread pool(%s) create new thread failed but queue data can continue");
266 "thread pool(%s) queue data failed by creating user thread", XCAM_STR (get_name()));