Lines Matching refs:thd
213 MppThread *thd; member
235 MppThread *thd = impl->thd; in mpp_timer_thread() local
253 if (MPP_THREAD_RUNNING != thd->get_status()) in mpp_timer_thread()
380 if (!impl->enabled && NULL == impl->thd) { in mpp_timer_set_enable()
381 MppThread *thd = new MppThread(mpp_timer_thread, impl, impl->name); in mpp_timer_set_enable() local
382 if (thd) { in mpp_timer_set_enable()
383 impl->thd = thd; in mpp_timer_set_enable()
385 thd->start(); in mpp_timer_set_enable()
389 if (impl->enabled && impl->thd) { in mpp_timer_set_enable()
390 impl->thd->stop(); in mpp_timer_set_enable()
418 if (impl->thd) { in mpp_timer_put()
419 delete impl->thd; in mpp_timer_put()
420 impl->thd = NULL; in mpp_timer_put()