Searched refs:m_thread (Results 1 - 14 of 14) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DTimer.cpp100 m_thread = NULL;
106 return (m_thread && m_thread->IsRunning());
118 m_thread = new CTimerThread();
119 m_thread->m_period = millisecs;
120 m_thread->m_oneShot = oneShot;
121 m_thread->m_owner = m_owner;
122 m_thread->m_id = m_id;
124 if (m_thread->Create() == wxTHREAD_NO_ERROR) {
125 if (m_thread
[all...]
H A DThreadScheduler.cpp141 if ((m_thread && m_thread->IsAlive()) || m_tasks.empty()) {
146 if (m_thread) {
148 m_thread->Stop();
149 delete m_thread;
152 m_thread = new CTaskThread(this);
154 wxThreadError err = m_thread->Create();
157 m_thread->SetPriority(WXTHREAD_MIN_PRIORITY);
159 err = m_thread->Run();
171 m_thread
[all...]
H A DTimer.h66 CTimerThread* m_thread; member in class:CTimer
H A DHTTPDownload.cpp69 m_thread = thread;
101 if (m_thread) {
102 m_thread->Stop();
103 delete m_thread;
104 m_thread = NULL;
123 CMuleThread* m_thread; member in class:CHTTPDownloadDialog
H A DThreadScheduler.h127 CMuleThread* m_thread; member in class:CThreadScheduler
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/unix/
H A Djoystick.cpp184 m_thread(NULL)
201 m_thread = new wxJoystickThread(m_device, m_joystick);
202 m_thread->Create();
203 m_thread->Run();
211 if (m_thread)
212 m_thread->Delete(); // It's detached so it will delete itself
224 if (m_thread) pos = m_thread->m_lastposition;
230 if (m_thread)
231 return m_thread
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/corefoundation/
H A Dhidjoystick.cpp148 m_thread(NULL)
154 m_thread = new wxJoystickThread(m_hid, m_joystick);
155 m_thread->Create();
156 m_thread->Run();
174 if (m_thread)
175 m_thread->Delete(); // It's detached so it will delete itself
190 if (m_thread) pos = m_thread->m_lastposition;
195 if (m_thread)
196 return m_thread
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dthread.h626 if ( m_thread )
628 m_thread->Kill();
629 delete m_thread;
634 // constructor only initializes m_thread to NULL
635 wxThreadHelper() : m_thread(NULL) { }
637 // destructor deletes m_thread
646 m_thread = new wxThreadHelperThread(*this);
648 return m_thread->Create(stackSize);
656 wxThread *GetThread() const { return m_thread; }
659 wxThread *m_thread; member in class:wxThreadHelper
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/unix/
H A Djoystick.h91 wxJoystickThread* m_thread; member in class:wxJoystick
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/corefoundation/
H A Djoystick.h86 wxJoystickThread* m_thread; member in class:wxJoystick
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/palmos/
H A Dthread.cpp260 m_thread = thread;
319 if ( m_thread->IsDetached() )
325 if ( m_thread->IsDetached() && !::InterlockedDecrement(&m_nRef) )
326 delete m_thread;
331 wxThread *m_thread; member in class:wxThreadInternal
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dthread.cpp393 m_thread = thread;
459 if ( m_thread->IsDetached() )
465 if ( m_thread->IsDetached() && !::InterlockedDecrement(&m_nRef) )
466 delete m_thread;
471 wxThread *m_thread; member in class:wxThreadInternal
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dmpthread.cpp788 wxThread * m_thread; member in class:wxThreadInternal
881 m_thread = thread;
896 (void*) m_thread,
H A Dthread.cpp1003 wxThread * m_thread; member in class:wxThreadInternal
1095 m_thread = thread;
1111 MacThreadStart, (void*)m_thread, stackSize,

Completed in 211 milliseconds