Home
last modified time | relevance | path

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

/third_party/python/Modules/_io/
H A Dfileio.c242 int fstat_result; local
438 fstat_result = _Py_fstat_noraise(self->fd, &fdfstat); local
440 if (fstat_result < 0) {
700 int fstat_result; local
713 fstat_result = _Py_fstat_noraise(self->fd, &status); local
716 if (fstat_result == 0)
/third_party/python/Python/
H A Dbootstrap_hash.c307 int fstat_result; in dev_urandom() local
311 fstat_result = _Py_fstat_noraise(urandom_cache.fd, &st); in dev_urandom() local
315 if (fstat_result in dev_urandom()
/third_party/rust/crates/nix/test/
H A Dtest_stat.rs106 let fstat_result = fstat(file.as_raw_fd()); in test_stat_and_fstat()
107 assert_stat_results(fstat_result); in test_stat_and_fstat()
145 let fstat_result = fstat(link.as_raw_fd()); in test_stat_fstat_lstat()
146 assert_stat_results(fstat_result); in test_stat_fstat_lstat()
/third_party/python/Modules/
H A Dmmapmodule.c1217 int fstat_result = -1; in new_mmap_object() local
1291 fstat_result = _Py_fstat_noraise(fd, &status); in new_mmap_object() local
1295 if (fd != -1 && fstat_result == 0 && S_ISREG(status.st_mode)) { in new_mmap_object()

Completed in 6 milliseconds