HomeSort by relevance Sort by last modified time
    Searched full:random_fd (Results 1 - 1 of 1) sorted by null

  /external/wpa_supplicant_8/src/crypto/
random.c 52 static int random_fd = -1; variable
298 if (random_fd >= 0) {
299 eloop_unregister_read_sock(random_fd);
300 close(random_fd);
301 random_fd = -1;
415 if (random_fd >= 0)
418 random_fd = open("/dev/random", O_RDONLY | O_NONBLOCK);
419 if (random_fd < 0) {
431 eloop_register_read_sock(random_fd, random_read_fd, NULL, NULL);

Completed in 187 milliseconds