• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/

Lines Matching refs:wxThread

3 // Purpose:     wxThread Implementation
60 // this is the Per-Task Storage for the pointer to the appropriate wxThread
900 // wxThread implementation
939 bool Create(wxThread *thread, unsigned int stackSize);
981 void SetExitCode(wxThread::ExitCode exitcode)
983 wxThread::ExitCode GetExitCode() const
1003 wxThread * m_thread;
1019 wxThread::ExitCode m_exitcode;
1038 wxThread* thread = (wxThread*) parameter ;
1089 bool wxThreadInternal::Create( wxThread *thread, unsigned int stackSize )
1162 if ( wxThread::IsMain() )
1204 wxT("thread must first be paused with wxThread::Pause().") );
1232 wxThread *wxThread::This()
1234 wxThread* thr = (wxThread*) MPGetTaskStorageValue( gs_tlsForWXThread ) ;
1239 bool wxThread::IsMain()
1248 void wxThread::Yield()
1257 void wxThread::Sleep( unsigned long milliseconds )
1263 int wxThread::GetCPUCount()
1268 unsigned long wxThread::GetCurrentId()
1273 bool wxThread::SetConcurrency( size_t level )
1279 wxThread::wxThread( wxThreadKind kind )
1287 wxThread::~wxThread()
1311 wxThreadError wxThread::Create( unsigned int stackSize )
1328 wxThreadError wxThread::Run()
1333 wxT("must call wxThread::Create() first") );
1342 wxThreadError wxThread::Pause()
1363 wxThreadError wxThread::Resume()
1392 wxThread::ExitCode wxThread::Wait()
1405 wxThreadError wxThread::Delete(ExitCode *rc)
1457 wxThreadError wxThread::Kill()
1497 void wxThread::Exit( ExitCode status )
1500 wxT("wxThread::Exit() can only be called in the context of the same thread") );
1525 bool wxThread::TestDestroy()
1528 wxT("wxThread::TestDestroy() can only be called in the context of the same thread") );
1555 void wxThread::SetPriority(unsigned int prio)
1578 unsigned int wxThread::GetPriority() const
1585 unsigned long wxThread::GetId() const
1596 bool wxThread::IsRunning() const
1603 bool wxThread::IsAlive() const
1618 bool wxThread::IsPaused() const
1661 gs_idMainThread = wxThread::GetCurrentId();
1696 wxASSERT_MSG( !wxThread::IsMain(),
1719 if ( wxThread::IsMain() )
1739 wxASSERT_MSG( wxThread::IsMain(),