HomeSort by relevance Sort by last modified time
    Searched refs:main_thread (Results 1 - 19 of 19) sorted by null

  /bionic/libc/bionic/
__libc_init_main_thread.cpp 58 static pthread_internal_t main_thread; local
62 __set_tls(main_thread.tls);
66 main_thread.tid = __set_tid_address(&main_thread.tid);
67 main_thread.set_cached_pid(main_thread.tid);
74 main_thread.mmap_size = 0;
75 pthread_attr_init(&main_thread.attr);
76 main_thread.attr.guard_size = 0; // The main thread has no guard page.
77 main_thread.attr.stack_size = 0; // User code should never see this; we'll compute it when asked
    [all...]
libc_init_common.cpp 110 pthread_internal_t* main_thread = __get_thread(); local
111 __pthread_internal_add(main_thread);
  /external/compiler-rt/test/tsan/
atomic_norace.cc 8 void Test(int test, T *p, bool main_thread) {
11 if (main_thread)
16 if (main_thread)
21 if (main_thread)
26 if (main_thread)
atomic_race.cc 8 void Test(int test, T *p, bool main_thread) {
11 if (main_thread)
16 if (main_thread)
21 if (main_thread)
26 if (main_thread)
  /external/valgrind/none/tests/
pth_blockedsig.c 11 static pthread_t main_thread; variable
23 if (pthread_kill (main_thread, SIGUSR1) != 0)
49 main_thread = pthread_self ();
  /external/chromium-trace/catapult/third_party/typ/typ/fakes/
test_result_server_fake.py 37 server.main_thread = thread
54 self.main_thread = None
59 self.main_thread.join()
  /external/google-breakpad/src/client/mac/tests/
minidump_generator_test.cc 124 MinidumpThread* main_thread = thread_list->GetThreadAtIndex(0); local
125 ASSERT_TRUE(main_thread);
126 MinidumpContext* context = main_thread->GetContext();
215 MinidumpThread* main_thread = thread_list->GetThreadAtIndex(0); local
216 ASSERT_TRUE(main_thread);
217 MinidumpContext* context = main_thread->GetContext();
305 MinidumpThread* main_thread = thread_list->GetThreadAtIndex(0); local
306 ASSERT_TRUE(main_thread);
307 MinidumpContext* context = main_thread->GetContext();
crash_generation_server_test.cc 264 MinidumpThread* main_thread = thread_list->GetThreadAtIndex(0); local
265 ASSERT_TRUE(main_thread);
266 MinidumpContext* context = main_thread->GetContext();
343 MinidumpThread* main_thread = thread_list->GetThreadAtIndex(0); local
344 ASSERT_TRUE(main_thread);
345 MinidumpContext* context = main_thread->GetContext();
  /external/squashfs-tools/squashfs-tools/
restore.c 49 extern pthread_t reader_thread, writer_thread, main_thread;
120 pthread_cancel(main_thread);
121 pthread_join(main_thread, NULL);
mksquashfs.c 281 pthread_t reader_thread, writer_thread, main_thread; variable
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
trace_event_stats_unittest.py 39 self.main_thread = self.renderer_process.GetOrCreateThread(tid=11)
46 return self.main_thread
rendering_frame_unittest.py 109 main_thread = process.GetOrCreateThread(tid=11)
115 main_thread.PushSlice(event)
  /ndk/sources/host-tools/make-3.81/
commands.c 431 extern HANDLE main_thread;
436 if (main_thread)
438 DWORD susp_count = SuspendThread (main_thread);
513 if (main_thread)
514 CloseHandle (main_thread);
job.c 39 HANDLE main_thread; variable
632 if (!main_thread)
636 if (!DuplicateHandle (hcPID, hcTID, hcPID, &main_thread, 0,
646 main_thread));
    [all...]
  /external/compiler-rt/lib/asan/
asan_rtl.cc 532 AsanThread *main_thread = AsanThread::Create( local
535 CHECK_EQ(0, main_thread->tid());
536 SetCurrentThread(main_thread);
537 main_thread->ThreadStart(internal_getpid(),
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_thread_registry_test.cc 133 ThreadContextBase *main_thread = registry->GetThreadLocked(0); local
134 EXPECT_EQ(main_thread, registry->FindThreadContextLocked(
  /external/compiler-rt/lib/msan/
msan.cc 418 MsanThread *main_thread = MsanThread::Create(nullptr, nullptr); local
419 SetCurrentThread(main_thread);
420 main_thread->ThreadStart();
  /bionic/tests/
stdlib_test.cpp 223 pthread_t main_thread = reinterpret_cast<pthread_t>(arg); local
224 pthread_join(main_thread, NULL);
pthread_test.cpp 308 pthread_t main_thread; member in struct:TestBug37410
313 data.main_thread = pthread_self();
336 pthread_join(data->main_thread, NULL);
    [all...]

Completed in 2211 milliseconds