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

1 2 3 4 5

  /external/compiler-rt/test/tsan/
suppressions_race2.cc.supp 1 race:Thread2
free_race.c.supp 2 race:^Thread2$
thread_name.cc 25 void *Thread2(void *x) {
27 pthread_setname_np(pthread_self(), "Thread2");
29 AnnotateThreadName(__FILE__, __LINE__, "Thread2");
40 pthread_create(&t[1], NULL, Thread2, NULL);
47 // CHECK: Thread T2 'Thread2'
free_race.c 18 void *Thread2(void *x) {
32 Thread2(0);
40 // CHECK-NOZUPP: #0 Thread2
45 // CHECK-NOZUPP: SUMMARY: ThreadSanitizer: heap-use-after-free{{.*}}Thread2
47 // CHECK-SUPP: 1 race:^Thread2$
fd_pipe_race.cc 12 void *Thread2(void *x) {
24 pthread_create(&t[1], NULL, Thread2, NULL);
32 // CHECK: #1 Thread2
fd_stdout_race.cc 19 void *Thread2(void *x) {
30 pthread_create(&t[1], NULL, Thread2, NULL);
39 // CHECK: #0 Thread2
atomic_stack.cc 12 void *Thread2(void *x) {
22 pthread_create(&t[1], NULL, Thread2, NULL);
default_options.cc 16 void *Thread2(void *x) {
24 pthread_create(&t[1], NULL, Thread2, NULL);
race_on_barrier.c 18 void *Thread2(void *x) {
28 Thread2(0);
simple_race.c 12 void *Thread2(void *x) {
22 pthread_create(&t[1], NULL, Thread2, NULL);
simple_race.cc 12 void *Thread2(void *x) {
22 pthread_create(&t[1], NULL, Thread2, NULL);
stack_race2.cc 4 void *Thread2(void *a) {
13 pthread_create(&t, 0, Thread2, &Var);
suppress_same_address.cc 14 void *Thread2(void *x) {
26 Thread2(0);
suppressions_global.cc 12 void *Thread2(void *x) {
20 pthread_create(&t[1], NULL, Thread2, NULL);
aligned_vs_unaligned_race.cc 15 void *Thread2(void *x) {
28 pthread_create(&t[1], NULL, Thread2, NULL);
fd_close_norace.cc 14 void *Thread2(void *x) {
25 pthread_create(&t[1], NULL, Thread2, NULL);
  /external/ltrace/testsuite/ltrace.main/
main-threaded.c 19 pthread_t thread2; local
22 pthread_create (&thread2, NULL, th_main, "bbb");
25 pthread_join (thread2, NULL);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
MonitorTestCase.java 56 private TestThread<Monitor> thread2; field in class:MonitorTestCase
66 tearDownStack.addTearDown(thread2 = new TestThread<Monitor>(monitor, "TestThread #2"));
103 thread2.callAndAssertBlocks(enter());
105 thread2.assertPriorCallReturns(enter());
110 thread2.callAndAssertReturns(false, tryEnter());
112 thread2.callAndAssertReturns(false, tryEnter());
114 thread2.callAndAssertReturns(false, tryEnter());
116 thread2.callAndAssertReturns(true, tryEnter());
136 thread2.callAndAssertReturns(enterCount != 0, "isOccupied");
137 thread2.callAndAssertReturns(false, "isOccupiedByCurrentThread")
    [all...]
  /art/test/144-static-field-sigquit/src/
Main.java 21 Thread thread2 = new Thread(new SynchronizedUse()); local
26 thread2.start();
29 thread2.join();
  /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/ltrace/testsuite/ltrace.torture/
vfork-thread.c 45 pthread_t thread2; local
46 pthread_create (&thread2, NULL, &routine2, NULL);
47 pthread_join (thread2, NULL);
  /external/valgrind/drd/tests/
rwlock_race.c 38 pthread_t thread2; local
48 pthread_create(&thread2, 0, thread_func, 0);
50 pthread_join(thread2, 0);
  /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 187 milliseconds

1 2 3 4 5