Lines Matching defs:status
1119 POSIX, set errno and return nonzero on error. Fill status and return 0 on
1122 _Py_fstat_noraise(int fd, struct _Py_stat_struct *status)
1137 memset(status, 0, sizeof(*status));
1151 status->st_mode = _S_IFCHR;
1153 status->st_mode = _S_IFIFO;
1164 _Py_attribute_data_to_stat(&info, 0, status);
1166 status->st_ino = (((uint64_t)info.nFileIndexHigh) << 32) + info.nFileIndexLow;
1169 return fstat(fd, status);
1183 error on error. On POSIX, set errno on error. Fill status and return 0 on
1189 _Py_fstat(int fd, struct _Py_stat_struct *status)
1196 res = _Py_fstat_noraise(fd, status);