HomeSort by relevance Sort by last modified time
    Searched defs:Thread (Results 1 - 25 of 248) sorted by null

1 2 3 4 5 6 7 8 910

  /external/compiler-rt/lib/tsan/lit_tests/
atomic_free.cc 5 void *Thread(void *a) {
13 pthread_create(&t, 0, Thread, a);
atomic_free2.cc 5 void *Thread(void *a) {
14 pthread_create(&t, 0, Thread, a);
fd_close_norace2.cc 8 void *Thread(void *x) {
21 pthread_create(&t, 0, Thread, 0);
global_race.cc 8 void *Thread(void *a) {
16 pthread_create(&t, 0, Thread, 0);
heap_race.cc 6 void *Thread(void *a) {
14 pthread_create(&t, NULL, Thread, p);
ignore_race.cc 13 void *Thread(void *x) {
24 pthread_create(&t, 0, Thread, 0);
race_on_mutex2.c 7 void *Thread(void *x) {
17 pthread_create(&t, 0, Thread, &Mtx);
race_on_read.cc 12 void *Thread(void *x) {
21 pthread_create(&t[0], NULL, Thread, NULL);
22 pthread_create(&t[1], NULL, Thread, NULL);
sleep_sync2.cc 7 void *Thread(void *p) {
15 pthread_create(&t, 0, Thread, 0);
stack_race.cc 5 void *Thread(void *a) {
13 pthread_create(&t, 0, Thread, &Var);
19 // CHECK: Location is stack of main thread.
thread_end_with_ignore.cc 7 void *Thread(void *x) {
14 pthread_create(&t, 0, Thread, 0);
18 // CHECK: ThreadSanitizer: thread T1 finished with ignores enabled
thread_leak.c 5 void *Thread(void *x) {
11 pthread_create(&t, 0, Thread, 0);
17 // CHECK-NOT: WARNING: ThreadSanitizer: thread leak
thread_leak2.c 5 void *Thread(void *x) {
11 pthread_create(&t, 0, Thread, 0);
17 // CHECK-NOT: WARNING: ThreadSanitizer: thread leak
thread_leak3.c 5 void *Thread(void *x) {
11 pthread_create(&t, 0, Thread, 0);
16 // CHECK: WARNING: ThreadSanitizer: thread leak
17 // CHECK: SUMMARY: ThreadSanitizer: thread leak{{.*}}main
thread_leak4.c 6 void *Thread(void *x) {
13 pthread_create(&t, 0, Thread, 0);
18 // CHECK-NOT: WARNING: ThreadSanitizer: thread leak
thread_leak5.c 5 void *Thread(void *x) {
12 pthread_create(&t, 0, Thread, 0);
18 // CHECK: WARNING: ThreadSanitizer: thread leak
19 // CHECK: And 4 more similar thread leaks
tls_race.cc 5 void *Thread(void *a) {
13 pthread_create(&t, 0, Thread, &Var);
19 // CHECK: Location is TLS of main thread.
benign_race.cc 18 void *Thread(void *x) {
31 pthread_create(&t, 0, Thread, 0);
sleep_sync.cc 11 void *Thread(void *p) {
12 MySleep(); // Assume the main thread has done the write.
19 pthread_create(&t, 0, Thread, 0);
30 // CHECK-NEXT: #2 Thread
stack_race2.cc 11 void *Thread(void *a) {
22 pthread_create(&t, 0, Thread, 0);
27 // CHECK: Location is stack of thread T1.
tls_race2.cc 11 void *Thread(void *a) {
22 pthread_create(&t, 0, Thread, 0);
27 // CHECK: Location is TLS of thread T1.
  /external/chromium_org/third_party/re2/util/
thread.cc 8 #include "util/thread.h"
10 Thread::Thread() {
16 Thread::~Thread() {
20 Thread* t = (Thread*)v;
25 void Thread::Start() {
33 void Thread::Join() {
41 void Thread::SetJoinable(bool j)
    [all...]
thread.h 10 class Thread {
12 Thread();
13 virtual ~Thread();
  /external/regex-re2/util/
thread.cc 8 #include "util/thread.h"
10 Thread::Thread() {
16 Thread::~Thread() {
20 Thread* t = (Thread*)v;
25 void Thread::Start() {
33 void Thread::Join() {
41 void Thread::SetJoinable(bool j)
    [all...]
thread.h 10 class Thread {
12 Thread();
13 virtual ~Thread();

Completed in 3692 milliseconds

1 2 3 4 5 6 7 8 910