HomeSort by relevance Sort by last modified time
    Searched defs:Thread (Results 26 - 50 of 456) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/deqp/framework/delibs/decpp/
deThread.cpp 21 * \brief Thread base class.
35 * \brief Thread constructor.
37 Thread::Thread (void)
44 * \brief Destroy thread.
46 * If the thread is currently running, OS is instructed to destroy it
49 Thread::~Thread (void)
56 * \brief Set thread priority.
62 * Sets priority for the thread start(). setPriority() has no effec
    [all...]
deThread.hpp 23 * \brief Thread base class.
35 * Thread provides base class for implementing threads. To leverage that
36 * functionality, inherit Thread in your class and implement virtual run()
39 * \note Thread class is not thread-safe, i.e. thread control functions
43 class Thread
46 Thread (void);
47 virtual ~Thread (void);
55 /** Thread entry point. *
    [all...]
  /hardware/intel/common/wrs_omxil_core/utils/src/
thread.cpp 2 * thread.cpp, thread class
20 #include <thread.h>
22 Thread::Thread()
31 Thread::Thread(RunnableInterface *r)
40 Thread::~Thread()
47 int Thread::Start(void
    [all...]
  /system/extras/memory_replay/
Thread.cpp 20 #include "Thread.h"
22 Thread::Thread() {
26 Thread::~Thread() {
30 void Thread::WaitForReady() {
38 void Thread::WaitForPending() {
46 void Thread::SetPending() {
53 void Thread::ClearPending() {
60 Action* Thread::CreateAction(uintptr_t key_pointer, const char* type, const char* line)
    [all...]
  /external/compiler-rt/test/tsan/Darwin/
osspinlock-norace.cc 9 void *Thread(void *x) {
20 pthread_create(&t[0], NULL, Thread, NULL);
21 pthread_create(&t[1], NULL, Thread, NULL);
  /external/compiler-rt/test/tsan/
benign_race.cc 16 void *Thread(void *x) {
31 pthread_create(&t, 0, Thread, 0);
fd_dup_race.cc 11 void *Thread(void *x) {
25 pthread_create(&th, 0, Thread, 0);
ignore_lib_lib.h 10 void *Thread(void *p) {
19 pthread_create(&t, 0, Thread, 0);
ignore_malloc.cc 13 void *Thread(void *a) {
23 pthread_create(&t, 0, Thread, 0);
ignore_sync.cc 11 void *Thread(void *x) {
22 pthread_create(&t, 0, Thread, 0);
race_top_suppression.cc 13 void *Thread(void *x) {
22 pthread_create(&t, 0, Thread, 0);
sleep_sync.cc 10 void *Thread(void *p) {
12 MySleep(); // Assume the main thread has done the write.
20 pthread_create(&t, 0, Thread, 0);
32 // CHECK-NEXT: #2 Thread
stack_race2.cc 10 void *Thread(void *a) {
23 pthread_create(&t, 0, Thread, 0);
28 // CHECK: Location is stack of thread T1.
tls_race2.cc 10 void *Thread(void *a) {
23 pthread_create(&t, 0, Thread, 0);
28 // CHECK-Linux: Location is TLS of thread T1.
29 // CHECK-FreeBSD: Location is TLS of thread T1.
fd_dup_norace2.cc 16 void *Thread(void *x) {
48 pthread_create(&th, 0, Thread, 0);
global_race3.cc 11 void *Thread(void *a) {
21 pthread_create(&t, 0, Thread, 0);
java_alloc.cc 16 void *Thread(void *p) {
25 pthread_create(&th, 0, Thread, (void*)(jheap + kHeapSize / 4));
java_finalizer.cc 4 void *Thread(void *p) {
19 pthread_create(&th, 0, Thread, (void*)jheap);
java_race.cc 4 void *Thread(void *p) {
18 pthread_create(&th, 0, Thread, (void*)jheap);
java_symbolization.cc 19 void *Thread(void *p) {
33 pthread_create(&th, 0, Thread, (void*)jheap);
must_deadlock.cc 15 void *Thread(void *p) {
35 pthread_create(&t, 0, Thread, 0);
race_top_suppression1.cc 17 void *Thread(void *x) {
26 pthread_create(&t, 0, Thread, 0);
static_init1.cc 11 void *Thread(void *x) {
20 pthread_create(&t[0], 0, Thread, 0);
21 pthread_create(&t[1], 0, Thread, 0);
static_init2.cc 19 void *Thread(void *x) {
26 pthread_create(&t[0], 0, Thread, 0);
27 pthread_create(&t[1], 0, Thread, 0);
  /external/compiler-rt/lib/tsan/benchmarks/
start_many_threads.cc 19 void* Thread(void *unused) {
40 int status = pthread_create(&t[i], 0, Thread, (void*)i);

Completed in 413 milliseconds

12 3 4 5 6 7 8 91011>>