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

1 2 3 4 5

  /external/compiler-rt/test/tsan/
suppressions_race.cc.supp 1 race:Thread1
atomic_stack.cc 6 void *Thread1(void *x) {
21 pthread_create(&t[0], NULL, Thread1, NULL);
30 // CHECK: #1 Thread1
thread_name.cc 18 void *Thread1(void *x) {
20 AnnotateThreadName(__FILE__, __LINE__, "Thread1");
39 pthread_create(&t[0], NULL, Thread1, NULL);
46 // CHECK: Thread T1 'Thread1'
tiny_race.c 6 void *Thread1(void *x) {
15 pthread_create(&t, 0, Thread1, 0);
mop1.c 7 // - thread1 reads X, this read is concurrent with the write in main thread
8 // Write in main thread and read in thread1 should be detected as a race.
9 // Previously tsan replaced write by main thread with read by thread1,
14 void *Thread1(void *x) {
30 pthread_create(&t[0], 0, Thread1, 0);
fd_pipe_race.cc 6 void *Thread1(void *x) {
23 pthread_create(&t[0], NULL, Thread1, NULL);
35 // CHECK: #1 Thread1
fd_stdout_race.cc 9 void *Thread1(void *x) {
29 pthread_create(&t[0], NULL, Thread1, NULL);
37 // CHECK: #0 Thread1
race_on_write.cc 10 void *Thread1(void *x) {
26 pthread_create(&t[0], NULL, Thread1, NULL);
38 // CHECK: #0 Thread1
static_init4.cc 21 void *Thread1(void *x) {
30 pthread_create(&t[0], 0, Thread1, 0);
31 pthread_create(&t[1], 0, Thread1, 0);
static_init5.cc 26 void *Thread1(void *x) {
35 pthread_create(&t[0], 0, Thread1, 0);
36 pthread_create(&t[1], 0, Thread1, 0);
static_init6.cc 26 void *Thread1(void *x) {
35 pthread_create(&t[0], 0, Thread1, 0);
36 pthread_create(&t[1], 0, Thread1, 0);
suppress_same_stacks.cc 7 void *Thread1(void *x) {
19 pthread_create(&t, 0, Thread1, 0);
20 Thread1(0);
write_in_reader_lock.cc 7 void *Thread1(void *p) {
22 pthread_create(&t, 0, Thread1, 0);
34 // CHECK: #0 Thread1(void*) {{.*}}write_in_reader_lock.cc:12
default_options.cc 11 void *Thread1(void *x) {
23 pthread_create(&t[0], NULL, Thread1, NULL);
race_on_barrier.c 11 void *Thread1(void *x) {
27 pthread_create(&t, NULL, Thread1, NULL);
race_on_puts.cc 12 void *Thread1(void *p) {
22 pthread_create(&th[1], 0, Thread1, 0);
simple_race.c 6 void *Thread1(void *x) {
21 pthread_create(&t[0], NULL, Thread1, NULL);
simple_race.cc 6 void *Thread1(void *x) {
21 pthread_create(&t[0], NULL, Thread1, NULL);
suppress_same_address.cc 6 void *Thread1(void *x) {
25 pthread_create(&t, 0, Thread1, 0);
suppressions_global.cc 7 void *Thread1(void *x) {
19 pthread_create(&t[0], NULL, Thread1, NULL);
  /external/ltrace/testsuite/ltrace.main/
main-threaded.c 18 pthread_t thread1; local
21 pthread_create (&thread1, NULL, th_main, "aaa");
24 pthread_join (thread1, NULL);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
MonitorTestCase.java 55 private TestThread<Monitor> thread1; field in class:MonitorTestCase
65 tearDownStack.addTearDown(thread1 = new TestThread<Monitor>(monitor, "TestThread #1"));
102 thread1.callAndAssertReturns(enter());
104 thread1.callAndAssertReturns(leave());
109 thread1.callAndAssertReturns(true, tryEnter());
111 thread1.callAndAssertReturns(true, tryEnter());
113 thread1.callAndAssertReturns(leave());
115 thread1.callAndAssertReturns(leave());
121 thread1.callAndAssertReturns(enter());
123 thread1.callAndAssertReturns(enter())
    [all...]
  /art/test/144-static-field-sigquit/src/
Main.java 20 Thread thread1 = new Thread(new SigQuit()); local
24 thread1.start();
28 thread1.join();
  /external/libcap-ng/libcap-ng-0.7/src/test/
thread_test.c 9 pthread_t thread1, thread2; variable
15 printf("thread1 filled capabilities\n");
49 pthread_create(&thread1, NULL, thread1_main, NULL);
  /external/valgrind/drd/tests/
rwlock_race.c 37 pthread_t thread1; local
47 pthread_create(&thread1, 0, thread_func, 0);
49 pthread_join(thread1, 0);

Completed in 1090 milliseconds

1 2 3 4 5