Searched defs:thread (Results 1 - 25 of 399) sorted by relevance

1234567891011>>

/external/compiler-rt/test/tsan/
H A Dbench_acquire_only.cc11 void thread(int tid) { function
18 start_thread_group(bench_nthread, thread);
H A Dbench_acquire_release.cc11 void thread(int tid) { function
17 start_thread_group(bench_nthread, thread);
H A Dbench_rwmutex.cc11 void thread(int tid) { function
24 start_thread_group(bench_nthread, thread);
H A Dbench_single_writer.cc11 void thread(int tid) { function
22 start_thread_group(bench_nthread, thread);
H A Dsetuid.c6 // Setuid call used to hang because the background tsan thread did not handle
10 static void *thread(void *arg) { function
17 // Create another thread just for completeness of the picture.
19 pthread_create(&th, 0, thread, 0);
H A Dbench_local_mutex.cc12 void thread(int tid) { function
26 start_thread_group(bench_nthread, thread);
H A Dbench_release_only.cc12 void thread(int tid) { function
22 start_thread_group(bench_nthread, thread);
H A Dbench_mutex.cc13 void thread(int tid) { function
27 start_thread_group(2, thread);
H A Dbench_ten_mutexes.cc12 void thread(int tid) { function
25 start_thread_group(2, thread);
/external/llvm/include/llvm/Support/
H A Dthread.h1 //===-- llvm/Support/thread.h - Wrapper for <thread> ------------*- C++ -*-===//
10 // This header is a wrapper for <thread> that works around problems with the
11 // MSVC headers when exceptions are disabled. It also provides llvm::thread,
12 // which is either a typedef of std::thread or a replacement that calls the
34 #include <thread>
41 typedef std::thread thread; typedef in namespace:llvm
50 struct thread {
51 thread() {}
[all...]
/external/parameter-framework/asio/include/asio/detail/
H A Dthread.hpp2 // detail/thread.hpp
27 typedef posix_thread thread; typedef in namespace:asio::detail
29 typedef std_thread thread;
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dthread.hpp2 // detail/thread.hpp
27 typedef posix_thread thread; typedef in namespace:asio::detail
29 typedef std_thread thread;
/external/testng/src/test/java/test/thread/
H A DFactorySampleTest.java1 package test.thread;
H A DSample1.java1 package test.thread;
H A DThreadPoolSizeSampleTest.java1 package test.thread;
H A DThreadTest.java1 package test.thread;
H A DTest1Test.java1 package test.thread;
H A DTest2Test.java1 package test.thread;
H A DThreadPoolSizeBase.java1 package test.thread;
H A DThreadPoolSizeTest.java1 package test.thread;
/external/valgrind/none/tests/solaris/
H A Dthreads_exitall.c10 /* Wait for main thread to block. */
21 pthread_t thread; local
24 if (pthread_create(&thread, NULL, thread_proc, NULL)) {
29 if (pthread_join(thread, &status)) {
/external/chromium-trace/catapult/third_party/Paste/paste/util/
H A Dthreadinglocal.py4 Implementation of thread-local storage, for Python versions that don't
5 have thread local storage natively.
11 # No threads, so "thread local" means process-global
19 import thread namespace
25 def __getattr__(self, attr, g=thread.get_ident):
30 "No variable %s defined for the thread %s"
33 def __setattr__(self, attr, value, g=thread.get_ident):
36 def __delattr__(self, attr, g=thread.get_ident):
41 "No variable %s defined for thread %s"
/external/deqp/framework/delibs/destream/
H A DdeStreamCpyThread.h23 * \brief Stream copying thread
36 deThread thread; member in struct:deStreamCpyThread_s
41 void deStreamCpyThread_destroy (deStreamCpyThread* thread);
43 void deStreamCpyThread_join (deStreamCpyThread* thread);
/external/elfutils/libdwfl/
H A Ddwfl_frame_regs.c32 dwfl_thread_state_registers (Dwfl_Thread *thread, int firstreg, argument
35 Dwfl_Frame *state = thread->unwound;
49 dwfl_thread_state_register_pc (Dwfl_Thread *thread, Dwarf_Word pc)
51 Dwfl_Frame *state = thread->unwound;
/external/testng/src/main/java/org/testng/internal/thread/
H A DIFutureResult.java1 package org.testng.internal.thread;

Completed in 1430 milliseconds

1234567891011>>