/external/squashfs-tools/squashfs-tools/ |
mksquashfs.h | 146 extern int read_fs_bytes(int, long long, int, void *);
|
read_xattrs.c | 49 extern int read_fs_bytes(int, long long, int, void *); 166 res = read_fs_bytes(fd, sBlk->xattr_id_table_start, sizeof(id_table), 185 res = read_fs_bytes(fd, sBlk->xattr_id_table_start + sizeof(id_table),
|
read_fs.c | 63 res = read_fs_bytes(fd, start, 2, &c_byte); 83 res = read_fs_bytes(fd, start + 2, c_byte, buffer); 95 res = read_fs_bytes(fd, start + 2, c_byte, block); 501 res = read_fs_bytes(fd, SQUASHFS_START, sizeof(struct squashfs_super_block), 711 res = read_fs_bytes(fd, sBlk->id_table_start, 769 res = read_fs_bytes(fd, sBlk->fragment_table_start, 821 res = read_fs_bytes(fd, sBlk->lookup_table_start, 935 res = read_fs_bytes(fd, start, root_inode_start, *cinode_table); 946 res = read_fs_bytes(fd, sBlk->directory_table_start,
|
unsquash-2.c | 67 res = read_fs_bytes(fd, sBlk.s.fragment_table_start, 78 res = read_fs_bytes(fd, sBlk.s.fragment_table_start,
|
unsquashfs.h | 243 extern int read_fs_bytes(int fd, long long, int, void *);
|
unsquash-1.c | 337 res = read_fs_bytes(fd, sBlk.uid_start, (sBlk.no_uids + 347 res = read_fs_bytes(fd, sBlk.uid_start, (sBlk.no_uids +
|
unsquash-3.c | 54 res = read_fs_bytes(fd, sBlk.s.fragment_table_start, 65 res = read_fs_bytes(fd, sBlk.s.fragment_table_start,
|
unsquash-4.c | 52 res = read_fs_bytes(fd, sBlk.s.fragment_table_start, 369 res = read_fs_bytes(fd, sBlk.s.id_table_start,
|
unsquashfs.c | 626 int read_fs_bytes(int fd, long long byte, int bytes, void *buff) function 667 if(read_fs_bytes(fd, start, 2, &c_byte) == FALSE) 671 if(read_fs_bytes(fd, start, 2, &c_byte) == FALSE) 696 res = read_fs_bytes(fd, start + offset, c_byte, buffer); 709 res = read_fs_bytes(fd, start + offset, c_byte, block); 743 if(read_fs_bytes(fd, start, c_byte, data) == FALSE) 757 if(read_fs_bytes(fd, start, c_byte, block) == FALSE) [all...] |
mksquashfs.c | 519 int read_fs_bytes(int fd, long long byte, int bytes, void *buff) function 524 TRACE("read_fs_bytes: reading from position 0x%llx, bytes %d\n", 530 ERROR("read_fs_bytes: Lseek on destination failed because %s, " [all...] |