st_mode          1207 core/ngx_cycle.c             if ((fi.st_mode & (S_IRUSR|S_IWUSR)) != (S_IRUSR|S_IWUSR)) {
st_mode          1209 core/ngx_cycle.c                 fi.st_mode |= (S_IRUSR|S_IWUSR);
st_mode          1211 core/ngx_cycle.c                 if (chmod((const char *) file[i].name.data, fi.st_mode) == -1) {
st_mode           515 core/ngx_file.c         if ((fi.st_mode & (S_IRUSR|S_IWUSR|S_IXUSR))
st_mode           518 core/ngx_file.c             fi.st_mode |= (S_IRUSR|S_IWUSR|S_IXUSR);
st_mode           520 core/ngx_file.c             if (chmod((const char *) path[i]->name.data, fi.st_mode) == -1) {
st_mode           154 os/unix/ngx_files.h #define ngx_is_dir(sb)           (S_ISDIR((sb)->st_mode))
st_mode           155 os/unix/ngx_files.h #define ngx_is_file(sb)          (S_ISREG((sb)->st_mode))
st_mode           156 os/unix/ngx_files.h #define ngx_is_link(sb)          (S_ISLNK((sb)->st_mode))
st_mode           157 os/unix/ngx_files.h #define ngx_is_exec(sb)          (((sb)->st_mode & S_IXUSR) == S_IXUSR)
st_mode           158 os/unix/ngx_files.h #define ngx_file_access(sb)      ((sb)->st_mode & 0777)
st_mode           239 os/unix/ngx_files.h     (((dir)->type) ? ((dir)->type == DT_DIR) : (S_ISDIR((dir)->info.st_mode)))
st_mode           241 os/unix/ngx_files.h     (((dir)->type) ? ((dir)->type == DT_REG) : (S_ISREG((dir)->info.st_mode)))
st_mode           243 os/unix/ngx_files.h     (((dir)->type) ? ((dir)->type == DT_LNK) : (S_ISLNK((dir)->info.st_mode)))
st_mode           247 os/unix/ngx_files.h #define ngx_de_is_dir(dir)       (S_ISDIR((dir)->info.st_mode))
st_mode           248 os/unix/ngx_files.h #define ngx_de_is_file(dir)      (S_ISREG((dir)->info.st_mode))
st_mode           249 os/unix/ngx_files.h #define ngx_de_is_link(dir)      (S_ISLNK((dir)->info.st_mode))
st_mode           253 os/unix/ngx_files.h #define ngx_de_access(dir)       (((dir)->info.st_mode) & 0777)