| /device/generic/goldfish/opengl/shared/OpenglOsUtils/ | 
| osThreadWin.cpp | 21     m_thread(NULL), 29     if(m_thread) {
 30         CloseHandle(m_thread);
 38     m_thread = CreateThread(NULL, 0, &Thread::thread_main, this, 0, &m_threadId);
 39     if(!m_thread) {
 52     if(WaitForSingleObject(m_thread, INFINITE) == WAIT_FAILED) {
 57     if (!GetExitCodeThread(m_thread,&retval)) {
 76     if(WaitForSingleObject(m_thread, 0) == WAIT_OBJECT_0) {
 79         if (!GetExitCodeThread(m_thread,&retval)) {
 
 | 
| osThread.h | 48     HANDLE m_thread;  member in class:osUtils::Thread 51     pthread_t m_thread;  member in class:osUtils::Thread
 
 | 
| osThreadUnix.cpp | 21     m_thread((pthread_t)NULL), 38     int ret = pthread_create(&m_thread, NULL, Thread::thread_main, this);
 54     if (pthread_join(m_thread,&retval)) {
 
 | 
| /sdk/emulator/opengl/shared/OpenglOsUtils/ | 
| osThreadWin.cpp | 21     m_thread(NULL), 29     if(m_thread) {
 30         CloseHandle(m_thread);
 38     m_thread = CreateThread(NULL, 0, &Thread::thread_main, this, 0, &m_threadId);
 39     if(!m_thread) {
 52     if(WaitForSingleObject(m_thread, INFINITE) == WAIT_FAILED) {
 57     if (!GetExitCodeThread(m_thread,&retval)) {
 76     if(WaitForSingleObject(m_thread, 0) == WAIT_OBJECT_0) {
 79         if (!GetExitCodeThread(m_thread,&retval)) {
 
 | 
| osThread.h | 48     HANDLE m_thread;  member in class:osUtils::Thread 51     pthread_t m_thread;  member in class:osUtils::Thread
 
 | 
| osThreadUnix.cpp | 21     m_thread((pthread_t)NULL), 38     int ret = pthread_create(&m_thread, NULL, Thread::thread_main, this);
 54     if (pthread_join(m_thread,&retval)) {
 
 | 
| /external/chromium_org/third_party/WebKit/Source/core/html/parser/ | 
| HTMLParserThread.h | 49     OwnPtr<WebKit::WebThread> m_thread;  member in class:WebCore::HTMLParserThread 
 | 
| HTMLParserThread.cpp | 41     : m_thread(adoptPtr(WebKit::Platform::current()->createThread("HTMLParserThread"))) 59     m_thread->postTask(new Task(closure));
 
 | 
| /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ | 
| DatabaseDetails.h | 44         m_thread = currentThread(); 55         m_thread = currentThread();
 64     ThreadIdentifier thread() const { return m_thread; }
 73     ThreadIdentifier m_thread;  member in class:WebCore::DatabaseDetails
 
 | 
| /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/ | 
| CThread.h | 77     pthread_t m_thread;  member in class:CThread 
 | 
| CThread.cpp | 107     ret = pthread_create(&m_thread, NULL, CThreadStartup, this); 119     ret = pthread_join(m_thread, NULL);
 
 | 
| /external/chromium_org/third_party/WebKit/Source/core/inspector/ | 
| WorkerDebuggerAgent.cpp | 61         : m_thread(thread) 69         while (MessageQueueMessageReceived == m_thread->runLoop().runInMode(m_workerGlobalScope, WorkerDebuggerAgent::debuggerTaskMode, WorkerRunLoop::DontWaitForMessage)) { }
 73     WorkerThread* m_thread;  member in class:WebCore::__anon12616::RunInspectorCommandsTask
 
 | 
| /external/valgrind/main/drd/tests/ | 
| pth_broadcast.c | 60   pthread_t     m_thread;  member in struct:cthread 67   p->m_thread = 0;
 154       pthread_create(&p->m_thread, 0,
 172       pthread_join(thread_vec[i].m_thread, 0);
 
 | 
| annotate_smart_pointer.cpp | 77   Thread() : m_thread(INVALID_HANDLE_VALUE) { } 82     m_thread = reinterpret_cast<HANDLE>(_beginthreadex(NULL, 0, wrapper,
 86   { WaitForSingleObject(m_thread, INFINITE); }
 103   HANDLE m_thread;  member in class:Thread
 
 | 
| /external/chromium_org/third_party/WebKit/Source/core/platform/ | 
| Timer.h | 99     ThreadIdentifier m_thread;  member in class:WebCore::TimerBase 123     ASSERT(m_thread == currentThread());
 
 | 
| Timer.cpp | 196     , m_thread(currentThread()) 209     ASSERT(m_thread == currentThread());
 217     ASSERT(m_thread == currentThread());
 368     ASSERT(m_thread == currentThread());
 
 | 
| /external/chromium_org/third_party/WebKit/Source/core/workers/ | 
| WorkerGlobalScope.h | 80         WorkerThread* thread() const { return m_thread; } 165         WorkerThread* m_thread;  member in class:WebCore::WorkerGlobalScope
 
 | 
| WorkerGlobalScope.cpp | 89     , m_thread(thread) 
 | 
| /sdk/emulator/opengl/tests/ut_renderer/ | 
| RenderingThread.h | 58     pthread_t m_thread;  member in class:RenderingThread 
 | 
| RenderingThread.cpp | 267     if (pthread_create(&m_thread, NULL, s_thread, this) < 0) { 
 |