Home
last modified time | relevance | path

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

/external/python/cpython3/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()
/external/python/cpython3/Modules/_io/
Dfileio.c244 int fstat_result; local
439 fstat_result = _Py_fstat_noraise(self->fd, &fdfstat); local
441 if (fstat_result < 0) {
692 int fstat_result; local
705 fstat_result = _Py_fstat_noraise(self->fd, &status); local
708 if (fstat_result == 0)
/external/rust/crates/nix/test/
Dtest_stat.rs105 let fstat_result = fstat(file.as_raw_fd()); in test_stat_and_fstat() localVariable
106 assert_stat_results(fstat_result); in test_stat_and_fstat()
146 let fstat_result = fstat(link.as_raw_fd()); in test_stat_fstat_lstat() localVariable
147 assert_stat_results(fstat_result); in test_stat_fstat_lstat()
/external/python/cpython3/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()