Searched refs:thread (Results 1 - 25 of 999) sorted by relevance

1234567891011>>

/external/valgrind/memcheck/tests/solaris/
H A Dthr_daemon_exit_libc.stdout.exp1 DAEMON thread #0 running
2 DAEMON thread #1 running
3 DAEMON thread #2 running
4 DAEMON thread #3 running
5 DAEMON thread #4 running
6 non-daemon thread #0 running
7 non-daemon thread #1 running
8 non-daemon thread #2 running
9 non-daemon thread #3 running
10 non-daemon thread #
[all...]
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/
H A Dconstr.fail.cpp10 // <thread>
12 // class thread
14 // explicit thread(_Fp&& __f, _Args&&... __args);
16 // if decay<F>::type is the same type as std::thread.
19 #include <thread>
24 volatile std::thread t1;
25 std::thread t2 ( t1, 1, 2.0 );
H A Ddefault.pass.cpp12 // <thread>
14 // class thread
16 // thread();
18 #include <thread>
23 std::thread t;
24 assert(t.get_id() == std::thread::id());
/external/valgrind/none/tests/
H A Dpth_blockedsig.stdout.exp0 thread CHILD sending SIGUSR1 to thread MAIN
H A Dpth_once.stdout.exp2 identify_yourself: Hi, I'm a thread
3 identify_yourself: Hi, I'm a thread
4 identify_yourself: Hi, I'm a thread
5 identify_yourself: Hi, I'm a thread
6 identify_yourself: Hi, I'm a thread
7 identify_yourself: Hi, I'm a thread
8 identify_yourself: Hi, I'm a thread
9 identify_yourself: Hi, I'm a thread
10 identify_yourself: Hi, I'm a thread
11 identify_yourself: Hi, I'm a thread
[all...]
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.static/
H A Dhardware_concurrency.pass.cpp12 // <thread>
14 // class thread
18 #include <thread>
23 assert(std::thread::hardware_concurrency() > 0);
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.id/
H A Ddefault.pass.cpp12 // <thread>
14 // class thread::id
18 #include <thread>
23 std::thread::id id;
24 assert(id == std::thread::id());
H A Dcopy.pass.cpp12 // <thread>
14 // class thread::id
18 #include <thread>
23 std::thread::id id0;
24 std::thread::id id1 = id0;
/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/valgrind/none/tests/linux/
H A Dbrk-overflow1.stderr.exp2 brk segment overflow in thread #1: can't grow to 0x........
H A Dbrk-overflow2.stderr.exp2 brk segment overflow in thread #1: can't grow to 0x........
3 brk segment overflow in thread #1: can't grow to 0x........
4 brk segment overflow in thread #1: can't grow to 0x........
/external/lzma/CPP/Windows/
H A DThread.h14 ::CThread thread; member in class:NWindows::CThread
16 CThread() { Thread_Construct(&thread); }
18 bool IsCreated() { return Thread_WasCreated(&thread) != 0; }
19 WRes Close() { return Thread_Close(&thread); }
21 { return Thread_Create(&thread, startAddress, parameter); }
22 WRes Wait() { return Thread_Wait(&thread); }
25 operator HANDLE() { return thread; }
26 void Attach(HANDLE handle) { thread = handle; }
27 HANDLE Detach() { HANDLE h = thread; thread
[all...]
/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/deqp/framework/delibs/destream/
H A DdeStreamCpyThread.c21 * \brief Stream copying thread
30 deStreamCpyThread* thread = (deStreamCpyThread*)arg; local
31 deUint8* buffer = malloc(sizeof(deUint8) * (size_t)thread->bufferSize);
39 readResult = deInStream_read(thread->input, buffer, thread->bufferSize, &read);
44 deOutStream_write(thread->output, buffer, read - written, &wrote);
56 deOutStream_flush(thread->output);
62 deStreamCpyThread* thread = malloc(sizeof(deStreamCpyThread)); local
64 DE_ASSERT(thread);
68 thread
76 deStreamCpyThread_destroy(deStreamCpyThread* thread) argument
83 deStreamCpyThread_join(deStreamCpyThread* thread) argument
[all...]
/external/valgrind/drd/tests/
H A Dpth_detached3.c1 /* Invoke pthread_detach() with an invalid thread ID. */
15 pthread_t thread; local
17 pthread_create(&thread, NULL, thread_func, NULL);
18 pthread_join(thread, NULL);
20 /* Invoke pthread_detach() with the thread ID of a joined thread. */
21 pthread_detach(thread);
23 /* Invoke pthread_detach() with an invalid thread ID. */
24 pthread_detach(thread + 8);
/external/clang/test/SemaCXX/
H A Ddeclspec-thread.cpp4 __thread __declspec(thread) int a; // expected-error {{already has a thread-local storage specifier}}
5 __declspec(thread) __thread int b; // expected-error {{already has a thread-local storage specifier}}
6 __declspec(thread) int c(); // expected-warning {{only applies to variables}}
7 __declspec(thread) int d;
10 __declspec(thread) int e = foo();
12 __declspec(thread) int e = foo(); // expected-error {{must be a constant expression}} expected-note {{thread_local}}
17 __declspec(thread) HasCtor f;
19 __declspec(thread) HasCto
[all...]
/external/autotest/client/site_tests/security_ptraceRestrictions/src/
H A DMakefile9 EXECS=sleeper thread-prctl
16 thread-%: thread-%.c
/external/libcxx/test/std/thread/thread.threads/thread.thread.this/
H A Dget_id.pass.cpp12 // <thread>
14 // thread::id this_thread::get_id();
16 #include <thread>
21 std::thread::id id = std::this_thread::get_id();
22 assert(id != std::thread::id());
/external/autotest/client/tests/monotonic_time/src/
H A Dthreads.c19 typedef struct thread { struct
20 pthread_t thread; member in struct:thread
31 * Helper function to run a thread on a specific set of CPUs.
35 thread_t *thread = arg; local
38 if (sched_setaffinity(0, sizeof thread->cpus, &thread->cpus) < 0)
41 result = thread->func(thread->arg);
58 thread_t *thread; local
64 thread
93 thread_t *thread; local
[all...]
/external/webrtc/webrtc/base/
H A Dplatform_thread_unittest.cc26 rtc::PlatformThread thread(&NullRunFunction, nullptr, "PlatformThreadTest");
27 thread.Start();
28 thread.Stop();
41 rtc::PlatformThread thread(&SetFlagRunFunction, &flag, "RunFunctionIsCalled");
42 thread.Start();
45 thread.Stop();
47 // We expect the thread to have run at least once.
/external/compiler-rt/test/tsan/
H A Dbench_acquire_release.cc11 void thread(int tid) { function
17 start_thread_group(bench_nthread, thread);
/external/deqp/framework/delibs/dethread/unix/
H A DdeThreadUnix.c21 * \brief Unix implementation of thread management.
51 pthread_t thread; member in struct:Thread_s
60 Thread* thread = (Thread*)entryPtr; local
61 deThreadFunc func = thread->func;
62 void* arg = thread->arg;
64 /* Start actual thread. */
73 Thread* thread = (Thread*)deCalloc(sizeof(Thread)); local
75 if (!thread)
78 thread->func = func;
79 thread
112 Thread* thread = (Thread*)threadptr; local
130 Thread* thread = (Thread*)threadptr; local
[all...]
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/
H A Dtypes.pass.cpp12 // <thread>
14 // class thread
21 #include <thread>
26 static_assert((std::is_same<std::thread::native_handle_type, pthread_t>::value), "");
/external/libcxx/test/std/thread/
H A Dmacro.pass.cpp12 // <thread>
16 #include <thread>

Completed in 956 milliseconds

1234567891011>>