Symbol: fssh_dirent
headers/private/fs_shell/fssh_api_wrapper.h
193
#define dirent fssh_dirent
headers/private/fs_shell/fssh_dirent.h
26
struct fssh_dirent ent;
headers/private/fs_shell/fssh_dirent.h
34
struct fssh_dirent *fssh_readdir(fssh_DIR *dir);
headers/private/fs_shell/fssh_dirent.h
35
int fssh_readdir_r(fssh_DIR *dir, struct fssh_dirent *entry,
headers/private/fs_shell/fssh_dirent.h
36
struct fssh_dirent **_result);
headers/private/fs_shell/fssh_fs_attr.h
43
extern struct fssh_dirent *fssh_fs_read_attr_dir(fssh_DIR *dir);
headers/private/fs_shell/fssh_fs_index.h
35
extern struct fssh_dirent *fssh_fs_read_index_dir(fssh_DIR *indexDirectory);
headers/private/fs_shell/fssh_fs_interface.h
113
struct fssh_dirent *buffer, fssh_size_t bufferSize,
headers/private/fs_shell/fssh_fs_interface.h
16
struct fssh_dirent;
headers/private/fs_shell/fssh_fs_interface.h
220
fssh_fs_cookie cookie, struct fssh_dirent *buffer,
headers/private/fs_shell/fssh_fs_interface.h
233
fssh_fs_cookie cookie, struct fssh_dirent *buffer,
headers/private/fs_shell/fssh_fs_interface.h
94
fssh_fs_cookie cookie, struct fssh_dirent *buffer,
headers/private/fs_shell/fssh_fs_query.h
30
extern struct fssh_dirent* fssh_fs_read_query(fssh_DIR *d);
headers/private/fs_shell/fssh_fs_query.h
32
extern fssh_status_t fssh_get_path_for_dirent(struct fssh_dirent *dent,
src/tools/fs_shell/command_cp.cpp
100
virtual fssh_ssize_t GetNextEntry(struct fssh_dirent *entry, int size) = 0;
src/tools/fs_shell/command_cp.cpp
257
virtual fssh_ssize_t GetNextEntry(struct fssh_dirent *entry, int size)
src/tools/fs_shell/command_cp.cpp
544
char buffer[sizeof(fssh_dirent) + B_ATTR_NAME_LENGTH];
src/tools/fs_shell/command_cp.cpp
545
struct fssh_dirent *entry = (fssh_dirent *)buffer;
src/tools/fs_shell/command_cp.cpp
659
virtual fssh_ssize_t GetNextEntry(struct fssh_dirent *entry, int size)
src/tools/fs_shell/command_cp.cpp
947
char buffer[sizeof(fssh_dirent) + FSSH_B_FILE_NAME_LENGTH];
src/tools/fs_shell/command_cp.cpp
948
struct fssh_dirent *entry = (struct fssh_dirent *)buffer;
src/tools/fs_shell/fd.cpp
668
_kern_read_dir(int fd, struct fssh_dirent *buffer, fssh_size_t bufferSize, uint32_t maxCount)
src/tools/fs_shell/fd.h
36
struct fssh_dirent *buffer, fssh_size_t bufferSize,
src/tools/fs_shell/fssh.cpp
1218
char buffer[sizeof(fssh_dirent) + FSSH_B_FILE_NAME_LENGTH];
src/tools/fs_shell/fssh.cpp
1219
fssh_dirent* entry = (fssh_dirent*)buffer;
src/tools/fs_shell/fssh.cpp
539
char buffer[sizeof(fssh_dirent) + FSSH_B_FILE_NAME_LENGTH];
src/tools/fs_shell/fssh.cpp
540
fssh_dirent *entry = (fssh_dirent*)buffer;
src/tools/fs_shell/fssh.cpp
973
char buffer[sizeof(fssh_dirent) + FSSH_B_FILE_NAME_LENGTH];
src/tools/fs_shell/fssh.cpp
974
fssh_dirent* entry = (fssh_dirent*)buffer;
src/tools/fs_shell/fuse.cpp
183
char buffer[sizeof(fssh_dirent) + FSSH_B_FILE_NAME_LENGTH];
src/tools/fs_shell/fuse.cpp
184
fssh_dirent* dirEntry = (fssh_dirent*)buffer;
src/tools/fs_shell/syscalls.h
95
fssh_ssize_t _kern_read_dir(int fd, struct fssh_dirent *buffer,
src/tools/fs_shell/vfs.cpp
1349
struct fssh_dirent *buffer, fssh_size_t bufferSize)
src/tools/fs_shell/vfs.cpp
1351
if (bufferSize < sizeof(struct fssh_dirent))
src/tools/fs_shell/vfs.cpp
1406
char buffer[sizeof(struct fssh_dirent) + FSSH_B_FILE_NAME_LENGTH];
src/tools/fs_shell/vfs.cpp
1407
struct fssh_dirent *dirent = (struct fssh_dirent *)buffer;
src/tools/fs_shell/vfs.cpp
1470
char nameBuffer[sizeof(struct fssh_dirent) + FSSH_B_FILE_NAME_LENGTH];
src/tools/fs_shell/vfs.cpp
1471
char *name = &((struct fssh_dirent *)nameBuffer)->d_name[0];
src/tools/fs_shell/vfs.cpp
1481
(struct fssh_dirent*)nameBuffer, sizeof(nameBuffer));
src/tools/fs_shell/vfs.cpp
201
struct fssh_dirent *buffer, fssh_size_t bufferSize,
src/tools/fs_shell/vfs.cpp
204
struct fssh_dirent *buffer, fssh_size_t bufferSize,
src/tools/fs_shell/vfs.cpp
210
struct fssh_dirent *buffer, fssh_size_t bufferSize,
src/tools/fs_shell/vfs.cpp
228
struct fssh_dirent *buffer, fssh_size_t bufferSize,
src/tools/fs_shell/vfs.cpp
234
struct fssh_dirent *buffer, fssh_size_t bufferSize,
src/tools/fs_shell/vfs.cpp
3436
dir_read(struct file_descriptor *descriptor, struct fssh_dirent *buffer,
src/tools/fs_shell/vfs.cpp
3444
fix_dirent(struct vnode *parent, struct fssh_dirent *entry)
src/tools/fs_shell/vfs.cpp
3487
dir_read(struct vnode *vnode, void *cookie, struct fssh_dirent *buffer,
src/tools/fs_shell/vfs.cpp
4050
attr_dir_read(struct file_descriptor *descriptor, struct fssh_dirent *buffer,
src/tools/fs_shell/vfs.cpp
4411
index_dir_read(struct file_descriptor *descriptor, struct fssh_dirent *buffer,
src/tools/fs_shell/vfs.cpp
4575
query_read(struct file_descriptor *descriptor, struct fssh_dirent *buffer,