Searched defs:RandomIO (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/security/provider/
H A DNativePRNG.java54 * Finally, note that we use a singleton for the actual work (RandomIO)
71 private static final RandomIO INSTANCE = initIO();
73 private static RandomIO initIO() {
75 new PrivilegedAction<RandomIO>() {
76 public RandomIO run() {
86 return new RandomIO(randomFile, urandomFile);
125 private static class RandomIO { class in class:NativePRNG
165 private RandomIO(File randomFile, File urandomFile) throws IOException { method in class:NativePRNG.RandomIO

Completed in 30 milliseconds