HomeSort by relevance Sort by last modified time
    Searched full:thread2 (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/compiler-rt/lib/tsan/lit_tests/
suppressions_race2.cc.supp 1 race:Thread2
free_race.c.supp 2 race:^Thread2$
thread_name.cc 17 void *Thread2(void *x) {
19 pthread_setname_np(pthread_self(), "Thread2");
21 AnnotateThreadName(__FILE__, __LINE__, "Thread2");
30 pthread_create(&t[1], NULL, Thread2, NULL);
37 // CHECK: Thread T2 'Thread2'
suppress_same_address.cc 13 void *Thread2(void *x) {
23 Thread2(0);
free_race.c 21 void *Thread2(void *x) {
34 Thread2(0);
42 // CHECK-NOZUPP: #0 Thread2
47 // CHECK-NOZUPP: SUMMARY: ThreadSanitizer: heap-use-after-free{{.*}}Thread2
49 // CHECK-SUPP: 1 race:^Thread2$
fd_pipe_race.cc 13 void *Thread2(void *x) {
24 pthread_create(&t[1], NULL, Thread2, NULL);
32 // CHECK: #1 Thread2
fd_stdout_race.cc 21 void *Thread2(void *x) {
30 pthread_create(&t[1], NULL, Thread2, NULL);
39 // CHECK: #0 Thread2
atomic_stack.cc 13 void *Thread2(void *x) {
21 pthread_create(&t[1], NULL, Thread2, NULL);
race_on_barrier.c 16 void *Thread2(void *x) {
25 Thread2(0);
race_on_barrier2.c 16 void *Thread2(void *x) {
26 Thread2(0);
simple_race.c 12 void *Thread2(void *x) {
20 pthread_create(&t[1], NULL, Thread2, NULL);
simple_race.cc 12 void *Thread2(void *x) {
20 pthread_create(&t[1], NULL, Thread2, NULL);
stack_race2.cc 6 void *Thread2(void *a) {
14 pthread_create(&t, 0, Thread2, &Var);
suppressions_global.cc 12 void *Thread2(void *x) {
20 pthread_create(&t[1], NULL, Thread2, NULL);
tls_race2.cc 6 void *Thread2(void *a) {
14 pthread_create(&t, 0, Thread2, &Var);
aligned_vs_unaligned_race.cc 17 void *Thread2(void *x) {
27 pthread_create(&t[1], NULL, Thread2, NULL);
  /external/chromium_org/third_party/sqlite/src/test/
thread2.test 14 # $Id: thread2.test,v 1.3 2008/10/07 15:25:49 drh Exp $
45 do_test thread2-1.2 {
53 do_test thread2-1.3 {
57 do_test thread2-1.4 {
60 do_test thread2-1.5 {
64 do_test thread2-1.6 {
68 do_test thread2-1.7 {
72 do_test thread2-1.8 {
75 do_test thread2-1.9 {
82 do_test thread2-2.2
    [all...]
  /dalvik/tests/033-class-init-deadlock/src/
Main.java 13 Thread thread1, thread2; local
17 thread2 = new Thread() { public void run() { new B(); } };
19 // Give thread1 a chance to start before starting thread2.
21 thread2.start();
27 thread2.interrupt();
  /external/libcap-ng/libcap-ng-0.7/src/test/
thread_test.c 9 pthread_t thread1, thread2; variable
32 printf("thread2 getting capabilities\n");
50 pthread_create(&thread2, NULL, thread2_main, NULL);
  /external/valgrind/main/drd/tests/
rwlock_race.c 38 pthread_t thread2; local
48 pthread_create(&thread2, 0, thread_func, 0);
50 pthread_join(thread2, 0);
  /external/valgrind/unittest/output_tests/
fun_hist_test.cc 26 void Thread2() {
34 MyThread t2(Thread2, NULL, "test-thread-2");
output_test1.cc 11 void Thread2() { // Runs in thread named 'test-thread-2'.
20 MyThread t2(Thread2, NULL, "test-thread-2");
  /art/test/033-class-init-deadlock/src/
Main.java 27 Thread thread1, thread2; local
31 thread2 = new Thread() { public void run() { new B(); } };
33 // Give thread1 a chance to start before starting thread2.
35 thread2.start();
41 thread2.interrupt();
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogRecordTest.java 60 // Create and start the thread2
61 MockThread thread2 = new MockThread(); local
62 thread2.start();
64 thread2.join();
71 assertTrue(lr.getThreadID() != thread2.lr.getThreadID());
72 assertTrue(thread.lr.getThreadID() != thread2.lr.getThreadID());
  /external/compiler-rt/lib/asan/tests/
asan_racy_double_free_test.cc 16 void *Thread2(void *unused) {
29 pthread_create(&t[1], 0, Thread2, 0);

Completed in 2602 milliseconds

1 2 3 4