Symbol: fssh_dev_t
headers/private/fs_shell/fssh_api_wrapper.h
1536
#define dev_t fssh_dev_t
headers/private/fs_shell/fssh_dirent.h
12
fssh_dev_t d_dev; /* device */
headers/private/fs_shell/fssh_dirent.h
13
fssh_dev_t d_pdev; /* parent device (only for queries) */
headers/private/fs_shell/fssh_disk_device_manager.h
30
fssh_dev_t volume; // [sys]
headers/private/fs_shell/fssh_fs_cache.h
129
extern fssh_status_t fssh_entry_cache_add(fssh_dev_t mountID,
headers/private/fs_shell/fssh_fs_cache.h
132
extern fssh_status_t fssh_entry_cache_add_missing(fssh_dev_t mountID,
headers/private/fs_shell/fssh_fs_cache.h
134
extern fssh_status_t fssh_entry_cache_remove(fssh_dev_t mountID,
headers/private/fs_shell/fssh_fs_index.h
27
extern int fssh_fs_create_index(fssh_dev_t device, const char *name,
headers/private/fs_shell/fssh_fs_index.h
29
extern int fssh_fs_remove_index(fssh_dev_t device, const char *name);
headers/private/fs_shell/fssh_fs_index.h
30
extern int fssh_fs_stat_index(fssh_dev_t device, const char *name,
headers/private/fs_shell/fssh_fs_index.h
33
extern fssh_DIR *fssh_fs_open_index_dir(fssh_dev_t device);
headers/private/fs_shell/fssh_fs_info.h
27
fssh_dev_t dev; /* volume dev_t */
headers/private/fs_shell/fssh_fs_info.h
46
extern fssh_dev_t dev_for_path(const char *path);
headers/private/fs_shell/fssh_fs_info.h
47
extern fssh_dev_t next_dev(int32_t *pos);
headers/private/fs_shell/fssh_fs_info.h
48
extern int fs_stat_dev(fssh_dev_t dev, fssh_fs_info *info);
headers/private/fs_shell/fssh_fs_interface.h
23
typedef fssh_dev_t fssh_mount_id;
headers/private/fs_shell/fssh_fs_interface.h
60
fssh_dev_t id;
headers/private/fs_shell/fssh_fs_query.h
24
extern fssh_DIR* fssh_fs_open_query(fssh_dev_t device,
headers/private/fs_shell/fssh_fs_query.h
26
extern fssh_DIR* fssh_fs_open_live_query(fssh_dev_t device,
headers/private/fs_shell/fssh_fs_volume.h
24
extern fssh_dev_t fssh_fs_mount_volume(const char *where,
headers/private/fs_shell/fssh_stat.h
14
fssh_dev_t fssh_st_dev; /* "device" that this file resides on */
headers/private/fs_shell/fssh_stat.h
21
fssh_dev_t fssh_st_rdev; /* device type (not used) */
src/tools/fs_shell/fssh.cpp
1104
fssh_dev_t volumeID = get_volume_id();
src/tools/fs_shell/fssh.cpp
1205
fssh_dev_t volumeID = get_volume_id();
src/tools/fs_shell/fssh.cpp
1605
fssh_dev_t fsDev = _kern_mount(kMountPoint, device, fsName, 0, NULL, 0);
src/tools/fs_shell/fssh.cpp
282
static fssh_dev_t
src/tools/fs_shell/fssh.cpp
796
fssh_dev_t volumeID = get_volume_id();
src/tools/fs_shell/fssh.cpp
97
fssh_dev_t rootDev = _kern_mount("/", NULL, "rootfs", 0, NULL, 0);
src/tools/fs_shell/fuse.cpp
365
static fssh_dev_t
src/tools/fs_shell/fuse.cpp
383
fssh_dev_t volumeID = get_volume_id();
src/tools/fs_shell/fuse.cpp
435
fssh_dev_t fsDev = _kern_mount(kMountPoint, device, fsName, 0, NULL, 0);
src/tools/fs_shell/fuse.cpp
444
fssh_dev_t volumeID = get_volume_id();
src/tools/fs_shell/fuse.cpp
514
fssh_dev_t volumeID = get_volume_id();
src/tools/fs_shell/fuse.cpp
88
fssh_dev_t rootDev = _kern_mount("/", NULL, "rootfs", 0, NULL, 0);
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
38
fssh_dev_t device;
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
83
fssh_dev_t device = st.fssh_st_dev;
src/tools/fs_shell/syscalls.h
19
fssh_dev_t _kern_mount(const char *path, const char *device,
src/tools/fs_shell/syscalls.h
23
fssh_status_t _kern_read_fs_info(fssh_dev_t device,
src/tools/fs_shell/syscalls.h
25
fssh_status_t _kern_write_fs_info(fssh_dev_t device,
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
30
fssh_dev_t _kern_next_device(int32_t *_cookie);
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/syscalls.h
66
int _kern_open_index_dir(fssh_dev_t device);
src/tools/fs_shell/syscalls.h
67
fssh_status_t _kern_create_index(fssh_dev_t device, const char *name,
src/tools/fs_shell/syscalls.h
69
fssh_status_t _kern_read_index_stat(fssh_dev_t device, const char *name,
src/tools/fs_shell/syscalls.h
71
fssh_status_t _kern_remove_index(fssh_dev_t device, const char *name);
src/tools/fs_shell/syscalls.h
79
extern int _kern_open_query(fssh_dev_t device, const char* query,
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
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
4511
query_open(fssh_dev_t device, const char *query, uint32_t flags,
src/tools/fs_shell/vfs.cpp
4603
static fssh_dev_t
src/tools/fs_shell/vfs.cpp
4918
fs_sync(fssh_dev_t device)
src/tools/fs_shell/vfs.cpp
4977
fs_read_info(fssh_dev_t device, struct fssh_fs_info *info)
src/tools/fs_shell/vfs.cpp
5009
fs_write_info(fssh_dev_t device, const struct fssh_fs_info *info, int mask)
src/tools/fs_shell/vfs.cpp
5026
static fssh_dev_t
src/tools/fs_shell/vfs.cpp
5030
fssh_dev_t device = *_cookie;
src/tools/fs_shell/vfs.cpp
5130
fssh_dev_t
src/tools/fs_shell/vfs.cpp
5154
_kern_read_fs_info(fssh_dev_t device, struct fssh_fs_info *info)
src/tools/fs_shell/vfs.cpp
5164
_kern_write_fs_info(fssh_dev_t device, const struct fssh_fs_info *info, int mask)
src/tools/fs_shell/vfs.cpp
5178
fssh_dev_t device;
src/tools/fs_shell/vfs.cpp
5189
fssh_dev_t
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
5690
_kern_open_index_dir(fssh_dev_t device)
src/tools/fs_shell/vfs.cpp
5697
_kern_create_index(fssh_dev_t device, const char *name, uint32_t type, uint32_t flags)
src/tools/fs_shell/vfs.cpp
5704
_kern_read_index_stat(fssh_dev_t device, const char *name, fssh_struct_stat *stat)
src/tools/fs_shell/vfs.cpp
5711
_kern_remove_index(fssh_dev_t device, const char *name)
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.cpp
5789
_kern_open_query(fssh_dev_t device, const char *query, fssh_size_t queryLength,
src/tools/fs_shell/vfs.h
44
fssh_dev_t device;