Home | History | Annotate | Download | only in Modules

Lines Matching defs:st_mode

1038     unsigned short st_mode;
1099 result->st_mode = attributes_to_mode(info->dwFileAttributes);
1176 result->st_mode |= 0111;
1213 result->st_mode |= 0111;
1250 result->st_mode = _S_IFCHR;
1252 result->st_mode = _S_IFIFO;
1261 result->st_mode = attributes_to_mode(info.dwFileAttributes);
1278 or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\
1286 {"st_mode", "protection bits"},
1477 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long)st->st_mode));
6896 if (fstat(fd, &buf) == 0 && S_ISDIR(buf.st_mode)) {