HomeSort by relevance Sort by last modified time
    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 424 const char* randomDevice = "/dev/urandom";
425 mRandom = TEMP_FAILURE_RETRY(::open(randomDevice, O_RDONLY));
427 ALOGE("open: %s: %s", randomDevice, strerror(errno));
    [all...]

Completed in 148 milliseconds