HomeSort by relevance Sort by last modified time
    Searched defs:sigevent (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/bluetooth/bluedroid/test/suite/support/
hal.c 79 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/
alarm_test.cpp 39 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/
alarm.c 257 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/bluetooth/bluedroid/gki/ulinux/
gki_ulinux.c 309 struct sigevent sigevent; local
310 memset(&sigevent, 0, sizeof(sigevent));
311 sigevent.sigev_notify = SIGEV_THREAD;
312 sigevent.sigev_notify_function = (void (*)(union sigval))bt_alarm_cb;
313 sigevent.sigev_value.sival_ptr = NULL;
314 if (timer_create(CLOCK_REALTIME, &sigevent, &posix_timer) == -1) {
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
signal.h 37 sigev_notify_attributes to the sigevent structure. */
44 struct sigevent { struct
  /external/bluetooth/bluedroid/test/bluedroidtest/
bluedroidtest.c 510 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);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
siginfo.h 1 /* siginfo_t, sigevent and constants. Linux version.
273 typedef struct sigevent struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
siginfo.h 1 /* siginfo_t, sigevent and constants. Linux version.
273 typedef struct sigevent struct
  /bionic/libc/kernel/uapi/asm-generic/
siginfo.h 240 typedef struct sigevent { struct
  /development/ndk/platforms/android-3/include/asm-generic/
siginfo.h 194 typedef struct sigevent { struct
  /development/ndk/platforms/android-L/include/asm-generic/
siginfo.h 240 typedef struct sigevent { struct
  /external/kernel-headers/original/uapi/asm-generic/
siginfo.h 254 * sigevent definitions
278 typedef struct sigevent { struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm-generic/
siginfo.h 223 * sigevent definitions
247 typedef struct sigevent { struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
siginfo.h 223 * sigevent definitions
247 typedef struct sigevent { struct
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/asm-generic/
siginfo.h 194 typedef struct sigevent { struct
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/asm-generic/
siginfo.h 194 typedef struct sigevent { struct
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/asm-generic/
siginfo.h 194 typedef struct sigevent { struct
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm-generic/
siginfo.h 194 typedef struct sigevent { struct
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/asm-generic/
siginfo.h 194 typedef struct sigevent { struct
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm-generic/
siginfo.h 194 typedef struct sigevent { struct
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/asm-generic/
siginfo.h 194 typedef struct sigevent { struct
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/asm-generic/
siginfo.h 194 typedef struct sigevent { struct
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/asm-generic/
siginfo.h 194 typedef struct sigevent { struct
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/asm-generic/
siginfo.h 194 typedef struct sigevent { struct
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm-generic/
siginfo.h 194 typedef struct sigevent { struct

Completed in 656 milliseconds

1 2 3 4