/external/strace/xlat/ |
D | getrandom_flags.h | 6 #if defined(GRND_NONBLOCK) || (defined(HAVE_DECL_GRND_NONBLOCK) && HAVE_DECL_GRND_NONBLOCK) 8 static_assert((GRND_NONBLOCK) == (1), "GRND_NONBLOCK != 1"); 11 # define GRND_NONBLOCK 1 31 XLAT(GRND_NONBLOCK),
|
D | getrandom_flags.in | 1 GRND_NONBLOCK 1
|
/external/ltp/testcases/kernel/syscalls/getrandom/ |
D | getrandom02.c | 13 static int modes[] = { 0, GRND_RANDOM, GRND_NONBLOCK, 14 GRND_RANDOM | GRND_NONBLOCK }; 45 } while ((modes[n] & GRND_NONBLOCK) && TST_RET == -1 in verify_getrandom()
|
D | getrandom01.c | 12 static int modes[] = {0, GRND_RANDOM, GRND_NONBLOCK, 13 GRND_RANDOM | GRND_NONBLOCK};
|
/external/ltp/include/lapi/ |
D | getrandom.h | 35 #ifndef GRND_NONBLOCK 36 # define GRND_NONBLOCK 0x0001 macro
|
/external/boringssl/src/crypto/fipsmodule/rand/ |
D | urandom.c | 124 #if !defined(GRND_NONBLOCK) 125 #define GRND_NONBLOCK 1 macro 194 boringssl_getrandom(&dummy, sizeof(dummy), GRND_NONBLOCK); in DEFINE_STATIC_ONCE() 290 boringssl_getrandom(&dummy, sizeof(dummy), GRND_NONBLOCK); in DEFINE_STATIC_ONCE() 393 getrandom_flags |= GRND_NONBLOCK; in fill_with_entropy()
|
D | urandom_test.cc | 219 if (regs.rdx & GRND_NONBLOCK) { in GetTrace() 348 ret.push_back(Event::GetRandom(1, GRND_NONBLOCK)); in TestFunctionPRNGModel() 398 ret.push_back(Event::GetRandom(1, GRND_NONBLOCK)); in TestFunctionPRNGModel() 406 ret.push_back(Event::GetRandom(len, block ? 0 : GRND_NONBLOCK)); in TestFunctionPRNGModel()
|
/external/python/cryptography/src/_cffi_src/openssl/src/ |
D | osrandom_engine.h | 24 #ifndef GRND_NONBLOCK 25 #define GRND_NONBLOCK 0x0001 macro
|
/external/scudo/standalone/ |
D | linux.cpp | 148 #if !defined(GRND_NONBLOCK) in getRandom() 149 #define GRND_NONBLOCK 1 in getRandom() macro 153 syscall(SYS_getrandom, Buffer, Length, Blocking ? 0 : GRND_NONBLOCK); in getRandom()
|
/external/kernel-headers/original/uapi/linux/ |
D | random.h | 53 #define GRND_NONBLOCK 0x0001 macro
|
/external/mesa3d/src/util/ |
D | rand_xor.c | 72 ssize_t ret = getrandom(seed, seed_size, GRND_NONBLOCK); in s_rand_xorshift128plus()
|
/external/wpa_supplicant_8/src/crypto/ |
D | random.c | 249 sizeof(dummy_key) - dummy_key_avail, GRND_NONBLOCK); in random_pool_ready() 452 if (getrandom(&dummy, 0, GRND_NONBLOCK) == 0 || in random_init()
|
/external/python/cpython3/Python/ |
D | bootstrap_hash.c | 115 flags = blocking ? 0 : GRND_NONBLOCK; in py_getrandom()
|
/external/python/cryptography/docs/hazmat/backends/ |
D | openssl.rst | 109 | Linux >= 3.17 with working | ``getrandom(GRND_NONBLOCK)`` |
|
/external/python/cpython2/Lib/test/ |
D | pythoninfo.py | 246 os.getrandom(1, os.GRND_NONBLOCK)
|
/external/python/cpython3/Lib/test/ |
D | pythoninfo.py | 171 os.getrandom(1, os.GRND_NONBLOCK)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0a2.rst | 304 ``GRND_NONBLOCK`` to fall back on reading ``/dev/urandom`` if the urandom
|
D | 3.5.2rc1.rst | 459 ``GRND_NONBLOCK`` to fall back on reading ``/dev/urandom`` if the urandom
|
/external/boringssl/src/crypto/fipsmodule/ |
D | FIPS.md | 49 In the case that the seed is taken from RDRAND, getrandom will also be queried with `GRND_NONBLOCK`…
|
/external/rust/crates/libc/src/unix/uclibc/ |
D | mod.rs | 1434 pub const GRND_NONBLOCK: ::c_uint = 0x0001; constant
|
/external/python/cpython2/Modules/expat/ |
D | xmlparse.c | 73 # if ! defined(GRND_NONBLOCK) 74 # define GRND_NONBLOCK 0x0001 macro 689 const unsigned int getrandomFlags = GRND_NONBLOCK; in writeRandomBytes_getrandom_nonblock()
|
/external/expat/lib/ |
D | xmlparse.c | 80 # if ! defined(GRND_NONBLOCK) 81 # define GRND_NONBLOCK 0x0001 macro 658 const unsigned int getrandomFlags = GRND_NONBLOCK; in writeRandomBytes_getrandom_nonblock()
|
/external/python/cpython3/Modules/expat/ |
D | xmlparse.c | 78 # if ! defined(GRND_NONBLOCK) 79 # define GRND_NONBLOCK 0x0001 macro 656 const unsigned int getrandomFlags = GRND_NONBLOCK; in writeRandomBytes_getrandom_nonblock()
|
/external/rust/crates/libc/src/unix/linux_like/android/ |
D | mod.rs | 1450 pub const GRND_NONBLOCK: ::c_uint = 0x0001; constant
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 4419 :py:data:`GRND_NONBLOCK`. 4440 random bytes in non-blocking mode (using the :data:`GRND_NONBLOCK` flag) or 4468 .. data:: GRND_NONBLOCK 4474 If the :py:data:`GRND_NONBLOCK` flag is set, then :func:`getrandom` does not
|