Symbol: fssh_iovec
headers/private/fs_shell/fssh_api_wrapper.h
1647
#define iovec fssh_iovec
headers/private/fs_shell/fssh_drivers.h
33
fssh_off_t position, const fssh_iovec *vec,
headers/private/fs_shell/fssh_drivers.h
36
fssh_off_t position, const fssh_iovec *vec,
headers/private/fs_shell/fssh_fs_interface.h
141
fssh_fs_cookie cookie, fssh_off_t pos, const fssh_iovec *vecs,
headers/private/fs_shell/fssh_fs_interface.h
144
fssh_fs_cookie cookie, fssh_off_t pos, const fssh_iovec *vecs,
headers/private/fs_shell/fssh_fs_interface.h
18
struct fssh_iovec;
headers/private/fs_shell/fssh_fs_interface.h
372
const struct fssh_iovec *vecs, fssh_size_t count,
headers/private/fs_shell/fssh_fs_interface.h
375
const struct fssh_iovec *vecs, fssh_size_t count,
headers/private/fs_shell/fssh_fs_interface.h
379
fssh_size_t fileVecCount, const struct fssh_iovec *vecs,
headers/private/fs_shell/fssh_fs_interface.h
384
fssh_size_t fileVecCount, const struct fssh_iovec *vecs,
headers/private/fs_shell/fssh_uio.h
22
fssh_ssize_t fssh_readv(int fd, const struct fssh_iovec *vector,
headers/private/fs_shell/fssh_uio.h
25
fssh_iovec *vec, int count);
headers/private/fs_shell/fssh_uio.h
26
fssh_ssize_t fssh_writev(int fd, const struct fssh_iovec *vector,
headers/private/fs_shell/fssh_uio.h
29
const struct fssh_iovec *vec, int count);
src/tools/fs_shell/fd.cpp
504
_kern_readv(int fd, fssh_off_t pos, const fssh_iovec *vecs, fssh_size_t count)
src/tools/fs_shell/fd.cpp
583
_kern_writev(int fd, fssh_off_t pos, const fssh_iovec *vecs, fssh_size_t count)
src/tools/fs_shell/file_cache.cpp
105
fssh_iovec vec;
src/tools/fs_shell/file_cache.cpp
86
fssh_iovec vec;
src/tools/fs_shell/syscalls.h
12
struct fssh_iovec;
src/tools/fs_shell/syscalls.h
86
fssh_ssize_t _kern_readv(int fd, fssh_off_t pos, const fssh_iovec *vecs,
src/tools/fs_shell/syscalls.h
90
fssh_ssize_t _kern_writev(int fd, fssh_off_t pos, const fssh_iovec *vecs,
src/tools/fs_shell/uio.cpp
111
fssh_writev_pos(int fd, fssh_off_t pos, const struct fssh_iovec *vec, int count)
src/tools/fs_shell/uio.cpp
34
prepare_iovecs(const struct fssh_iovec *vecs, int count,
src/tools/fs_shell/uio.cpp
52
fssh_readv(int fd, const struct fssh_iovec *vector, int count)
src/tools/fs_shell/uio.cpp
72
fssh_readv_pos(int fd, fssh_off_t pos, const struct fssh_iovec *vec, int count)
src/tools/fs_shell/uio.cpp
91
fssh_writev(int fd, const struct fssh_iovec *vector, int count)
src/tools/fs_shell/vfs.cpp
1732
fssh_size_t fileVecCount, const fssh_iovec *vecs, fssh_size_t vecCount,
src/tools/fs_shell/vfs.cpp
1814
fssh_iovec tempVecs[MAX_TEMP_IO_VECS];
src/tools/fs_shell/vfs.cpp
2221
fssh_read_pages(int fd, fssh_off_t pos, const fssh_iovec *vecs,
src/tools/fs_shell/vfs.cpp
2229
fssh_iovec* newVecs = NULL;
src/tools/fs_shell/vfs.cpp
2233
newVecs = new(std::nothrow) fssh_iovec[count];
src/tools/fs_shell/vfs.cpp
2262
fssh_write_pages(int fd, fssh_off_t pos, const fssh_iovec *vecs,
src/tools/fs_shell/vfs.cpp
2270
fssh_iovec* newVecs = NULL;
src/tools/fs_shell/vfs.cpp
2274
newVecs = new(std::nothrow) fssh_iovec[count];
src/tools/fs_shell/vfs.cpp
2304
fssh_size_t fileVecCount, const fssh_iovec *vecs, fssh_size_t vecCount,
src/tools/fs_shell/vfs.cpp
2315
fssh_size_t fileVecCount, const fssh_iovec *vecs, fssh_size_t vecCount,
src/tools/fs_shell/vfs.cpp
2436
const fssh_iovec *vecs, fssh_size_t count, fssh_size_t *_numBytes)
src/tools/fs_shell/vfs.cpp
2447
const fssh_iovec *vecs, fssh_size_t count, fssh_size_t *_numBytes)
src/tools/fs_shell/vfs.h
52
uint8_t _##name[sizeof(fssh_iovecs) + (size)*sizeof(fssh_iovec)]; \
src/tools/fs_shell/vfs.h
79
const fssh_iovec *vecs, fssh_size_t count,
src/tools/fs_shell/vfs.h
82
fssh_off_t pos, const fssh_iovec *vecs, fssh_size_t count,