Searched refs:th (Results 1 - 25 of 144) sorted by relevance

123456

/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DExceptionUtil.java30 public static boolean isFileNotFoundException(Throwable th) { argument
31 while (th != null) {
32 if (th instanceof JSilverTemplateNotFoundException || th instanceof FileNotFoundException) {
35 th = th.getCause();
/external/valgrind/main/none/tests/
H A Dpth_exit.c4 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 Dmanythreads.c15 pthread_t th; local
20 pthread_create(&th, NULL, func, NULL);
21 pthread_join(th, NULL);
/external/valgrind/main/helgrind/tests/
H A Dhg04_race.c8 static void *th(void *v) function
19 pthread_create(&a, NULL, th, NULL);
21 pthread_create(&b, NULL, th, NULL);
H A Dhg01_all_ok.c9 static void *th(void *v) function
25 pthread_create(&a, NULL, th, NULL);
26 pthread_create(&b, NULL, th, NULL);
H A Dhg05_race2.c13 static void *th(void *v) function
27 pthread_create(&a, NULL, th, &foo);
29 pthread_create(&b, NULL, th, &foo);
/external/doclava/res/assets/templates/
H A Dtodo.cs14 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/libppp/src/
H A Dslcompress.c166 register struct tcphdr *th; local
183 th = (struct tcphdr *) & ((int *) ip)[hlen];
184 if ((th->th_flags & (TH_SYN | TH_FIN | TH_RST | TH_ACK)) != TH_ACK) {
185 log_Printf(LogDEBUG, "??? 2 th_flags = %x\n", th->th_flags);
200 *(int *) th != ((int *) &cs->cs_ip)[cs->cs_ip.ip_hl]) {
221 && *(int *) th == ((int *) &cs->cs_ip)[cs->cs_ip.ip_hl])
234 #define THOFFSET(th) (th->th_off)
235 hlen += th->th_off;
260 * but costless). The 4th lin
435 register struct tcphdr *th; local
[all...]
/external/compiler-rt/lib/tsan/rtl_tests/
H A Dtsan_posix.cc59 pthread_t th[3]; local
64 EXPECT_EQ(pthread_create(&th[0], 0, dtors_thread, k[0]), 0);
65 EXPECT_EQ(pthread_create(&th[1], 0, dtors_thread, k[1]), 0);
66 EXPECT_EQ(pthread_join(th[0], 0), 0);
67 EXPECT_EQ(pthread_create(&th[2], 0, dtors_thread, k[2]), 0);
68 EXPECT_EQ(pthread_join(th[1], 0), 0);
69 EXPECT_EQ(pthread_join(th[2], 0), 0);
82 pthread_t th[kThreads]; local
84 EXPECT_EQ(pthread_create(&th[i], 0, local_thread,
87 EXPECT_EQ(pthread_join(th[
128 pthread_t th; local
[all...]
/external/linux-tools-perf/util/
H A Dthread.c68 struct thread *th; local
80 th = rb_entry(parent, struct thread, rb_node);
82 if (th->pid == pid) {
83 self->last_match = th;
84 return th;
87 if (pid < th->pid)
93 th = thread__new(pid);
94 if (th != NULL) {
95 rb_link_node(&th->rb_node, parent, p);
96 rb_insert_color(&th
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
H A DCRLExceptionTest.java44 Throwable th = null;
47 new CRLException(new Throwable()), new CRLException(th),
H A DCertPathBuilderExceptionTest.java44 Throwable th = null;
47 new CertPathBuilderException(new Throwable()), new CertPathBuilderException(th),
H A DCertStoreExceptionTest.java44 Throwable th = null;
47 new CertStoreException(new Throwable()), new CertStoreException(th),
H A DCertificateEncodingExceptionTest.java44 Throwable th = null;
47 new CertificateEncodingException(new Throwable()), new CertificateEncodingException(th),
H A DCertificateExceptionTest.java44 Throwable th = null;
47 new CertificateException(new Throwable()), new CertificateException(th),
H A DCertificateParsingExceptionTest.java44 Throwable th = null;
47 new CertificateParsingException(new Throwable()), new CertificateParsingException(th),
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
H A DDigestExceptionTest.java44 Throwable th = null;
47 new DigestException(new Throwable()), new DigestException(th),
H A DGeneralSecurityExceptionTest.java44 Throwable th = null;
47 new GeneralSecurityException(new Throwable()), new GeneralSecurityException(th),
H A DInvalidAlgorithmParameterExceptionTest.java44 Throwable th = null;
47 new InvalidAlgorithmParameterException(new Throwable()), new InvalidAlgorithmParameterException(th),
H A DInvalidKeyExceptionTest.java44 Throwable th = null;
47 new InvalidKeyException(new Throwable()), new InvalidKeyException(th),
H A DKeyExceptionTest.java44 Throwable th = null;
47 new KeyException(new Throwable()), new KeyException(th),
H A DKeyManagementExceptionTest.java44 Throwable th = null;
47 new KeyManagementException(new Throwable()), new KeyManagementException(th),
H A DKeyStoreExceptionTest.java44 Throwable th = null;
47 new KeyStoreException(new Throwable()), new KeyStoreException(th),
H A DNoSuchAlgorithmExceptionTest.java44 Throwable th = null;
47 new NoSuchAlgorithmException(new Throwable()), new NoSuchAlgorithmException(th),
H A DProviderExceptionTest.java44 Throwable th = null;
47 new ProviderException(new Throwable()), new ProviderException(th),

Completed in 1517 milliseconds

123456