OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RandBytes
(Results
1 - 3
of
3
) sorted by null
/external/libchrome/crypto/
random.cc
13
void
RandBytes
(void *bytes, size_t length) {
14
// It's OK to call base::
RandBytes
(), because it's already strongly random.
17
base::
RandBytes
(bytes, length);
/external/libchrome/base/
rand_util_posix.cc
46
RandBytes
(&number, sizeof(number));
50
void
RandBytes
(void* output, size_t output_length) {
/external/libweave/third_party/chromium/base/
rand_util_posix.cc
51
RandBytes
(&number, sizeof(number));
55
void
RandBytes
(void* output, size_t output_length) {
Completed in 69 milliseconds