HomeSort by relevance Sort by last modified time
    Searched refs:randomDevice (Results 1 - 2 of 2) sorted by null

  /frameworks/base/services/java/com/android/server/
EntropyMixer.java 59 private final String randomDevice;
89 public EntropyMixer(Context context, String entropyFile, String randomDevice) {
90 if (randomDevice == null) { throw new NullPointerException("randomDevice"); }
93 this.randomDevice = randomDevice;
112 RandomBlock.fromFile(entropyFile).toFile(randomDevice, false);
123 RandomBlock.fromFile(randomDevice).toFile(entropyFile, true);
146 out = new PrintWriter(new FileOutputStream(randomDevice));
  /system/security/keystore/
keystore.cpp 349 const char* randomDevice = "/dev/urandom";
350 mRandom = TEMP_FAILURE_RETRY(::open(randomDevice, O_RDONLY));
352 ALOGE("open: %s: %s", randomDevice, strerror(errno));
    [all...]

Completed in 95 milliseconds