Searched defs:sigevent (Results 1 - 7 of 7) sorted by relevance

/external/bluetooth/bluedroid/test/suite/support/
H A Dhal.c79 struct sigevent sigevent; local
80 memset(&sigevent, 0, sizeof(sigevent));
81 sigevent.sigev_notify = SIGEV_THREAD;
82 sigevent.sigev_notify_function = (void (*)(union sigval))cb;
83 sigevent.sigev_value.sival_ptr = data;
84 timer_create(CLOCK_MONOTONIC, &sigevent, &timer);
/external/bluetooth/bluedroid/osi/test/
H A Dalarm_test.cpp39 struct sigevent sigevent; local
40 memset(&sigevent, 0, sizeof(sigevent));
41 sigevent.sigev_notify = SIGEV_THREAD;
42 sigevent.sigev_notify_function = (void (*)(union sigval))timer_callback;
43 sigevent.sigev_value.sival_ptr = NULL;
44 timer_create(CLOCK_BOOTTIME, &sigevent, &timer);
/external/bluetooth/bluedroid/osi/src/
H A Dalarm.c257 struct sigevent sigevent; local
258 memset(&sigevent, 0, sizeof(sigevent));
259 sigevent.sigev_notify = SIGEV_THREAD;
260 sigevent.sigev_notify_function = (void (*)(union sigval))timer_callback;
261 sigevent.sigev_value.sival_ptr = next;
262 if (timer_create(CLOCK_ID, &sigevent, &timer) == -1) {
/external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
H A Dsignal.h37 sigev_notify_attributes to the sigevent structure. */
44 struct sigevent { struct
/external/bluetooth/bluedroid/gki/ulinux/
H A Dgki_ulinux.c321 struct sigevent sigevent; local
322 memset(&sigevent, 0, sizeof(sigevent));
323 sigevent.sigev_notify = SIGEV_THREAD;
324 sigevent.sigev_notify_function = (void (*)(union sigval))bt_alarm_cb;
325 sigevent.sigev_value.sival_ptr = NULL;
326 if (timer_create(CLOCK_REALTIME, &sigevent, &posix_timer) == -1) {
/external/bluetooth/bluedroid/test/bluedroidtest/
H A Dbluedroidtest.c510 struct sigevent sigevent; local
511 memset(&sigevent, 0, sizeof(sigevent));
512 sigevent.sigev_notify = SIGEV_THREAD;
513 sigevent.sigev_notify_function = (void (*)(union sigval))cb;
514 sigevent.sigev_value.sival_ptr = data;
515 timer_create(CLOCK_MONOTONIC, &sigevent, &timer);
/external/kernel-headers/original/uapi/asm-generic/
H A Dsiginfo.h254 * sigevent definitions
278 typedef struct sigevent { struct

Completed in 3306 milliseconds