HomeSort by relevance Sort by last modified time
    Searched refs:ino (Results 26 - 50 of 199) sorted by null

12 3 4 5 6 7 8

  /external/e2fsprogs/debugfs/
ls.c 93 ext2_ino_t ino; variable
105 ino = dirent->inode;
115 ino = 0;
120 if (ino) {
121 if (debugfs_read_inode(ino, &inode, "ls"))
125 fprintf(ls->f,"/%u/%06o/%d/%d/%.*s/", ino, inode.i_mode,
133 if (ino) {
134 if (debugfs_read_inode(ino, &inode, "ls"))
146 fprintf(ls->f, "%c%6u%c %6o ", lbr, ino, rbr, inode.i_mode);
196 ext2_ino_t ino; local
    [all...]
xattrs.c 93 void dump_inode_attributes(FILE *out, ext2_ino_t ino)
99 err = ext2fs_xattrs_open(current_fs, ino, &h);
123 ext2_ino_t ino; local
134 ino = string_to_inode(argv[1]);
135 if (!ino)
138 dump_inode_attributes(stdout, ino);
144 ext2_ino_t ino; local
195 ino = string_to_inode(argv[optind]);
196 if (!ino)
199 err = ext2fs_xattrs_open(current_fs, ino, &h)
242 ext2_ino_t ino; local
326 ext2_ino_t ino; local
    [all...]
lsdel.c 25 ext2_ino_t ino; member in struct:deleted_info
81 ext2_ino_t ino; local
127 retval = ext2fs_get_next_inode(scan, &ino, &inode);
135 while (ino) {
140 lsd.inode = ino;
146 retval = ext2fs_block_iterate3(current_fs, ino,
170 delarray[num_delarray].ino = ino;
182 retval = ext2fs_get_next_inode(scan, &ino, &inode);
200 delarray[i].ino,
    [all...]
dump.c 100 static void dump_file(const char *cmdname, ext2_ino_t ino, int fd,
110 if (debugfs_read_inode(ino, &inode, cmdname))
113 retval = ext2fs_file_open(current_fs, ino, 0, &e2_file);
199 static void rdump_symlink(ext2_ino_t ino, struct ext2_inode *inode,
217 retval = ext2fs_file_open(current_fs, ino, 0, &e2_file);
251 static void rdump_inode(ext2_ino_t ino, struct ext2_inode *inode,
266 rdump_symlink(ino, inode, fullname);
274 dump_file("rdump", ino, fd, 1, fullname);
291 retval = ext2fs_dir_iterate(current_fs, ino, 0, 0,
354 ext2_ino_t ino = string_to_inode(arg) local
    [all...]
ncheck.c 99 ext2_ino_t ino; local
159 retval = ext2fs_get_next_inode(scan, &ino, &inode);
167 while (ino) {
182 iw.dir = ino;
185 retval = ext2fs_dir_iterate(current_fs, ino, 0, 0,
199 retval = ext2fs_get_next_inode(scan, &ino, &inode);
  /external/e2fsprogs/misc/
fuse2fs.c 309 ext2_ino_t ino; member in struct:fuse2fs_file_handle
338 static int __translate_error(ext2_filsys fs, errcode_t err, ext2_ino_t ino,
340 #define translate_error(fs, ino, err) __translate_error((fs), (err), (ino), \
470 static int update_ctime(ext2_filsys fs, ext2_ino_t ino,
488 err = ext2fs_read_inode_full(fs, ino, (struct ext2_inode *)&inode,
491 return translate_error(fs, ino, err);
496 err = ext2fs_write_inode_full(fs, ino, (struct ext2_inode *)&inode,
499 return translate_error(fs, ino, err);
504 static int update_atime(ext2_filsys fs, ext2_ino_t ino)
818 ext2_ino_t ino; local
843 ext2_ino_t ino; local
1285 ext2_ino_t ino; local
1784 ext2_ino_t parent, ino; local
1886 ext2_ino_t ino; local
1945 ext2_ino_t ino; local
2012 ext2_ino_t ino; local
2428 ext2_ino_t ino; local
2529 ext2_ino_t ino; local
2609 ext2_ino_t ino; local
2683 ext2_ino_t ino; local
2808 ext2_ino_t ino; local
3035 ext2_ino_t ino; local
3311 ext2_ino_t ino; local
    [all...]
create_inode.c 73 ext2_ino_t ino, const char *name)
78 retval = ext2fs_read_inode(fs, ino, &inode);
80 com_err(__func__, retval, _("while reading inode %u"), ino);
84 retval = ext2fs_link(fs, parent_ino, name, ino,
93 retval = ext2fs_link(fs, parent_ino, name, ino,
103 retval = ext2fs_write_inode(fs, ino, &inode);
105 com_err(__func__, retval, _("while writing inode %u"), ino);
111 static errcode_t set_inode_extra(ext2_filsys fs, ext2_ino_t ino,
117 retval = ext2fs_read_inode(fs, ino, &inode);
119 com_err(__func__, retval, _("while reading inode %u"), ino);
244 ext2_ino_t ino; local
792 ext2_ino_t ino; local
    [all...]
  /external/e2fsprogs/tests/progs/
test_icount.c 52 const char *str, ext2_ino_t *ino)
56 *ino = strtoul(str, &tmp, 0);
114 ext2_ino_t ino; local
123 if (parse_inode(argv[0], "inode", argv[1], &ino))
125 retval = ext2fs_icount_fetch(test_icount, ino, &count);
138 ext2_ino_t ino; local
147 if (parse_inode(argv[0], "inode", argv[1], &ino))
149 retval = ext2fs_icount_increment(test_icount, ino, &count);
163 ext2_ino_t ino; local
172 if (parse_inode(argv[0], "inode", argv[1], &ino))
188 ext2_ino_t ino; local
    [all...]
  /external/e2fsprogs/e2fsck/
pass1.c 79 static void mark_inode_bad(e2fsck_t ctx, ino_t ino);
80 static void add_encrypted_dir(e2fsck_t ctx, ino_t ino);
91 ext2_ino_t ino; member in struct:process_block_struct
111 ext2_ino_t ino; member in struct:process_inode_block
183 int e2fsck_pass1_check_symlink(ext2_filsys fs, ext2_ino_t ino,
198 if (ext2fs_inline_data_size(fs, ino, &inline_size))
219 if (ext2fs_extent_open2(fs, ino, inode, &handle))
281 e2fsck_write_inode(ctx, pctx->ino, pctx->inode, "pass1");
299 e2fsck_write_inode(ctx, pctx->ino, pctx->inode, "pass1");
317 e2fsck_write_inode(ctx, pctx->ino, pctx->inode, "pass1")
907 ext2_ino_t ino; local
1161 ext2_ino_t ino = 0; local
2359 ext2_ino_t ino = pctx->ino; local
3139 ext2_ino_t ino = pctx->ino; local
3271 ext2_ino_t ino = pctx->ino; local
    [all...]
pass2.c 63 static void deallocate_inode(e2fsck_t ctx, ext2_ino_t ino, char* block_buf);
73 static void clear_htree(e2fsck_t ctx, ext2_ino_t ino);
203 if (e2fsck_dir_will_be_rehashed(ctx, dx_dir->ino) ||
208 pctx.dir = dx_dir->ino;
270 clear_htree(ctx, dx_dir->ino);
363 if (db_a->ino != db_b->ino)
364 return (int) (db_a->ino - db_b->ino);
376 ext2_ino_t ino, struct problem_context *pctx
916 ext2_ino_t ino = db->ino; local
    [all...]
rehash.c 56 void e2fsck_rehash_dir_later(e2fsck_t ctx, ext2_ino_t ino)
61 ext2fs_u32_list_add(ctx->dirs_to_hash, ino);
65 int e2fsck_dir_will_be_rehashed(e2fsck_t ctx, ext2_ino_t ino)
71 return ext2fs_u32_list_test(ctx->dirs_to_hash, ino);
79 ext2_ino_t ino; member in struct:fill_dir_struct
93 ino_t ino; member in struct:hash_entry
183 ent->ino = dirent->inode;
205 return (he_a->ino - he_b->ino);
364 ext2_ino_t ino,
752 ext2_ino_t ino; member in struct:write_dir_struct
980 ext2_ino_t ino; local
    [all...]
e2fsck.h 96 ext2_ino_t ino; /* Inode number */ member in struct:dir_info
107 ext2_ino_t ino; /* Inode number */ member in struct:dx_dir_info
420 ext2_ino_t ino; member in struct:extent_tree_info
457 extern void e2fsck_add_dir_info(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent);
464 extern int e2fsck_dir_info_set_parent(e2fsck_t ctx, ext2_ino_t ino,
466 extern int e2fsck_dir_info_set_dotdot(e2fsck_t ctx, ext2_ino_t ino,
468 extern int e2fsck_dir_info_get_parent(e2fsck_t ctx, ext2_ino_t ino,
470 extern int e2fsck_dir_info_get_dotdot(e2fsck_t ctx, ext2_ino_t ino,
474 extern void e2fsck_add_dx_dir(e2fsck_t ctx, ext2_ino_t ino, int num_blocks);
475 extern struct dx_dir_info *e2fsck_get_dx_dir_info(e2fsck_t ctx, ext2_ino_t ino);
    [all...]
iscan.c 98 ext2_ino_t ino; local
124 retval = ext2fs_get_next_inode(scan, &ino, &inode);
130 if (ino == 0)
  /external/e2fsprogs/lib/ext2fs/
bmap.c 29 extern errcode_t ext2fs_bmap(ext2_filsys fs, ext2_ino_t ino,
133 static errcode_t extent_bmap(ext2_filsys fs, ext2_ino_t ino,
140 static errcode_t implied_cluster_alloc(ext2_filsys fs, ext2_ino_t ino,
164 extent_bmap(fs, ino, inode, handle, 0, 0,
176 errcode_t ext2fs_map_cluster_block(ext2_filsys fs, ext2_ino_t ino,
189 retval = ext2fs_extent_open2(fs, ino, inode, &handle);
193 retval = implied_cluster_alloc(fs, ino, inode, handle, lblk, pblk);
203 static errcode_t extent_bmap(ext2_filsys fs, ext2_ino_t ino,
245 implied_cluster_alloc(fs, ino, inode, handle, block, &blk64);
248 retval = extent_bmap(fs, ino, inode, handle, block_buf
    [all...]
irel.h 65 errcode_t (*add_ref)(ext2_irel irel, ext2_ino_t ino,
72 errcode_t (*start_iter_ref)(ext2_irel irel, ext2_ino_t ino);
109 #define ext2fs_irel_add_ref(irel, ino, ref) ((irel)->add_ref((irel), ino, ref))
110 #define ext2fs_irel_start_iter_ref(irel, ino) ((irel)->start_iter_ref((irel), ino))
inode.c 73 fs->icache->cache[i].ino = 0;
144 errcode_t (*save_get_blocks)(ext2_filsys f, ext2_ino_t ino, blk_t *blocks);
410 ext2_ino_t ino, inodes_to_scan; local
427 ino = scan->current_inode + 1;
443 bad_csum = ext2fs_inode_csum_verify(scan->fs, ino,
469 ((ino - 1) % inodes_per_block);
474 ino += ino_adj;
479 if ((ino % inodes_per_block) == 0) {
486 ino++;
576 errcode_t ext2fs_get_next_inode_full(ext2_inode_scan scan, ext2_ino_t *ino,
    [all...]
inline_data.c 25 ext2_ino_t ino; member in struct:ext2_inline_data
35 retval = ext2fs_xattrs_open(data->fs, data->ino, &handle);
58 retval = ext2fs_xattrs_open(data->fs, data->ino, &handle);
80 errcode_t ext2fs_inline_data_init(ext2_filsys fs, ext2_ino_t ino)
86 data.ino = ino;
92 errcode_t ext2fs_inline_data_size(ext2_filsys fs, ext2_ino_t ino, size_t *size)
98 retval = ext2fs_read_inode(fs, ino, &inode);
106 data.ino = ino;
    [all...]
irel_ma.c 36 static errcode_t ima_add_ref(ext2_irel irel, ext2_ino_t ino,
38 static errcode_t ima_start_iter_ref(ext2_irel irel, ext2_ino_t ino);
198 ext2_ino_t ino;
203 ino = ma->orig_map[(unsigned) orig];
204 if (ino == 0)
206 *old = ino;
207 *ent = ma->entries[(unsigned) ino];
234 static errcode_t ima_add_ref(ext2_irel irel, ext2_ino_t ino,
244 if (ino > ma->max_inode)
247 ref_ent = ma->ref_entries + (unsigned) ino;
    [all...]
fileio.c 26 ext2_ino_t ino; member in struct:ext2_file
43 errcode_t ext2fs_file_open2(ext2_filsys fs, ext2_ino_t ino,
65 file->ino = ino;
71 retval = ext2fs_read_inode(fs, ino, &file->inode);
90 errcode_t ext2fs_file_open(ext2_filsys fs, ext2_ino_t ino,
93 return ext2fs_file_open2(fs, ino, NULL, flags, ret);
121 return file->ino;
144 retval = ext2fs_bmap2(fs, file->ino, &file->inode, BMAP_BUFFER,
149 retval = ext2fs_bmap2(fs, file->ino, &file->inode
    [all...]
  /bionic/libc/kernel/uapi/linux/
bfs_fs.h 49 __le16 ino; member in struct:bfs_dirent
65 #define BFS_INO2OFF(ino) ((__u32) (((ino) - BFS_ROOT_INO) * sizeof(struct bfs_inode)) + BFS_BSIZE)
  /external/kernel-headers/original/uapi/linux/
bfs_fs.h 46 __le16 ino; member in struct:bfs_dirent
68 #define BFS_INO2OFF(ino) \
69 ((__u32)(((ino) - BFS_ROOT_INO) * sizeof(struct bfs_inode)) + BFS_BSIZE)
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/
DumpArchiveEntry.java 205 private int ino; field in class:DumpArchiveEntry
232 * @param ino the ino
235 protected DumpArchiveEntry(final String name, final String simpleName, final int ino,
240 this.ino = ino;
261 * Returns the ino of the entry.
262 * @return the ino
399 return ino;
416 if (ino != rhs.ino)
529 private int ino; field in class:DumpArchiveEntry.TapeSegmentHeader
    [all...]
  /external/squashfs-tools/kernel/fs/squashfs/
inode.c 79 struct inode *squashfs_iget(struct super_block *sb, long long ino,
92 err = squashfs_read_inode(inode, ino);
107 int squashfs_read_inode(struct inode *inode, long long ino)
111 u64 block = SQUASHFS_INODE_BLK(ino) + msblk->inode_table;
112 int err, type, offset = SQUASHFS_INODE_OFFSET(ino);
130 block = SQUASHFS_INODE_BLK(ino) + msblk->inode_table;
131 offset = SQUASHFS_INODE_OFFSET(ino);
173 "%llx, offset %x\n", SQUASHFS_INODE_BLK(ino),
217 "%llx, offset %x\n", SQUASHFS_INODE_BLK(ino),
240 SQUASHFS_INODE_BLK(ino), offset
    [all...]
  /external/f2fs-tools/fsck/
dir.c 118 nid_t ino = le32_to_cpu(dir->footer.ino); local
141 set_new_dnode(&dn, dir, NULL, ino);
153 de->ino = le32_to_cpu(dentry->ino);
179 /* return ino if file exists, otherwise return 0 */
191 return de.ino;
196 static void f2fs_update_dentry(nid_t ino, int file_type,
210 de->ino = cpu_to_le32(ino);
335 nid_t ino = le32_to_cpu(inode->footer.ino); local
375 nid_t ino = le32_to_cpu(inode->footer.ino); local
486 nid_t ino = le32_to_cpu(node->footer.ino); local
    [all...]
  /external/e2fsprogs/contrib/android/
fsmap.c 26 static errcode_t ino_iter_blocks(ext2_filsys fs, ext2_ino_t ino,
33 retval = ext2fs_read_inode(fs, ino, &inode);
41 retval = ext2fs_block_iterate3(fs, ino, 0, NULL, walk_block, pdata);
43 com_err(__func__, retval, _("listing blocks of ino \"%u\""),
44 ino);
48 static int is_dir(ext2_filsys fs, ext2_ino_t ino)
52 if (ext2fs_read_inode(fs, ino, &inode))
81 com_err(__func__, retval, _("reading ino \"%u\""), de->inode);

Completed in 535 milliseconds

12 3 4 5 6 7 8