Home
last modified time | relevance | path

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

/openbmc/openbmc/poky/meta/recipes-core/udev/eudev/
H A D0001-random-util.c-sync-dev_urandom-implementation-to-sys.patch24 - If kernel does not support GRND_INSECURE, fallback to GRND_NONBLOCK
81 - r = getrandom(p, n, GRND_NONBLOCK);
117 + l = getrandom(p, n, have_grndinsecure ? GRND_INSECURE : GRND_NONBLOCK);
131 + continue; /* No GRND_INSECURE; fallback to GRND_NONBLOCK. */
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc/
H A Darm64_kexec-arm64.c-workaround-for-getrandom-syscall.patch48 GRND_NONBLOCK);
54 + GRND_NONBLOCK);
/openbmc/linux/include/uapi/linux/
H A Drandom.h54 #define GRND_NONBLOCK 0x0001 macro
/openbmc/linux/tools/testing/selftests/wireguard/qemu/
H A Dinit.c63 if (!getrandom(NULL, 0, GRND_NONBLOCK)) in seed_rng()
/openbmc/openbmc/poky/meta/recipes-kernel/kexec/kexec-tools/
H A D0001-arm64-kexec-disabled-check-if-kaslr-seed-dtb-propert.patch67 * GRND_NONBLOCK, to make sure we
/openbmc/openbmc/poky/bitbake/lib/hashserv/
H A Dserver.py159 raw = os.getrandom(TOKEN_SIZE, os.GRND_NONBLOCK)
165 return os.getrandom(SALT_SIZE, os.GRND_NONBLOCK).hex()
/openbmc/linux/drivers/char/
H A Drandom.c1370 if (flags & ~(GRND_NONBLOCK | GRND_RANDOM | GRND_INSECURE)) in SYSCALL_DEFINE3()
1381 if (flags & GRND_NONBLOCK) in SYSCALL_DEFINE3()
/openbmc/linux/tools/perf/
H A Dbuiltin-trace.c857 #ifndef GRND_NONBLOCK
858 #define GRND_NONBLOCK 0x0001 macro
/openbmc/qemu/
H A Dmeson.build2685 cc.has_header_symbol('sys/random.h', 'GRND_NONBLOCK'))