OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:randomDevice
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/services/core/java/com/android/server/
EntropyMixer.java
66
private final String
randomDevice
;
101
String
randomDevice
,
103
if (
randomDevice
== null) { throw new NullPointerException("
randomDevice
"); }
107
this.
randomDevice
=
randomDevice
;
128
RandomBlock.fromFile(entropyFile).toFile(
randomDevice
, false);
139
RandomBlock.fromFile(
randomDevice
).toFile(entropyFile, true);
162
out = new PrintWriter(new FileOutputStream(
randomDevice
));
192
RandomBlock.fromFile(hwRandomDevice).toFile(
randomDevice
, false)
[
all
...]
/system/security/keystore/
keystore.cpp
443
const char*
randomDevice
= "/dev/urandom";
444
mRandom = TEMP_FAILURE_RETRY(::open(
randomDevice
, O_RDONLY));
446
ALOGE("open: %s: %s",
randomDevice
, strerror(errno));
[
all
...]
Completed in 652 milliseconds