• 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
66 // this is the Per-Task Storage for the pointer to the appropriate wxThread
704 // wxThread implementation
742 bool Create(wxThread *thread, unsigned int stackSize);
770 void SetExitCode(wxThread::ExitCode exitcode) { m_exitcode = exitcode; }
771 wxThread::ExitCode GetExitCode() const { return m_exitcode; }
788 wxThread * m_thread;
804 wxThread::ExitCode m_exitcode;
823 wxThread* thread = (wxThread*) parameter ;
874 bool wxThreadInternal::Create(wxThread *thread, unsigned int stackSize)
953 if ( wxThread::IsMain() )
985 if ( wxThread::IsMain() )
994 wxT("thread must first be paused with wxThread::Pause().") );
1022 wxThread *wxThread::This()
1024 wxThread* thr = (wxThread*) MPGetTaskStorageValue( gs_tlsForWXThread ) ;
1028 bool wxThread::IsMain()
1037 void wxThread::Yield()
1046 void wxThread::Sleep(unsigned long milliseconds)
1053 int wxThread::GetCPUCount()
1058 unsigned long wxThread::GetCurrentId()
1064 bool wxThread::SetConcurrency(size_t level)
1071 wxThread::wxThread(wxThreadKind kind)
1079 wxThread::~wxThread()
1101 wxThreadError wxThread::Create(unsigned int stackSize)
1118 wxThreadError wxThread::Run()
1123 wxT("must call wxThread::Create() first") );
1132 wxThreadError wxThread::Pause()
1153 wxThreadError wxThread::Resume()
1181 wxThread::ExitCode wxThread::Wait()
1194 wxThreadError wxThread::Delete(ExitCode *rc)
1247 wxThreadError wxThread::Kill()
1287 void wxThread::Exit(ExitCode status)
1290 _T("wxThread::Exit() can only be called in the context of the same thread") );
1313 bool wxThread::TestDestroy()
1316 _T("wxThread::TestDestroy() can only be called in the context of the same thread") );
1344 void wxThread::SetPriority(unsigned int prio)
1367 unsigned int wxThread::GetPriority() const
1374 unsigned long wxThread::GetId() const
1385 bool wxThread::IsRunning() const
1392 bool wxThread::IsAlive() const
1407 bool wxThread::IsPaused() const
1441 gs_idMainThread = wxThread::GetCurrentId() ;
1471 wxASSERT_MSG( !wxThread::IsMain(),
1494 if ( wxThread::IsMain() )
1514 wxASSERT_MSG( wxThread::IsMain(),