Home
last modified time | relevance | path

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

/third_party/python/Python/
Dbootstrap_hash.c332 int fstat_result; in dev_urandom() local
336 fstat_result = _Py_fstat_noraise(urandom_cache.fd, &st); in dev_urandom() local
340 if (fstat_result in dev_urandom()
/third_party/python/Modules/_io/
Dfileio.c244 int fstat_result; local
440 fstat_result = _Py_fstat_noraise(self->fd, &fdfstat); local
442 if (fstat_result < 0) {
698 int fstat_result; local
711 fstat_result = _Py_fstat_noraise(self->fd, &status); local
714 if (fstat_result == 0)
/third_party/python/Modules/
Dmmapmodule.c1141 int fstat_result = -1; in new_mmap_object() local
1215 fstat_result = _Py_fstat_noraise(fd, &status); in new_mmap_object() local
1219 if (fd != -1 && fstat_result == 0 && S_ISREG(status.st_mode)) { in new_mmap_object()