Searched refs:m_hThread (Results 1 – 7 of 7) sorted by relevance
/trunk/main/sal/inc/osl/ |
H A D | thread.hxx | 70 if( m_hThread ) in create() 74 if( m_hThread ) in create() 77 return m_hThread != 0; in create() 83 if( m_hThread ) in createSuspended() 93 if( m_hThread ) in suspend() 99 if( m_hThread ) in resume() 105 if( m_hThread ) in terminate() 121 if( m_hThread ) in setPriority() 156 return m_hThread ? osl_scheduleThread(m_hThread) : sal_False; in schedule() 161 return m_hThread; in operator oslThread() [all …]
|
/trunk/main/vos/source/ |
H A D | thread.cxx | 58 m_hThread = 0; in OThread() 65 if (m_hThread != 0) in ~OThread() 67 osl_destroyThread(m_hThread); in ~OThread() 79 if (m_hThread) in create() 82 return m_hThread != 0; in create() 90 return m_hThread != 0; in createSuspended() 97 osl_suspendThread(m_hThread); in suspend() 104 osl_resumeThread(m_hThread); in resume() 109 return m_hThread != 0 && osl_isThreadRunning(m_hThread); in isRunning() 124 if (m_hThread) { in join() [all …]
|
/trunk/main/sal/osl/w32/ |
H A D | thread.c | 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() 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() 326 if(pThreadImpl==NULL || pThreadImpl->m_hThread==0) in osl_joinWithThread() 356 if (pThreadImpl==NULL || pThreadImpl->m_hThread==0) in osl_terminateThread() [all …]
|
/trunk/main/fpicker/source/win32/filepicker/ |
H A D | asynceventnotifier.cxx | 51 m_hThread(0), in CAsyncEventNotifier() 77 OSL_ENSURE(0 == m_hThread,"Thread not stopped, destroying this instance leads to desaster"); in ~CAsyncEventNotifier() 136 m_hThread = (HANDLE)_beginthreadex( in startup() 139 OSL_ASSERT(0 != m_hThread); in startup() 141 if (m_hThread) in startup() 177 if (WaitForSingleObject(m_hThread, INFINITE) == WAIT_FAILED) { in shutdown() 185 CloseHandle(m_hThread); in shutdown() 186 m_hThread = 0; in shutdown()
|
H A D | asynceventnotifier.hxx | 90 HANDLE m_hThread; member in CAsyncEventNotifier
|
/trunk/main/sal/osl/unx/ |
H A D | thread.c | 71 pthread_t m_hThread; member 205 thread = pImpl->m_hThread; in osl_thread_cleanup_Impl() 242 pImpl->m_Ident = insertThreadId (pImpl->m_hThread); in osl_thread_start_Impl() 296 &(pImpl->m_hThread), in osl_thread_create_Impl() 406 if (pthread_equal (pthread_self(), pImpl->m_hThread)) in osl_suspendThread() 453 if (pthread_equal (pthread_self(), pImpl->m_hThread)) in osl_joinWithThread() 460 thread = pImpl->m_hThread; in osl_joinWithThread() 517 OSL_ASSERT(pthread_equal (pthread_self(), pImpl->m_hThread)); in osl_scheduleThread() 518 if (!(pthread_equal (pthread_self(), pImpl->m_hThread))) in osl_scheduleThread() 824 if (pthread_getschedparam(pImpl->m_hThread, &policy, &Param) != 0) in osl_setThreadPriority() [all …]
|
/trunk/main/vos/inc/vos/ |
H A D | thread.hxx | 197 oslThread m_hThread; member in vos::OThread
|
Completed in 30 milliseconds