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 57 private final String randomDevice;
80 public EntropyMixer(String entropyFile, String randomDevice) {
81 if (randomDevice == null) { throw new NullPointerException("randomDevice"); }
84 this.randomDevice = randomDevice;
99 RandomBlock.fromFile(entropyFile).toFile(randomDevice, false);
107 RandomBlock.fromFile(randomDevice).toFile(entropyFile, true);
130 out = new PrintWriter(new FileOutputStream(randomDevice));
  /system/security/keystore/
keystore.cpp 237 const char* randomDevice = "/dev/urandom";
238 mRandom = ::open(randomDevice, O_RDONLY);
240 ALOGE("open: %s: %s", randomDevice, strerror(errno));
    [all...]

Completed in 859 milliseconds