Home | History | Annotate | Download | only in strace

Lines Matching refs:mode

41 print_symbolic_mode_t(const unsigned int mode)
45 if (mode & S_IFMT) {
46 ifmt = xlookup(modetypes, mode & S_IFMT);
48 tprintf("%#03o", mode);
58 (mode & S_ISUID) ? "S_ISUID|" : "",
59 (mode & S_ISGID) ? "S_ISGID|" : "",
60 (mode & S_ISVTX) ? "S_ISVTX|" : "",
61 mode & ~(S_IFMT|S_ISUID|S_ISGID|S_ISVTX));
65 print_numeric_umode_t(const unsigned short mode)
67 tprintf("%#03ho", mode);
71 print_numeric_long_umask(const unsigned long mode)
73 tprintf("%#03lo", mode);