Searched defs:id_table (Results 1 - 7 of 7) sorted by relevance
/external/squashfs-tools/kernel/fs/squashfs/ |
H A D | id.c | 53 u64 start_block = le64_to_cpu(msblk->id_table[block]); 74 __le64 *id_table; local 80 id_table = kmalloc(length, GFP_KERNEL); 81 if (id_table == NULL) { 86 err = squashfs_read_table(sb, id_table, id_table_start, length); 89 kfree(id_table); 93 return id_table;
|
H A D | squashfs_fs_sb.h | 61 __le64 *id_table; member in struct:squashfs_sb_info
|
/external/squashfs-tools/squashfs-tools/ |
H A D | unsquash-4.c | 29 static unsigned int *id_table; variable 113 i.uid = (uid_t) id_table[header.base.uid]; 114 i.gid = (uid_t) id_table[header.base.guid]; 363 id_table = malloc(bytes); 364 if(id_table == NULL) { 381 ((char *) id_table) + i * SQUASHFS_METADATA_SIZE); 389 SQUASHFS_INSWAP_INTS(id_table, sBlk.s.no_ids);
|
H A D | read_xattrs.c | 155 struct squashfs_xattr_table id_table; local 166 res = read_fs_bytes(fd, sBlk->xattr_id_table_start, sizeof(id_table), 167 &id_table); 171 SQUASHFS_INSWAP_XATTR_TABLE(&id_table); 177 ids = id_table.xattr_ids; 178 xattr_table_start = id_table.xattr_table_start; 185 res = read_fs_bytes(fd, sBlk->xattr_id_table_start + sizeof(id_table),
|
H A D | read_fs.c | 127 unsigned int *id_table) 217 get_uid(id_table[dir_inode->base.uid]); 218 get_guid(id_table[dir_inode->base.guid]); 237 get_uid(id_table[base.uid]); 238 get_guid(id_table[base.guid]); 704 unsigned int *id_table; local 707 id_table = malloc(bytes); 708 if(id_table == NULL) 716 free(id_table); 726 ((unsigned char *) id_table) 120 scan_inode_table(int fd, long long start, long long end, long long root_inode_start, int root_inode_offset, struct squashfs_super_block *sBlk, union squashfs_inode_header *dir_inode, unsigned char **inode_table, unsigned int *root_inode_block, unsigned int *root_inode_size, long long *uncompressed_file, unsigned int *uncompressed_directory, int *file_count, int *sym_count, int *dev_count, int *dir_count, int *fifo_count, int *sock_count, unsigned int *id_table) argument 879 unsigned int *id_table = NULL; local [all...] |
H A D | mksquashfs.c | 272 struct id *id_table[SQUASHFS_IDS], *sid_table[SQUASHFS_IDS]; variable in typeref:struct:id 681 TRACE("write_id_table: id index %d, id %d", i, id_table[i]->id); 682 SQUASHFS_SWAP_INTS(&id_table[i]->id, p + i, 1); 713 id_table[entry->index] = entry; 4976 if(id_table[i]->flags & ISA_UID) { 4977 struct passwd *user = getpwuid(id_table[i]->id); 4979 user->pw_name, id_table[i]->id); 4986 if(id_table[i]->flags & ISA_GID) { 4987 struct group *group = getgrgid(id_table[i]->id); 4989 group->gr_name, id_table[ [all...] |
/external/squashfs-tools/kernel/include/linux/ |
H A D | squashfs_fs_sb.h | 59 __le64 *id_table; member in struct:squashfs_sb_info
|
Completed in 186 milliseconds