Home
last modified time | relevance | path

Searched refs:sys_fill_exact (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/getrandom/src/
Dbsd_arandom.rs10 use crate::{util_libc::sys_fill_exact, Error};
43 return sys_fill_exact(dest, |buf| unsafe { func(buf.as_mut_ptr(), buf.len(), 0) }); in getrandom_inner()
49 sys_fill_exact(chunk, kern_arnd)? in getrandom_inner()
Duse_file.rs12 util_libc::{open_readonly, sys_fill_exact},
41 sys_fill_exact(chunk, read)?; in getrandom_inner()
44 sys_fill_exact(dest, read)?; in getrandom_inner()
Dsolaris_illumos.rs22 util_libc::{sys_fill_exact, Weak},
39 sys_fill_exact(chunk, |buf| unsafe { in getrandom_inner()
Dlinux_android.rs12 util_libc::{last_os_error, sys_fill_exact},
19 sys_fill_exact(dest, |buf| unsafe { in getrandom_inner()
Dutil_libc.rs50 pub fn sys_fill_exact( in sys_fill_exact() function