HomeSort by relevance Sort by last modified time
    Searched refs:getrandom (Results 26 - 50 of 69) sorted by null

12 3

  /prebuilts/go/linux-x86/src/internal/syscall/unix/
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.
getrandom_linux.go 15 // GetRandomFlag is a flag supported by the getrandom system call.
26 // GetRandom calls the Linux getrandom system call.
28 func GetRandom(p []byte, flags GetRandomFlag) (n int, err error) {
getrandom_linux_generic.go 9 // Linux getrandom system call number.
10 // See GetRandom in getrandom_linux.go.
  /bionic/libc/bionic/
getentropy.cpp 64 long count = TEMP_FAILURE_RETRY(getrandom(static_cast<char*>(buffer) + collected,
68 // ENOSYS/EINVAL: getrandom(2) or GRND_NONBLOCK isn't supported.
  /prebuilts/go/darwin-x86/src/internal/syscall/unix/
getrandom_linux.go 15 // GetRandomFlag is a flag supported by the getrandom system call.
26 // GetRandom calls the Linux getrandom system call.
28 func GetRandom(p []byte, flags GetRandomFlag) (n int, err error) {
getrandom_linux_generic.go 9 // Linux getrandom system call number.
10 // See GetRandom in getrandom_linux.go.
  /external/ltp/utils/ffsb-6.0-rc2/
rand.c 138 uint32_t getrandom(randdata_t * state, uint32_t mod) function
175 return (uint64_t) getrandom(state, (uint32_t) mod);
ffsb_tg.c 104 num = 1 + getrandom(rd, tg->sum_weights);
119 fsnum = getrandom(rd, tg->fc->num_filesys);
filelist.c 158 int randdir = getrandom(rd, b->numsubdirs + 1);
301 chosen = getrandom(rd, b->listsize);
ffsb_fs.c 120 int num = 1 + getrandom(&rd, fs->sum_weights);
fileops.c 433 int num = 1 + getrandom(rd, fs->sum_weights);
  /prebuilts/go/darwin-x86/src/crypto/rand/
rand.go 14 // On Linux, Reader uses getrandom(2) if available, /dev/urandom otherwise.
  /prebuilts/go/linux-x86/src/crypto/rand/
rand.go 14 // On Linux, Reader uses getrandom(2) if available, /dev/urandom otherwise.
  /external/python/cpython3/Python/
random.c 85 /* Call getrandom() to get random bytes:
88 - Return 0 if getrandom() is not available (failed with ENOSYS or EPERM),
89 or if getrandom(GRND_NONBLOCK) failed with EAGAIN (system urandom not
92 if getrandom() failed with EINTR, raise is non-zero and the Python signal
93 handler raised an exception, or if getrandom() failed with a different
96 getrandom() is retried if it failed with EINTR: interrupted by a signal. */
100 /* Is getrandom() supported by the running kernel? Set to 0 if getrandom()
116 /* Issue #26735: On Solaris, getrandom() is limited to returning up
128 n = getrandom(dest, n, flags)
    [all...]
  /external/strace/
sys_func.h 76 extern SYS_FUNC(getrandom);
  /external/strace/linux/32/
syscallent.h 271 [278] = { 3, 0, SEN(getrandom), "getrandom" },
  /external/strace/linux/64/
syscallent.h 264 [278] = { 3, 0, SEN(getrandom), "getrandom" },
  /external/strace/linux/avr32/
syscallent.h 346 [317] = { 3, 0, SEN(getrandom), "getrandom" },
  /external/strace/linux/hppa/
syscallent.h 345 [339] = { 3, 0, SEN(getrandom), "getrandom" },
  /external/strace/linux/x86_64/
syscallent.h 319 [318] = { 3, 0, SEN(getrandom), "getrandom" },
  /external/strace/linux/xtensa/
syscallent.h 329 [338] = { 3, 0, SEN(getrandom), "getrandom" },
  /external/strace/linux/arm/
syscallent.h 412 [384] = { 3, 0, SEN(getrandom), "getrandom" },
  /external/strace/linux/i386/
syscallent.h 384 [355] = { 3, 0, SEN(getrandom), "getrandom" },
  /external/strace/linux/ia64/
syscallent.h 360 [1339] = { 3, 0, SEN(getrandom), "getrandom" },

Completed in 467 milliseconds

12 3