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

1234567891011>>

/external/libcxx/test/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.cpp10 // <thread>
12 // class thread
14 // thread();
16 #include <thread>
21 std::thread t;
22 assert(t.get_id() == std::thread::id());
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.constr/Android.mk
19 test_name := thread/thread.threads/thread.thread
[all...]
/external/valgrind/main/none/tests/
H A Dpth_blockedsig.stdout.exp0 thread CHILD sending SIGUSR1 to thread MAIN
/external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.member/
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.member/Android.mk
19 test_name := thread/thread.threads/thread.thread
[all...]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_getunique_np.c5 * This translation unit implements non-portable thread functions.
44 pthread_getunique_np (pthread_t thread) argument
46 return ((ptw32_thread_t*)thread.p)->seqNumber;
H A Dpthread_getw32threadhandle_np.c5 * This translation unit implements non-portable thread functions.
43 * Returns the win32 thread handle that the POSIX
44 * thread "thread" is running as.
47 * win32 specific attributes of the thread.
50 pthread_getw32threadhandle_np (pthread_t thread) argument
52 return ((ptw32_thread_t *)thread.p)->threadH;
58 * Returns the win32 thread id that the POSIX
59 * thread "thread" i
62 pthread_getw32threadid_np(pthread_t thread) argument
[all...]
/external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.static/
H A Dhardware_concurrency.pass.cpp10 // <thread>
12 // class thread
16 #include <thread>
21 assert(std::thread::hardware_concurrency() > 0);
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.static/Android.mk
19 test_name := thread/thread.threads/thread.thread
[all...]
/external/bluetooth/bluedroid/osi/test/
H A Dthread_test.cpp4 #include "thread.h"
9 thread_t *thread = thread_new("test_thread"); local
10 ASSERT_TRUE(thread != NULL);
11 thread_free(thread);
15 thread_t *thread = thread_new("test_thread"); local
16 thread_free(thread);
20 thread_t *thread = thread_new("test_name"); local
21 ASSERT_STREQ(thread_name(thread), "test_name");
22 thread_free(thread);
26 thread_t *thread local
32 thread_t *thread = thread_new("0123456789abcdefg"); local
[all...]
/external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.algorithm/
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.algorithm/Android.mk
19 test_name := thread/thread.threads/thread.thread
[all...]
/external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.assign/
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.assign/Android.mk
19 test_name := thread/thread.threads/thread.thread
[all...]
/external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.destr/
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.destr/Android.mk
19 test_name := thread/thread.threads/thread.thread
[all...]
/external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.id/
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.id/Android.mk
19 test_name := thread/thread.threads/thread.thread
[all...]
H A Ddefault.pass.cpp10 // <thread>
12 // class thread::id
16 #include <thread>
21 std::thread::id id;
22 assert(id == std::thread::id());
/external/qemu/distrib/sdl-1.2.15/src/thread/generic/
H A DSDL_systhread.c29 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args) argument
45 void SDL_SYS_WaitThread(SDL_Thread *thread) argument
50 void SDL_SYS_KillThread(SDL_Thread *thread) argument
/external/clang/test/SemaCXX/
H A Ddeclspec-thread.cpp3 __thread __declspec(thread) int a; // expected-error {{already has a thread-local storage specifier}}
4 __declspec(thread) __thread int b; // expected-error {{already has a thread-local storage specifier}}
5 __declspec(thread) int c(); // expected-warning {{only applies to variables}}
6 __declspec(thread) int d;
8 __declspec(thread) int e = foo(); // expected-error {{must be a constant expression}} expected-note {{thread_local}}
11 __declspec(thread) HasCtor f; // expected-error {{must be a constant expression}} expected-note {{thread_local}}
14 __declspec(thread) HasDtor g; // expected-error {{non-trivial destruction}} expected-note {{thread_local}}
20 __declspec(thread) HasDefaultedDefaultCto
[all...]
/external/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/Android.mk
19 test_name := thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread
[all...]
/external/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.recursive/
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.recursive/Android.mk
19 test_name := thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread
[all...]
/external/deqp/framework/delibs/dethread/unix/
H A DdeThreadUnix.c21 * \brief Unix implementation of thread management.
40 pthread_t thread; member in struct:Thread_s
49 Thread* thread = (Thread*)entryPtr; local
50 deThreadFunc func = thread->func;
51 void* arg = thread->arg;
53 /* Start actual thread. */
62 Thread* thread = (Thread*)deCalloc(sizeof(Thread)); local
64 if (!thread)
67 thread->func = func;
68 thread
101 Thread* thread = (Thread*)threadptr; local
119 Thread* thread = (Thread*)threadptr; local
[all...]
/external/libcxx/test/thread/thread.threads/thread.thread.class/
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/Android.mk
19 test_name := thread/thread.threads/thread.thread.class/types
/external/qemu/distrib/sdl-1.2.15/src/thread/dc/
H A DSDL_systhread.c30 #include <kos/thread.h>
32 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args) argument
34 thread->handle = thd_create(SDL_RunThread,args);
35 if (thread->handle == NULL) {
36 SDL_SetError("Not enough resources to create thread");
52 void SDL_SYS_WaitThread(SDL_Thread *thread) argument
54 thd_wait(thread->handle);
57 void SDL_SYS_KillThread(SDL_Thread *thread) argument
59 thd_destroy(thread->handle);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dthread.h9 struct thread { struct
20 bool dead; /* if set thread has exited */
29 struct thread *thread__new(pid_t pid, pid_t tid);
30 void thread__delete(struct thread *self);
31 static inline void thread__exited(struct thread *thread) argument
33 thread->dead = true;
36 int thread__set_comm(struct thread *self, const char *comm);
37 int thread__comm_len(struct thread *self);
38 void thread__insert_map(struct thread *sel
56 thread__priv(struct thread *thread) argument
61 thread__set_priv(struct thread *thread, void *p) argument
[all...]
/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/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
H A DAndroid.mk17 test_makefile := external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/Android.mk
19 test_name := thread/thread.mutex/thread.lock/thread.lock.shared/thread
[all...]

Completed in 3461 milliseconds

1234567891011>>