Lines Matching refs:m_hThread
38 HANDLE m_hThread; /* OS-handle used for all thread-functions */ member
94 pThreadImpl->m_hThread= in oslCreateThread()
102 if(pThreadImpl->m_hThread == 0) in oslCreateThread()
157 CloseHandle( pThreadImpl->m_hThread ); in osl_destroyThread()
172 ResumeThread(pThreadImpl->m_hThread); in osl_resumeThread()
184 SuspendThread(pThreadImpl->m_hThread); in osl_suspendThread()
239 SetThreadPriority(pThreadImpl->m_hThread, winPriority); in osl_setThreadPriority()
253 if(pThreadImpl==NULL || pThreadImpl->m_hThread==0) in osl_getThreadPriority()
259 GetThreadPriority(pThreadImpl->m_hThread); in osl_getThreadPriority()
310 if(pThreadImpl==NULL || pThreadImpl->m_hThread==0) in osl_isThreadRunning()
315 return (sal_Bool)(WaitForSingleObject(pThreadImpl->m_hThread, 0) != WAIT_OBJECT_0); in osl_isThreadRunning()
326 if(pThreadImpl==NULL || pThreadImpl->m_hThread==0) in osl_joinWithThread()
332 WaitForSingleObject(pThreadImpl->m_hThread, INFINITE); in osl_joinWithThread()
356 if (pThreadImpl==NULL || pThreadImpl->m_hThread==0) in osl_terminateThread()
376 if (pThreadImpl==NULL || pThreadImpl->m_hThread==0) in osl_scheduleThread()