Lines Matching refs:fd
55 random_globals_p->fd = -1; in random_globals_ctor()
60 if (random_globals_p->fd > 0) { in random_globals_dtor()
61 close(random_globals_p->fd); in random_globals_dtor()
62 random_globals_p->fd = -1; in random_globals_dtor()
163 int fd = RANDOM_G(fd); in php_random_bytes()
166 if (fd < 0) { in php_random_bytes()
168 fd = open("/dev/urandom", O_RDONLY); in php_random_bytes()
170 if (fd < 0) { in php_random_bytes()
177 if (fstat(fd, &st) != 0 || in php_random_bytes()
184 close(fd); in php_random_bytes()
190 RANDOM_G(fd) = fd; in php_random_bytes()
194 n = read(fd, bytes + read_bytes, size - read_bytes); in php_random_bytes()