HomeSort by relevance Sort by last modified time
    Searched refs:condattr (Results 1 - 20 of 20) sorted by null

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_condattr_destroy/
3-1.c 26 pthread_condattr_t condattr; local
29 if (pthread_condattr_init(&condattr) != 0) {
36 if (pthread_condattr_destroy(&condattr) != 0) {
2-1.c 28 pthread_condattr_t condattr; local
31 if (pthread_condattr_init(&condattr) != 0) {
38 if (pthread_condattr_destroy(&condattr) != 0) {
45 if (pthread_condattr_init(&condattr) != 0) {
1-1.c 24 pthread_condattr_t condattr; local
28 if ((rc = pthread_condattr_init(&condattr)) != 0) {
35 if (pthread_condattr_destroy(&condattr) != 0) {
4-1.c 25 pthread_condattr_t *condattr = NULL; local
30 if ((rc = pthread_condattr_destroy(condattr)) == EINVAL) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_condattr_getclock/
1-2.c 9 * shall get the 'clock' attribute of a condattr object.
27 pthread_condattr_t condattr; local
32 if ((rc = pthread_condattr_init(&condattr)) != 0) {
39 rc = pthread_condattr_setclock(&condattr, CLOCK_REALTIME);
45 rc = pthread_condattr_getclock(&condattr, &clockid);
1-1.c 9 * shall get the 'clock' attribute in a condattr object
26 pthread_condattr_t condattr; local
31 if ((rc = pthread_condattr_init(&condattr)) != 0) {
38 rc = pthread_condattr_getclock(&condattr, &clockid);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_condattr_setclock/
1-1.c 27 pthread_condattr_t condattr; local
31 if ((rc = pthread_condattr_init(&condattr)) != 0) {
38 rc = pthread_condattr_setclock(&condattr, CLOCK_REALTIME);
2-1.c 34 pthread_condattr_t condattr; local
38 if ((rc = pthread_condattr_init(&condattr)) != 0) {
45 rc = pthread_condattr_setclock(&condattr, INVALID_CLOCKID);
1-2.c 31 pthread_condattr_t condattr; local
43 if ((rc = pthread_condattr_init(&condattr)) != 0) {
50 rc = pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC);
1-3.c 38 pthread_condattr_t condattr;
48 if ((rc = pthread_condattr_init(&condattr)) != 0) {
62 rc = pthread_condattr_setclock(&condattr, clockid);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_condattr_init/
1-1.c 25 pthread_condattr_t condattr; local
32 if ((rc = pthread_condattr_init(&condattr)) != 0) {
42 if (pthread_condattr_getpshared(&condattr, &pshared) != 0) {
3-1.c 24 pthread_condattr_t condattr; local
28 if ((rc = pthread_condattr_init(&condattr)) == 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_init/
1-1.c 32 pthread_condattr_t condattr; local
40 rc = pthread_condattr_init(&condattr);
45 f = "pthread_cond_init() - condattr";
46 rc = pthread_cond_init(&cond1, &condattr);
3-1.c 24 pthread_condattr_t condattr; local
31 rc = pthread_condattr_init(&condattr);
36 rc = pthread_cond_init(&cond, &condattr);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_destroy/
1-1.c 23 pthread_condattr_t condattr; local
27 if ((rc = pthread_condattr_init(&condattr)) != 0) {
34 if ((rc = pthread_cond_init(&cond1, &condattr)) != 0) {
46 if ((rc = pthread_condattr_destroy(&condattr)) != 0) {
  /external/mesa3d/src/vulkan/wsi/
wsi_common_queue.h 51 pthread_condattr_t condattr;
52 ret = pthread_condattr_init(&condattr);
56 ret = pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC);
60 ret = pthread_cond_init(&queue->cond, &condattr);
68 pthread_condattr_destroy(&condattr);
74 pthread_condattr_destroy(&condattr);
  /external/valgrind/drd/tests/
monitor_example.cpp 87 pthread_condattr_t condattr; local
88 pthread_condattr_init(&condattr);
90 pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC);
92 pthread_cond_init(&m_cond, &condattr);
93 pthread_condattr_destroy(&condattr);
  /external/ltp/testcases/realtime/stress/pi-tests/
testpi-3.c 252 pthread_condattr_t condattr; local
293 if (pthread_condattr_init(&condattr) != 0) {
294 printf("Failed to init condattr\n");
296 if (pthread_cond_init(&(thrd->cond), &condattr) != 0) {
  /external/mesa3d/src/intel/vulkan/
anv_device.c 941 pthread_condattr_t condattr; local
    [all...]
  /art/dex2oat/
dex2oat.cc 469 pthread_condattr_t condattr; local
470 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_condattr_init, (&condattr), reason);
471 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_condattr_setclock, (&condattr, CLOCK_MONOTONIC), reason);
472 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, &condattr), reason);
473 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_condattr_destroy, (&condattr), reason);
    [all...]

Completed in 1193 milliseconds