Home
last modified time | relevance | path

Searched refs:GRND_NONBLOCK (Results 1 – 4 of 4) sorted by relevance

/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dlinux.cpp161 #if !defined(GRND_NONBLOCK) in getRandom()
162 #define GRND_NONBLOCK 1 in getRandom() macro
166 syscall(SYS_getrandom, Buffer, Length, Blocking ? 0 : GRND_NONBLOCK); in getRandom()
/openbsd/lib/libcrypto/arc4random/
H A Dgetentropy_linux.c76 #if defined(SYS_getrandom) && defined(GRND_NONBLOCK)
96 #if defined(SYS_getrandom) && defined(GRND_NONBLOCK) in getentropy()
179 #if defined(SYS_getrandom) && defined(GRND_NONBLOCK)
188 ret = syscall(SYS_getrandom, buf, len, GRND_NONBLOCK); in getentropy_getrandom()
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cpp143 # if !defined(GRND_NONBLOCK)
144 # define GRND_NONBLOCK 1 macro
2406 blocking ? 0 : GRND_NONBLOCK); in GetRandom()
/openbsd/lib/libexpat/lib/
H A Dxmlparse.c131 # if ! defined(GRND_NONBLOCK)
132 # define GRND_NONBLOCK 0x0001 macro
798 const unsigned int getrandomFlags = GRND_NONBLOCK; in writeRandomBytes_getrandom_nonblock()