HomeSort by relevance Sort by last modified time
    Searched refs:ext2_loff_t (Results 1 - 12 of 12) sorted by null

  /external/e2fsprogs/lib/ext2fs/
llseek.c 68 unsigned long, ext2_loff_t *, unsigned int);
71 unsigned long, offset_low,ext2_loff_t *,result,
75 static ext2_loff_t my_llseek (int fd, ext2_loff_t offset, int origin)
77 ext2_loff_t result;
87 return (retval == -1 ? (ext2_loff_t) retval : result);
95 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin)
100 ext2_loff_t result;
114 if (offset < ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1))
    [all...]
ext2_io.h 18 * ext2_loff_t is defined here since unix_io.c needs it.
21 typedef long long ext2_loff_t; typedef
23 typedef long ext2_loff_t; typedef
27 ext2_loff_t ext2fs_llseek (int, ext2_loff_t, int);
dosio.c 378 ext2_loff_t loc;
385 loc = (ext2_loff_t) block * channel->block_size;
415 ext2_loff_t loc;
431 loc = (ext2_loff_t)block * channel->block_size;
getsize.c 129 static int valid_offset (int fd, ext2_loff_t offset)
148 ext2_loff_t high, low;
260 const ext2_loff_t mid = (low + high) / 2;
unix_io.c 100 ext2_loff_t offset;
135 ext2_loff_t location;
141 location = ((ext2_loff_t) block * channel->block_size) + data->offset;
154 if ((sizeof(off_t) >= sizeof(ext2_loff_t)) &&
218 ext2_loff_t location;
233 location = ((ext2_loff_t) block * channel->block_size) + data->offset;
246 if ((sizeof(off_t) >= sizeof(ext2_loff_t)) &&
890 (ext2_loff_t)block * channel->block_size + data->offset,
891 (ext2_loff_t)count * channel->block_size,
undo_io.c 145 ext2_loff_t offset;
327 ext2_loff_t offset;
908 ext2_loff_t location;
  /external/e2fsprogs/lib/support/
quotaio.h 125 unsigned int (*e2fs_read)(struct quota_file *qf, ext2_loff_t offset,
127 unsigned int (*e2fs_write)(struct quota_file *qf, ext2_loff_t offset,
quotaio_tree.c 445 static ext2_loff_t find_block_dqentry(struct quota_handle *h,
471 static ext2_loff_t find_tree_dqentry(struct quota_handle *h,
476 ext2_loff_t ret = 0;
497 static inline ext2_loff_t find_dqentry(struct quota_handle *h,
509 ext2_loff_t offset;
quotaio.c 164 ext2_loff_t offset,
188 ext2_loff_t offset,
  /external/e2fsprogs/misc/
badblocks.c 290 ext2_loff_t offset)
370 ((ext2_loff_t) current_block) * block_size);
376 if (ext2fs_llseek (dev, (ext2_loff_t) current_block * block_size,
377 SEEK_SET) != (ext2_loff_t) current_block * block_size)
443 ((ext2_loff_t) current_block) * block_size);
449 if (ext2fs_llseek (dev, (ext2_loff_t) current_block * block_size,
450 SEEK_SET) != (ext2_loff_t) current_block * block_size)
    [all...]
e2image.c 115 static ext2_loff_t seek_relative(int fd, int offset)
117 ext2_loff_t ret = ext2fs_llseek(fd, offset, SEEK_CUR);
125 static ext2_loff_t seek_set(int fd, ext2_loff_t offset)
127 ext2_loff_t ret = ext2fs_llseek(fd, offset, SEEK_SET);
728 ext2_loff_t offset;
995 ext2_loff_t offset;
    [all...]
  /external/e2fsprogs/debugfs/
logdump.c 280 ext2_loff_t offset, char *buf, unsigned int size)
381 ((ext2_loff_t) blocknr) * blocksize,
409 ((ext2_loff_t) blocknr) * blocksize,
648 ((ext2_loff_t) log_blocknr) * blocksize,

Completed in 834 milliseconds