Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dbootstrap_hash.c313 int fstat_result; in dev_urandom() local
317 fstat_result = _Py_fstat_noraise(urandom_cache.fd, &st); in dev_urandom() local
321 if (fstat_result in dev_urandom()
/external/python/cpython3/Modules/_io/
Dfileio.c242 int fstat_result; local
433 fstat_result = _Py_fstat_noraise(self->fd, &fdfstat); local
435 if (fstat_result < 0) {
686 int fstat_result; local
699 fstat_result = _Py_fstat_noraise(self->fd, &status); local
702 if (fstat_result == 0)
/external/python/cpython3/Modules/
Dmmapmodule.c1035 int fstat_result = -1; in new_mmap_object() local
1104 fstat_result = _Py_fstat_noraise(fd, &status); in new_mmap_object() local
1108 if (fd != -1 && fstat_result == 0 && S_ISREG(status.st_mode)) { in new_mmap_object()