Symbol: ntfs_device
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
117
struct ntfs_device *ntfs_device_alloc(const char *name, const long state,
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
120
struct ntfs_device *dev;
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
127
dev = ntfs_malloc(sizeof(struct ntfs_device));
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
155
int ntfs_device_free(struct ntfs_device *dev)
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
176
int ntfs_device_sync(struct ntfs_device *dev)
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
208
s64 ntfs_pread(struct ntfs_device *dev, const s64 pos, s64 count, void *b)
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
258
s64 ntfs_pwrite(struct ntfs_device *dev, const s64 pos, s64 count,
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
332
s64 ntfs_mst_pread(struct ntfs_device *dev, const s64 pos, s64 count,
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
389
s64 ntfs_mst_pwrite(struct ntfs_device *dev, const s64 pos, s64 count,
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
510
static int ntfs_device_offset_valid(struct ntfs_device *dev, s64 ofs)
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
532
s64 ntfs_device_size_get(struct ntfs_device *dev, int block_size)
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
652
s64 ntfs_device_partition_start_sector_get(struct ntfs_device *dev)
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
673
static int ntfs_device_get_geo(struct ntfs_device *dev)
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
812
int ntfs_device_heads_get(struct ntfs_device *dev)
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
842
int ntfs_device_sectors_per_track_get(struct ntfs_device *dev)
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
871
int ntfs_device_sector_size_get(struct ntfs_device *dev)
src/add-ons/kernel/file_systems/ntfs/libntfs/device.c
928
int ntfs_device_block_size_set(struct ntfs_device *dev,
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
104
int (*open)(struct ntfs_device *dev, int flags);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
105
int (*close)(struct ntfs_device *dev);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
106
s64 (*seek)(struct ntfs_device *dev, s64 offset, int whence);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
107
s64 (*read)(struct ntfs_device *dev, void *buf, s64 count);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
108
s64 (*write)(struct ntfs_device *dev, const void *buf, s64 count);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
109
s64 (*pread)(struct ntfs_device *dev, void *buf, s64 count, s64 offset);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
110
s64 (*pwrite)(struct ntfs_device *dev, const void *buf, s64 count,
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
112
int (*sync)(struct ntfs_device *dev);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
113
int (*stat)(struct ntfs_device *dev, struct stat *buf);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
114
int (*control)(struct ntfs_device *dev, unsigned long request,
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
118
extern struct ntfs_device *ntfs_device_alloc(const char *name, const long state,
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
120
extern int ntfs_device_free(struct ntfs_device *dev);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
121
extern int ntfs_device_sync(struct ntfs_device *dev);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
123
extern s64 ntfs_pread(struct ntfs_device *dev, const s64 pos, s64 count,
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
125
extern s64 ntfs_pwrite(struct ntfs_device *dev, const s64 pos, s64 count,
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
128
extern s64 ntfs_mst_pread(struct ntfs_device *dev, const s64 pos, s64 count,
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
130
extern s64 ntfs_mst_pwrite(struct ntfs_device *dev, const s64 pos, s64 count,
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
138
extern s64 ntfs_device_size_get(struct ntfs_device *dev, int block_size);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
139
extern s64 ntfs_device_partition_start_sector_get(struct ntfs_device *dev);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
140
extern int ntfs_device_heads_get(struct ntfs_device *dev);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
141
extern int ntfs_device_sectors_per_track_get(struct ntfs_device *dev);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
142
extern int ntfs_device_sector_size_get(struct ntfs_device *dev);
src/add-ons/kernel/file_systems/ntfs/libntfs/device.h
143
extern int ntfs_device_block_size_set(struct ntfs_device *dev, int block_size);
src/add-ons/kernel/file_systems/ntfs/libntfs/device_io.h
75
int ntfs_device_win32_ftruncate(struct ntfs_device*, s64);
src/add-ons/kernel/file_systems/ntfs/libntfs/ioctl.c
91
struct ntfs_device *dev = vol->dev;
src/add-ons/kernel/file_systems/ntfs/libntfs/unix_io.c
117
static int ntfs_device_unix_io_open(struct ntfs_device *dev, int flags)
src/add-ons/kernel/file_systems/ntfs/libntfs/unix_io.c
203
static int ntfs_device_unix_io_close(struct ntfs_device *dev)
src/add-ons/kernel/file_systems/ntfs/libntfs/unix_io.c
244
static s64 ntfs_device_unix_io_seek(struct ntfs_device *dev, s64 offset,
src/add-ons/kernel/file_systems/ntfs/libntfs/unix_io.c
260
static s64 ntfs_device_unix_io_read(struct ntfs_device *dev, void *buf,
src/add-ons/kernel/file_systems/ntfs/libntfs/unix_io.c
276
static s64 ntfs_device_unix_io_write(struct ntfs_device *dev, const void *buf,
src/add-ons/kernel/file_systems/ntfs/libntfs/unix_io.c
298
static s64 ntfs_device_unix_io_pread(struct ntfs_device *dev, void *buf,
src/add-ons/kernel/file_systems/ntfs/libntfs/unix_io.c
315
static s64 ntfs_device_unix_io_pwrite(struct ntfs_device *dev, const void *buf,
src/add-ons/kernel/file_systems/ntfs/libntfs/unix_io.c
334
static int ntfs_device_unix_io_sync(struct ntfs_device *dev)
src/add-ons/kernel/file_systems/ntfs/libntfs/unix_io.c
357
static int ntfs_device_unix_io_stat(struct ntfs_device *dev, struct stat *buf)
src/add-ons/kernel/file_systems/ntfs/libntfs/unix_io.c
372
static int ntfs_device_unix_io_ioctl(struct ntfs_device *dev,
src/add-ons/kernel/file_systems/ntfs/libntfs/volume.c
1418
struct ntfs_device *dev;
src/add-ons/kernel/file_systems/ntfs/libntfs/volume.c
1469
struct ntfs_device *dev;
src/add-ons/kernel/file_systems/ntfs/libntfs/volume.c
205
struct ntfs_device *dev = v->dev;
src/add-ons/kernel/file_systems/ntfs/libntfs/volume.c
501
ntfs_volume *ntfs_volume_startup(struct ntfs_device *dev,
src/add-ons/kernel/file_systems/ntfs/libntfs/volume.c
938
ntfs_volume *ntfs_device_mount(struct ntfs_device *dev, ntfs_mount_flags flags)
src/add-ons/kernel/file_systems/ntfs/libntfs/volume.h
183
struct ntfs_device *dev; /* NTFS device associated with
src/add-ons/kernel/file_systems/ntfs/libntfs/volume.h
295
extern ntfs_volume *ntfs_volume_startup(struct ntfs_device *dev,
src/add-ons/kernel/file_systems/ntfs/libntfs/volume.h
298
extern ntfs_volume *ntfs_device_mount(struct ntfs_device *dev,
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1206
static int ntfs_device_win32_open(struct ntfs_device *dev, int flags)
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1282
static s64 ntfs_device_win32_seek(struct ntfs_device *dev, s64 offset,
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1443
static s64 ntfs_device_win32_read(struct ntfs_device *dev, void *b, s64 count)
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1530
static int ntfs_device_win32_close(struct ntfs_device *dev)
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1576
static int ntfs_device_win32_sync(struct ntfs_device *dev)
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1635
static s64 ntfs_device_win32_write(struct ntfs_device *dev, const void *b,
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1768
static int ntfs_device_win32_stat(struct ntfs_device *dev, struct stat *buf)
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1810
static __inline__ int ntfs_win32_hdio_getgeo(struct ntfs_device *dev,
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1833
static __inline__ int ntfs_win32_blksszget(struct ntfs_device *dev,int *argp)
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1850
static int ntfs_device_win32_ioctl(struct ntfs_device *dev,
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1906
static s64 ntfs_device_win32_pread(struct ntfs_device *dev, void *b,
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
1926
static s64 ntfs_device_win32_pwrite(struct ntfs_device *dev, const void *b,
src/add-ons/kernel/file_systems/ntfs/libntfs/win32_io.c
2020
int ntfs_device_win32_ftruncate(struct ntfs_device *dev, s64 size)
src/add-ons/kernel/file_systems/ntfs/utils/mkntfs.c
507
static long long mkntfs_write(struct ntfs_device *dev,
src/add-ons/kernel/file_systems/ntfs/utils/mkntfs.c
543
static s64 mkntfs_bitmap_write(struct ntfs_device *dev,
src/add-ons/kernel/file_systems/ntfs/utils/mkntfs.c
564
static s64 mkntfs_logfile_write(struct ntfs_device *dev,
src/add-ons/kernel/file_systems/ntfs/utils/mkntfs.c
593
static s64 ntfs_rlwrite(struct ntfs_device *dev, const runlist *rl,