Searched refs:ext2_loff_t (Results 1 – 11 of 11) sorted by relevance
/external/e2fsprogs/lib/ext2fs/ |
D | llseek.c | 63 unsigned long, ext2_loff_t *, unsigned int); 66 unsigned long, offset_low,ext2_loff_t *,result, in _syscall5() argument 70 static ext2_loff_t my_llseek (int fd, ext2_loff_t offset, int origin) in _syscall5() 72 ext2_loff_t result; in _syscall5() 82 return (retval == -1 ? (ext2_loff_t) retval : result); in _syscall5() 90 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin) in ext2fs_llseek() 95 ext2_loff_t result; in ext2fs_llseek() 109 if (offset < ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1))) in ext2fs_llseek() 124 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin) in ext2fs_llseek() 129 if ((sizeof(off_t) < sizeof(ext2_loff_t)) && in ext2fs_llseek() [all …]
|
D | ext2_io.h | 19 typedef long long ext2_loff_t; typedef 21 typedef long ext2_loff_t; typedef 25 ext2_loff_t ext2fs_llseek (int, ext2_loff_t, int);
|
D | getsize.c | 127 static int valid_offset (int fd, ext2_loff_t offset) in valid_offset() 146 ext2_loff_t high, low; in ext2fs_get_device_size2() 258 const ext2_loff_t mid = (low + high) / 2; in ext2fs_get_device_size2()
|
D | dosio.c | 376 ext2_loff_t loc; in dos_read_blk() 383 loc = (ext2_loff_t) block * channel->block_size; in dos_read_blk() 413 ext2_loff_t loc; in dos_write_blk() 429 loc = (ext2_loff_t)block * channel->block_size; in dos_write_blk()
|
D | unix_io.c | 90 ext2_loff_t offset; 167 ext2_loff_t location; in raw_read_blk() 173 location = ((ext2_loff_t) block * channel->block_size) + data->offset; in raw_read_blk() 228 ext2_loff_t location; in raw_write_blk() 243 location = ((ext2_loff_t) block * channel->block_size) + data->offset; in raw_write_blk()
|
D | undo_io.c | 70 ext2_loff_t offset; 207 ext2_loff_t offset; in undo_write_tdb() 521 ext2_loff_t location; in undo_write_byte()
|
/external/e2fsprogs/lib/quota/ |
D | quotaio.h | 75 unsigned int (*e2fs_read)(struct quota_file *qf, ext2_loff_t offset, 77 unsigned int (*e2fs_write)(struct quota_file *qf, ext2_loff_t offset,
|
D | quotaio_tree.c | 438 static ext2_loff_t find_block_dqentry(struct quota_handle *h, in find_block_dqentry() 464 static ext2_loff_t find_tree_dqentry(struct quota_handle *h, in find_tree_dqentry() 469 ext2_loff_t ret = 0; in find_tree_dqentry() 490 static inline ext2_loff_t find_dqentry(struct quota_handle *h, in find_dqentry() 502 ext2_loff_t offset; in qtree_read_dquot()
|
D | quotaio.c | 150 ext2_loff_t offset, in quota_write_nomount() 174 ext2_loff_t offset, in quota_read_nomount()
|
/external/e2fsprogs/misc/ |
D | badblocks.c | 284 ext2_loff_t offset) in set_o_direct() 363 ((ext2_loff_t) current_block) * block_size); in do_read() 369 if (ext2fs_llseek (dev, (ext2_loff_t) current_block * block_size, in do_read() 370 SEEK_SET) != (ext2_loff_t) current_block * block_size) in do_read() 436 ((ext2_loff_t) current_block) * block_size); in do_write() 442 if (ext2fs_llseek (dev, (ext2_loff_t) current_block * block_size, in do_write() 443 SEEK_SET) != (ext2_loff_t) current_block * block_size) in do_write()
|
D | e2image.c | 109 static ext2_loff_t seek_relative(int fd, int offset) in seek_relative() 111 ext2_loff_t ret = ext2fs_llseek(fd, offset, SEEK_CUR); in seek_relative() 119 static ext2_loff_t seek_set(int fd, ext2_loff_t offset) in seek_set() 121 ext2_loff_t ret = ext2fs_llseek(fd, offset, SEEK_SET); in seek_set() 716 ext2_loff_t offset; in output_meta_data_blocks() 981 ext2_loff_t offset; in flush_l2_cache()
|