HomeSort by relevance Sort by last modified time
    Searched refs:timer_create (Results 51 - 75 of 108) sorted by null

1 23 4 5

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_settime/
4-1.c 85 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) {
86 perror("timer_create() did not return success\n");
5-1.c 85 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) {
86 perror("timer_create() did not return success\n");
5-2.c 85 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) {
86 perror("timer_create() did not return success\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_settime/speculative/
4-3.c 90 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) {
91 perror("timer_create() did not return success\n");
4-4.c 88 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) {
89 perror("timer_create() did not return success\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_create/
8-1.c 13 * 2. Create timer using timer_create().
80 if (timer_create(CLOCK_REALTIME, NULL, &tid) != 0) {
81 perror("timer_create() did not return success\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_gettime/
1-4.c 54 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) {
55 perror("timer_create() did not return success\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/
2-1.c 76 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) {
77 perror("timer_create() did not return success\n");
3-3.c 59 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) {
60 perror("timer_create() did not return success\n");
6-1.c 72 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) {
73 perror("timer_create() did not return success\n");
9-1.c 75 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) {
76 perror("timer_create() did not return success\n");
9-2.c 82 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) {
83 perror("timer_create() did not return success\n");
  /external/strace/
delay.c 149 if (timer_create(CLOCK_MONOTONIC, NULL, &delay_timer))
150 perror_msg_and_die("timer_create");
time.c 285 SYS_FUNC(timer_create)
  /bionic/libc/include/
time.h 101 int timer_create(clockid_t __clock, struct sigevent* __event, timer_t* __timer_ptr);
  /bionic/tests/headers/posix/
time_h.c 100 FUNCTION(timer_create, int (*f)(clockid_t, struct sigevent*, timer_t*));
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
time.h 157 int timer_create(clockid_t, struct sigevent *__restrict, timer_t *__restrict);
  /external/linux-kselftest/tools/testing/selftests/timers/
alarmtimer-suspend.c 144 if (timer_create(alarm_clock_id, &se, &tm1) == -1) {
145 printf("timer_create failed, %s unsupported?\n",
posix_timers.c 148 printf("Check timer_create() ");
157 err = timer_create(which, NULL, &id);
leap-a-day.c 296 if (timer_create(CLOCK_REALTIME, &se, &tm1) == -1) {
297 printf("Error: timer_create failed\n");
set-timer-lat.c 139 err = timer_create(clock_id, &se, tm1);
149 printf("%s - timer_create() failed\n", clockstring(clock_id));
  /bionic/tests/
time_test.cpp 374 TEST(time, timer_create) {
380 ASSERT_EQ(0, timer_create(CLOCK_MONOTONIC, &se, &timer_id));
410 ASSERT_EQ(0, timer_create(CLOCK_MONOTONIC, &se, &timer_id));
437 ASSERT_EQ(0, timer_create(CLOCK_REALTIME, &se, &timer_id));
524 ASSERT_EQ(0, timer_create(CLOCK_MONOTONIC, nullptr, &timer_id));
542 ASSERT_EQ(-1, timer_create(invalid_clock, nullptr, &timer_id));
550 ASSERT_EQ(-1, timer_create(invalid_clock, &se, &timer_id));
635 ASSERT_EQ(0, timer_create(CLOCK_REALTIME, &se, &tdd.timer_id));
  /bionic/libc/bionic/
posix_timers.cpp 105 // http://pubs.opengroup.org/onlinepubs/9699919799/functions/timer_create.html
106 int timer_create(clockid_t clock_id, sigevent* evp, timer_t* timer_id) { function
  /external/linux-kselftest/tools/testing/selftests/ptp/
testptp.c 401 if (timer_create(clkid, &sigevent, &timerid)) {
402 perror("timer_create");
421 if (timer_create(clkid, &sigevent, &timerid)) {
422 perror("timer_create");
  /external/perfetto/src/base/
watchdog_posix.cc 252 PERFETTO_CHECK(timer_create(CLOCK_MONOTONIC, &sev, &timerid_) != -1);

Completed in 2181 milliseconds

1 23 4 5