Symbol: fssh_ino_t
headers/private/fs_shell/fssh_api_wrapper.h
1537
#define ino_t fssh_ino_t
headers/private/fs_shell/fssh_dirent.h
14
fssh_ino_t d_ino; /* inode number */
headers/private/fs_shell/fssh_dirent.h
15
fssh_ino_t d_pino; /* parent inode (only for queries) */
headers/private/fs_shell/fssh_fs_cache.h
130
fssh_ino_t dirID, const char* name,
headers/private/fs_shell/fssh_fs_cache.h
131
fssh_ino_t nodeID);
headers/private/fs_shell/fssh_fs_cache.h
133
fssh_ino_t dirID, const char* name);
headers/private/fs_shell/fssh_fs_cache.h
135
fssh_ino_t dirID, const char* name);
headers/private/fs_shell/fssh_fs_info.h
28
fssh_ino_t root; /* root ino_t */
headers/private/fs_shell/fssh_fs_interface.h
119
fssh_status_t (*create_sub_vnode)(fssh_fs_volume *volume, fssh_ino_t id,
headers/private/fs_shell/fssh_fs_interface.h
24
typedef fssh_ino_t fssh_vnode_id;
headers/private/fs_shell/fssh_fs_interface.h
271
fssh_ino_t *_nodeID);
headers/private/fs_shell/fssh_stat.h
15
fssh_ino_t fssh_st_ino; /* this file's inode #, unique per device */
src/tools/fs_shell/partition_support.cpp
28
FileRestriction(fssh_dev_t device, fssh_ino_t node, fssh_off_t startOffset,
src/tools/fs_shell/partition_support.cpp
39
fssh_ino_t node;
src/tools/fs_shell/partition_support.cpp
51
find_file_restriction(fssh_dev_t device, fssh_ino_t node)
src/tools/fs_shell/partition_support.cpp
84
fssh_ino_t node = st.fssh_st_ino;
src/tools/fs_shell/syscalls.h
28
fssh_status_t _kern_entry_ref_to_path(fssh_dev_t device, fssh_ino_t inode,
src/tools/fs_shell/syscalls.h
31
int _kern_open_entry_ref(fssh_dev_t device, fssh_ino_t inode,
src/tools/fs_shell/syscalls.h
34
int _kern_open_dir_entry_ref(fssh_dev_t device, fssh_ino_t inode,
src/tools/fs_shell/syscalls.h
41
fssh_status_t _kern_create_dir_entry_ref(fssh_dev_t device, fssh_ino_t inode,
src/tools/fs_shell/vfs.cpp
1066
fssh_ino_t id;
src/tools/fs_shell/vfs.cpp
2324
fssh_entry_cache_add(fssh_dev_t mountID, fssh_ino_t dirID, const char* name,
src/tools/fs_shell/vfs.cpp
2325
fssh_ino_t nodeID)
src/tools/fs_shell/vfs.cpp
2333
fssh_entry_cache_add_missing(fssh_dev_t mountID, fssh_ino_t dirID,
src/tools/fs_shell/vfs.cpp
2342
fssh_entry_cache_remove(fssh_dev_t mountID, fssh_ino_t dirID, const char* name)
src/tools/fs_shell/vfs.cpp
2781
vfs_entry_ref_to_path(fssh_dev_t device, fssh_ino_t inode, const char *leaf,
src/tools/fs_shell/vfs.cpp
5197
_kern_open_entry_ref(fssh_dev_t device, fssh_ino_t inode, const char *name, int openMode, int perms)
src/tools/fs_shell/vfs.cpp
5256
_kern_open_dir_entry_ref(fssh_dev_t device, fssh_ino_t inode, const char *name)
src/tools/fs_shell/vfs.cpp
5316
_kern_create_dir_entry_ref(fssh_dev_t device, fssh_ino_t inode, const char *name, int perms)
src/tools/fs_shell/vfs.cpp
5781
_kern_entry_ref_to_path(fssh_dev_t device, fssh_ino_t inode, const char *leaf,
src/tools/fs_shell/vfs.h
45
fssh_ino_t node;