Home
last modified time | relevance | path

Searched refs:urandom_cache (Results 1 – 1 of 1) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
Drandom.c174 } urandom_cache = { -1 }; variable
220 if (urandom_cache.fd >= 0) { in dev_urandom_python()
222 if (fstat(urandom_cache.fd, &st) in dev_urandom_python()
224 || st.st_dev != urandom_cache.st_dev in dev_urandom_python()
227 || st.st_ino != urandom_cache.st_ino in dev_urandom_python()
234 urandom_cache.fd = -1; in dev_urandom_python()
237 if (urandom_cache.fd >= 0) in dev_urandom_python()
238 fd = urandom_cache.fd; in dev_urandom_python()
261 if (urandom_cache.fd >= 0) { in dev_urandom_python()
265 fd = urandom_cache.fd; in dev_urandom_python()
[all …]