Symbol: fssh_mode_t
headers/private/fs_shell/fssh_api_wrapper.h
1548
#define mode_t fssh_mode_t
headers/private/fs_shell/fssh_fcntl.h
71
extern int fssh_creat(const char *path, fssh_mode_t mode);
headers/private/fs_shell/fssh_fs_interface.h
270
fssh_mode_t mode, uint32_t flags, fssh_fs_vnode *_superVnode,
headers/private/fs_shell/fssh_fs_interface.h
365
fssh_mode_t mode, fssh_gid_t nodeGroupID,
headers/private/fs_shell/fssh_fs_interface.h
368
fssh_uid_t nodeUserID, fssh_mode_t nodeMode, uint32_t mask,
headers/private/fs_shell/fssh_stat.h
109
extern int fssh_chmod(const char *path, fssh_mode_t mode);
headers/private/fs_shell/fssh_stat.h
110
extern int fssh_fchmod(int fd, fssh_mode_t mode);
headers/private/fs_shell/fssh_stat.h
111
extern int fssh_mkdir(const char *path, fssh_mode_t mode);
headers/private/fs_shell/fssh_stat.h
112
extern int fssh_mkfifo(const char *path, fssh_mode_t mode);
headers/private/fs_shell/fssh_stat.h
113
extern fssh_mode_t fssh_umask(fssh_mode_t cmask);
headers/private/fs_shell/fssh_stat.h
16
fssh_mode_t fssh_st_mode; /* mode bits (rwx for user, group, etc) */
src/tools/fs_shell/fcntl.cpp
34
fssh_mode_t mode = 0;
src/tools/fs_shell/fcntl.cpp
36
mode = va_arg(args, fssh_mode_t);
src/tools/fs_shell/fcntl.cpp
63
fssh_creat(const char *path, fssh_mode_t mode)
src/tools/fs_shell/fssh.cpp
263
get_permissions(const char* modeString, fssh_mode_t& _permissions)
src/tools/fs_shell/fssh.cpp
269
fssh_mode_t permissions = 0;
src/tools/fs_shell/fssh.cpp
359
fssh_mode_t mode = st.fssh_st_mode;
src/tools/fs_shell/fssh.cpp
689
fssh_mode_t permissions;
src/tools/fs_shell/stat.cpp
106
fssh_mkdir(const char *path, fssh_mode_t mode)
src/tools/fs_shell/stat_util.cpp
26
fssh_mode_t
src/tools/fs_shell/stat_util.cpp
33
fssh_mode_t fsshMode = 0;
src/tools/fs_shell/stat_util.cpp
89
to_platform_mode(fssh_mode_t fsshMode)
src/tools/fs_shell/stat_util.h
16
mode_t to_platform_mode(fssh_mode_t mode);
src/tools/fs_shell/vfs.cpp
187
fssh_mode_t __fssh_gUmask = 022;
src/tools/fs_shell/vfs.cpp
2136
fssh_check_access_permissions(int accessMode, fssh_mode_t mode,
src/tools/fs_shell/vfs.cpp
2173
fssh_mode_t nodeMode, uint32_t mask, const struct fssh_stat* stat)