/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/ |
H A D | ExceptionUtil.java | 30 public static boolean isFileNotFoundException(Throwable th) { argument 31 while (th != null) { 32 if (th instanceof JSilverTemplateNotFoundException || th instanceof FileNotFoundException) { 35 th = th.getCause();
|
/external/compiler-rt/test/tsan/ |
H A D | race_on_puts.cc | 20 pthread_t th[2]; local 21 pthread_create(&th[0], 0, Thread0, 0); 22 pthread_create(&th[1], 0, Thread1, 0); 23 pthread_join(th[0], 0); 24 pthread_join(th[1], 0);
|
H A D | setuid.c | 18 pthread_t th; local 19 pthread_create(&th, 0, thread, 0); 21 pthread_join(th, 0);
|
H A D | sunrpc.cc | 17 pthread_t th[2]; local 18 pthread_create(&th[0], 0, thr, 0); 19 pthread_create(&th[1], 0, thr, 0); 20 pthread_join(th[0], 0); 21 pthread_join(th[1], 0);
|
H A D | mmap_stress.cc | 20 pthread_t th[4]; local 22 pthread_create(&th[i], 0, SubWorker, 0); 24 pthread_join(th[i], 0); 30 pthread_t th[4]; local 32 pthread_create(&th[i], 0, Worker1, 0); 34 pthread_join(th[i], 0); 39 pthread_t th[4]; local 41 pthread_create(&th[i], 0, Worker, 0); 43 pthread_join(th[i], 0);
|
H A D | malloc_stack.cc | 15 pthread_t th; local 16 pthread_create(&th, 0, thr, p); 19 pthread_join(th, 0);
|
H A D | mutex_double_lock.cc | 15 pthread_t th; local 16 pthread_create(&th, 0, ThreadFunc, &m); 17 pthread_join(th, 0);
|
H A D | race_stress.cc | 16 pthread_t th[kThreads]; local 18 pthread_create(&th[i], 0, thr, 0); 20 pthread_join(th[i], 0);
|
H A D | java_finalizer.cc | 18 pthread_t th; local 19 pthread_create(&th, 0, Thread, (void*)jheap); 22 pthread_join(th, 0);
|
H A D | java_race.cc | 17 pthread_t th; local 18 pthread_create(&th, 0, Thread, (void*)jheap); 21 pthread_join(th, 0);
|
H A D | cond_cancel.c | 37 pthread_t th; local 42 pthread_create(&th, 0, thr1, 0); 45 pthread_cancel(th); 47 pthread_join(th, 0);
|
H A D | java_volatile.cc | 24 pthread_t th; local 25 pthread_create(&th, 0, Thread, 0); 29 pthread_join(th, 0); 31 pthread_create(&th, 0, Thread, 0); 35 pthread_join(th, 0);
|
H A D | fd_dup_norace2.cc | 47 pthread_t th; local 48 pthread_create(&th, 0, Thread, 0); 51 pthread_join(th, 0);
|
H A D | fd_dup_race.cc | 24 pthread_t th; local 25 pthread_create(&th, 0, Thread, 0); 29 pthread_join(th, 0);
|
H A D | java_alloc.cc | 24 pthread_t th; local 25 pthread_create(&th, 0, Thread, (void*)(jheap + kHeapSize / 4)); 27 pthread_join(th, 0);
|
/external/valgrind/none/tests/ |
H A D | pth_exit.c | 4 static void *th(void *v) function 14 pthread_create(&a, NULL, th, NULL); 15 pthread_create(&a, NULL, th, NULL); 16 pthread_create(&a, NULL, th, NULL); 17 pthread_create(&a, NULL, th, NULL);
|
H A D | manythreads.c | 15 pthread_t th; local 20 pthread_create(&th, NULL, func, NULL); 21 pthread_join(th, NULL);
|
/external/jetty/src/java/org/eclipse/jetty/io/ |
H A D | EofException.java | 41 public EofException(Throwable th) argument 43 if (th!=null) 44 initCause(th);
|
/external/valgrind/helgrind/tests/ |
H A D | hg04_race.c | 8 static void *th(void *v) function 19 pthread_create(&a, NULL, th, NULL); 21 pthread_create(&b, NULL, th, NULL);
|
H A D | hg05_race2.c | 13 static void *th(void *v) function 27 pthread_create(&a, NULL, th, &foo); 29 pthread_create(&b, NULL, th, &foo);
|
/external/eigen/demos/mandelbrot/ |
H A D | mandelbrot.h | 61 for(int th = 0; th < threadcount; th++) threads[th] = new MandelbrotThread(this, th); 66 for(int th = 0; th < threadcount; th++) delete threads[th];
|
/external/doclava/res/assets/templates/ |
H A D | todo.cs | 14 table th { property 35 <tr><th>Errors</th><td><?cs var:all.errorCount ?></td></tr> 36 <tr><th>Percent Good</th><td><?cs var:all.percentGood ?></td></tr> 37 <tr><th>Total Comments</th><td><?cs var:all.totalCount ?></td></tr> 44 <th>Package</th> 45 <th>Error [all...] |
/external/owasp/sanitizer/src/main/org/owasp/html/ |
H A D | Handler.java | 54 public void handle(Throwable th) { 55 Throwables.propagate(th);
|
/external/compiler-rt/test/tsan/Linux/ |
H A D | mutex_robust.cc | 20 pthread_t th; local 21 pthread_create(&th, 0, thr, 0); 27 pthread_join(th, 0);
|
H A D | mutex_robust2.cc | 22 pthread_t th; local 23 pthread_create(&th, 0, thr, 0); 30 pthread_join(th, 0);
|