Lines Matching defs:mask
972 ret = chmod(dst,info_file.st_mode & g_umask.mask);
1112 mode_t mask;
1117 with process's file mode creation mask (umask) */
1119 mask = 0777 & (~um); // octal: 0755 is expected
1121 // printf("\n umask = 0%03o mask = 0%03o\n", um, mask);
1123 // mask = 0777; // debug we can disable the restriction:
1203 TRACE_chmod(path, (st.st_mode) & g_umask.mask)
1205 res = fchmodat(AT_FDCWD, path, (st.st_mode) & g_umask.mask,
1211 TRACE_chmod(path, (st.st_mode) & g_umask.mask)
1212 res = chmod(path, (st.st_mode) & g_umask.mask);