HomeSort by: relevance | last modified time | path
    Searched defs:presult (Results 1 - 9 of 9) sorted by relevancy

  /src/external/mpl/bind/dist/lib/isc/
condition.c 28 int presult; local
56 presult = pthread_cond_timedwait(c, m, &ts);
57 if (presult == 0) {
60 if (presult == ETIMEDOUT) {
63 } while (presult == EINTR);
65 UNEXPECTED_SYSERROR(presult, "pthread_cond_timedwait()");
  /src/external/bsd/ntp/dist/libntp/lib/isc/pthreads/
condition.c 37 int presult; local
59 presult = pthread_cond_timedwait(c, &m->mutex, &ts);
61 presult = pthread_cond_timedwait(c, m, &ts);
63 if (presult == 0)
65 if (presult == ETIMEDOUT)
67 } while (presult == EINTR);
69 isc__strerror(presult, strbuf, sizeof(strbuf));
  /src/external/mpl/dhcp/bind/dist/lib/isc/pthreads/
condition.c 28 int presult; local
58 presult = pthread_cond_timedwait(c, &m->mutex, &ts);
60 presult = pthread_cond_timedwait(c, m, &ts);
62 if (presult == 0) {
65 if (presult == ETIMEDOUT) {
68 } while (presult == EINTR);
70 strerror_r(presult, strbuf, sizeof(strbuf));
  /src/external/mpl/dhcp/bind/dist/lib/isc/
app.c 147 int presult; local
178 presult = pthread_sigmask(SIG_BLOCK, &sset, NULL);
179 if (presult != 0) {
180 strerror_r(presult, strbuf, sizeof(strbuf));
  /src/crypto/external/apache2/openssl/dist/test/
drbgtest.c 410 drbg_fork_result *presult = &result[2]; local
416 presult[0].pindex = presult[1].pindex = i;
418 BIO_snprintf(presult[0].name, sizeof(presult[0].name), "child %d", i);
419 strcpy(presult[1].name, presult[0].name);
425 presult)))
428 presult += 2;
  /src/crypto/external/bsd/openssl/dist/test/
drbgtest.c 418 drbg_fork_result *presult = &result[2]; local
424 presult[0].pindex = presult[1].pindex = i;
426 BIO_snprintf(presult[0].name, sizeof(presult[0].name), "child %d", i);
427 strcpy(presult[1].name, presult[0].name);
433 presult)))
436 presult += 2;
  /src/external/gpl3/gcc/dist/libgcc/
unwind-dw2.c 588 _Unwind_Ptr presult;
589 op_ptr = read_encoded_value (context, *op_ptr, op_ptr+1, &presult);
590 result = presult;
584 _Unwind_Ptr presult; local
  /src/external/gpl3/gcc.old/dist/libgcc/config/cr16/
unwind-cr16.c 558 _Unwind_Ptr presult;
559 op_ptr = read_encoded_value (context, *op_ptr, op_ptr+1, &presult);
560 result = presult;
554 _Unwind_Ptr presult; local
  /src/external/gpl3/gcc.old/dist/libgcc/
unwind-dw2.c 590 _Unwind_Ptr presult;
591 op_ptr = read_encoded_value (context, *op_ptr, op_ptr+1, &presult);
592 result = presult;
586 _Unwind_Ptr presult; local

Completed in 27 milliseconds