/external/valgrind/memcheck/tests/solaris/ |
scalar_getrandom.stderr.exp | 2 143: SYS_getrandom (getrandom) 3s 1m 4 Syscall param getrandom(buf) contains uninitialised byte(s) 7 Syscall param getrandom(buflen) contains uninitialised byte(s) 10 Syscall param getrandom(flags) contains uninitialised byte(s) 13 Syscall param getrandom(buf) points to unaddressable byte(s)
|
/bionic/libc/arch-arm/syscalls/ |
getrandom.S | 5 ENTRY(getrandom) function 16 END(getrandom)
|
/bionic/libc/arch-arm64/syscalls/ |
getrandom.S | 5 ENTRY(getrandom) function 14 END(getrandom)
|
/bionic/libc/arch-mips/syscalls/ |
getrandom.S | 5 ENTRY(getrandom) function 19 END(getrandom)
|
/bionic/libc/arch-x86_64/syscalls/ |
getrandom.S | 5 ENTRY(getrandom) function 15 END(getrandom)
|
/bionic/tests/ |
sys_random_test.cpp | 73 TEST(sys_random, getrandom) { 78 ASSERT_EQ(64, getrandom(buf1, sizeof(buf1), 0)); 79 ASSERT_EQ(64, getrandom(buf2, sizeof(buf2), 0)); 89 ASSERT_EQ(-1, getrandom(nullptr, 256, 0)); 100 ASSERT_EQ(-1, getrandom(buf, sizeof(buf), ~0));
|
/bionic/libc/arch-mips64/syscalls/ |
getrandom.S | 5 ENTRY(getrandom) function 25 END(getrandom)
|
/bionic/libc/include/sys/ |
random.h | 43 ssize_t getrandom(void* __buffer, size_t __buffer_size, unsigned int __flags) __wur __INTRODUCED_IN(28);
|
/external/strace/ |
getrandom.c | 4 SYS_FUNC(getrandom)
|
/bionic/libc/arch-x86/syscalls/ |
getrandom.S | 5 ENTRY(getrandom) function 39 END(getrandom)
|
/external/ltp/utils/ffsb-6.0-rc2/ |
rand.h | 51 uint32_t getrandom(randdata_t *rd, uint32_t mod);
|
/prebuilts/go/darwin-x86/src/crypto/rand/ |
rand_linux.go | 16 // getrandom() syscall. In linux at most 2^25-1 bytes will be returned per call. 20 // is returned by a single call to getrandom() on systems where int 38 // If the kernel is too old (before 3.17) to support the getrandom syscall(), 39 // unix.GetRandom will immediately return ENOSYS and we will then fall back to 40 // reading from /dev/urandom in rand_unix.go. unix.GetRandom caches the ENOSYS 42 // If the kernel supports the getrandom() syscall, unix.GetRandom will block 44 // In this case, unix.GetRandom will not return an error. 46 n, err := unix.GetRandom(p, 0)
|
/prebuilts/go/darwin-x86/src/internal/syscall/unix/ |
getrandom_linux_386.go | 7 // Linux getrandom system call number. 8 // See GetRandom in getrandom_linux.go.
|
getrandom_linux_amd64.go | 7 // Linux getrandom system call number. 8 // See GetRandom in getrandom_linux.go.
|
getrandom_linux_arm.go | 7 // Linux getrandom system call number. 8 // See GetRandom in getrandom_linux.go.
|
getrandom_linux_mips64x.go | 9 // Linux getrandom system call number. 10 // See GetRandom in getrandom_linux.go.
|
getrandom_linux_mipsx.go | 9 // Linux getrandom system call number. 10 // See GetRandom in getrandom_linux.go.
|
getrandom_linux_ppc64x.go | 9 // Linux getrandom system call number. 10 // See GetRandom in getrandom_linux.go.
|
getrandom_linux_s390x.go | 7 // Linux getrandom system call number. 8 // See GetRandom in getrandom_linux.go.
|
/prebuilts/go/linux-x86/src/crypto/rand/ |
rand_linux.go | 16 // getrandom() syscall. In linux at most 2^25-1 bytes will be returned per call. 20 // is returned by a single call to getrandom() on systems where int 38 // If the kernel is too old (before 3.17) to support the getrandom syscall(), 39 // unix.GetRandom will immediately return ENOSYS and we will then fall back to 40 // reading from /dev/urandom in rand_unix.go. unix.GetRandom caches the ENOSYS 42 // If the kernel supports the getrandom() syscall, unix.GetRandom will block 44 // In this case, unix.GetRandom will not return an error. 46 n, err := unix.GetRandom(p, 0)
|
/prebuilts/go/linux-x86/src/internal/syscall/unix/ |
getrandom_linux_386.go | 7 // Linux getrandom system call number. 8 // See GetRandom in getrandom_linux.go.
|
getrandom_linux_amd64.go | 7 // Linux getrandom system call number. 8 // See GetRandom in getrandom_linux.go.
|
getrandom_linux_arm.go | 7 // Linux getrandom system call number. 8 // See GetRandom in getrandom_linux.go.
|
getrandom_linux_mips64x.go | 9 // Linux getrandom system call number. 10 // See GetRandom in getrandom_linux.go.
|
getrandom_linux_mipsx.go | 9 // Linux getrandom system call number. 10 // See GetRandom in getrandom_linux.go.
|