Home | History | Annotate | Download | only in pending

Lines Matching full:st_mode

108   else if (!S_ISDIR(st->st_mode) && st->st_nlink > 1) {
176 if (S_ISDIR(st->st_mode) && name[strlen(name)-1] != '/') {
194 itoo(hdr.mode, sizeof(hdr.mode), st->st_mode &07777);
207 } else if (S_ISREG(st->st_mode)) {
216 } else if (S_ISLNK(st->st_mode)) {
227 else if (S_ISDIR(st->st_mode)) hdr.type = '5';
228 else if (S_ISFIFO(st->st_mode)) hdr.type = '6';
229 else if (S_ISBLK(st->st_mode) || S_ISCHR(st->st_mode)) {
230 hdr.type = (S_ISCHR(st->st_mode))?'3':'4';
234 error_msg("unknown file type '%o'", st->st_mode & S_IFMT);