HomeSort by relevance Sort by last modified time
    Searched defs:GRND_NONBLOCK (Results 1 - 8 of 8) sorted by null

  /external/ltp/include/lapi/
getrandom.h 31 * GRND_NONBLOCK Don't block and return EAGAIN instead
35 #ifndef GRND_NONBLOCK
36 # define GRND_NONBLOCK 0x0001
  /external/strace/xlat/
getrandom_flags.h 2 #if !(defined(GRND_NONBLOCK) || (defined(HAVE_DECL_GRND_NONBLOCK) && HAVE_DECL_GRND_NONBLOCK))
3 # define GRND_NONBLOCK 1
17 XLAT(GRND_NONBLOCK),
  /prebuilts/go/darwin-x86/src/internal/syscall/unix/
getrandom_linux.go 19 // GRND_NONBLOCK means return EAGAIN rather than blocking.
20 GRND_NONBLOCK GetRandomFlag = 0x0001
  /prebuilts/go/linux-x86/src/internal/syscall/unix/
getrandom_linux.go 19 // GRND_NONBLOCK means return EAGAIN rather than blocking.
20 GRND_NONBLOCK GetRandomFlag = 0x0001
  /bionic/libc/kernel/uapi/linux/
random.h 35 #define GRND_NONBLOCK 0x0001
  /external/kernel-headers/original/uapi/linux/
random.h 47 * GRND_NONBLOCK Don't block and return EAGAIN instead
50 #define GRND_NONBLOCK 0x0001
  /external/boringssl/src/crypto/fipsmodule/rand/
urandom.c 78 #if !defined(GRND_NONBLOCK)
79 #define GRND_NONBLOCK 1
124 syscall(__NR_getrandom, &dummy, sizeof(dummy), GRND_NONBLOCK);
  /external/expat/lib/
xmlparse.c 73 # if ! defined(GRND_NONBLOCK)
74 # define GRND_NONBLOCK 0x0001
75 # endif /* defined(GRND_NONBLOCK) */
686 const unsigned int getrandomFlags = GRND_NONBLOCK;
    [all...]

Completed in 257 milliseconds