Lines Matching refs:str_mode
3237 str_mode = mode[1:]
3239 {'r': stat.S_IRUSR, '-': 0}[str_mode[0]]
3240 | {'w': stat.S_IWUSR, '-': 0}[str_mode[1]]
3243 'S': stat.S_ISUID}[str_mode[2]]
3244 | {'r': stat.S_IRGRP, '-': 0}[str_mode[3]]
3245 | {'w': stat.S_IWGRP, '-': 0}[str_mode[4]]
3248 'S': stat.S_ISGID}[str_mode[5]]
3249 | {'r': stat.S_IROTH, '-': 0}[str_mode[6]]
3250 | {'w': stat.S_IWOTH, '-': 0}[str_mode[7]]
3253 'T': stat.S_ISVTX}[str_mode[8]]