Lines Matching refs:_tid

233     ccxx_suspend(priv->_tid);  in suspend()
238 ccxx_suspend(priv->_tid); in suspend()
279 ccxx_resume(priv->_tid); in resume()
289 ccxx_resume(priv->_tid); in resume()
462 priv->_tid = GetCurrentThreadId(); in Thread()
481 priv->_tid = pthread_self(); in Thread()
772 return ((priv->_tid == GetCurrentThreadId())) ? true : false; in isThread()
774 return (priv->_tid == pthread_self()) ? true : false; in isThread()
801 return priv->_tid; in getId()
809 return (priv->_tid != 0 && priv->_active) ? true : false; in isRunning()
811 return (priv->_tid != 0) ? true : false; in isRunning()
826 …(unsigned)priv->_stack, (exec_t)&Execute, (void *)this, CREATE_SUSPENDED, (unsigned *)&priv->_tid); in start()
844 if(priv->_tid) { in start()
854 return pthread_create(&priv->_tid, &priv->_attr, exec_t(&ccxx_exec_handler), this); in start()
875 if(priv->_tid) { in detach()
876 pthread_detach(priv->_tid); in detach()
888 if(!pthread_create(&priv->_tid, &priv->_attr, exec_t(&ccxx_exec_handler), this)) in detach()
904 if (!priv->_tid || isThread()) { in terminate()
945 priv->_tid = 0; in terminate()
955 cctid_t jtid = priv->_jtid, tid = priv->_tid; in terminate()
974 priv->_tid = 0; in terminate()
1032 priv->_jtid = priv->_tid; in close()
1033 priv->_tid = 0; in close()
1071 th->priv->_tid = pthread_self(); in ThreadExecHandler()
1073 th->priv->_mach = pthread_mach_thread_np(th->priv->_tid); in ThreadExecHandler()
1422 th->priv->_tid = GetCurrentThreadId(); in Execute()
1633 pthread_kill(th->priv->_tid, signo); in signalThread()
1643 return priv->_tid; in getPthreadId()