OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:urandom_fd
(Results
1 - 5
of
5
) sorted by null
/external/chromium/base/
rand_util_posix.cc
48
int
urandom_fd
= g_urandom_fd.Pointer()->fd();
local
49
bool success = file_util::ReadFromFD(
urandom_fd
,
/external/chromium_org/base/
rand_util_posix.cc
48
int
urandom_fd
= g_urandom_fd.Pointer()->fd();
local
49
bool success = ReadFromFD(
urandom_fd
, reinterpret_cast<char*>(&number),
/external/chromium_org/third_party/tcmalloc/chromium/src/
system-alloc.cc
180
int
urandom_fd
= open("/dev/urandom", O_RDONLY);
181
if (
urandom_fd
>= 0) {
183
len = read(
urandom_fd
, &seed, sizeof(seed));
185
int ret = close(
urandom_fd
);
/external/chromium_org/components/nacl/loader/
nacl_listener.cc
265
args->
urandom_fd
= dup(base::GetUrandomFD());
266
if (args->
urandom_fd
< 0) {
/system/core/init/
init.c
582
int
urandom_fd
= -1;
local
600
urandom_fd
= TEMP_FAILURE_RETRY(
602
if (
urandom_fd
== -1) {
618
chunk_size = TEMP_FAILURE_RETRY(write(
urandom_fd
, buf, chunk_size));
634
if (
urandom_fd
!= -1) {
635
close(
urandom_fd
);
Completed in 191 milliseconds