Searched defs:ino (Results 26 - 50 of 91) sorted by relevance

1234

/external/e2fsprogs/lib/ext2fs/
H A Dinode_io.c38 ext2_ino_t ino; member in struct:inode_private_data
82 errcode_t ext2fs_inode_io_intern2(ext2_filsys fs, ext2_ino_t ino, argument
93 sprintf(data->name, "%u:%d", ino, ino_unique++);
96 data->ino = ino;
108 errcode_t ext2fs_inode_io_intern(ext2_filsys fs, ext2_ino_t ino, argument
111 return ext2fs_inode_io_intern2(fs, ino, NULL, name);
155 retval = ext2fs_file_open2(data->fs, data->ino,
H A Dblock.c321 ext2_ino_t ino,
342 ctx.errcode = ext2fs_read_inode(fs, ino, &inode);
398 ctx.errcode = ext2fs_extent_open2(fs, ino, &inode, &handle);
549 retval = ext2fs_write_inode(fs, ino, &inode);
591 ext2_ino_t ino,
607 return ext2fs_block_iterate3(fs, ino, flags, block_buf,
634 ext2_ino_t ino,
648 return ext2fs_block_iterate2(fs, ino, BLOCK_FLAG_NO_LARGE | flags,
320 ext2fs_block_iterate3(ext2_filsys fs, ext2_ino_t ino, int flags, char *block_buf, int (*func)(ext2_filsys fs, blk64_t *blocknr, e2_blkcnt_t blockcnt, blk64_t ref_blk, int ref_offset, void *priv_data), void *priv_data) argument
590 ext2fs_block_iterate2(ext2_filsys fs, ext2_ino_t ino, int flags, char *block_buf, int (*func)(ext2_filsys fs, blk_t *blocknr, e2_blkcnt_t blockcnt, blk_t ref_blk, int ref_offset, void *priv_data), void *priv_data) argument
633 ext2fs_block_iterate(ext2_filsys fs, ext2_ino_t ino, int flags, char *block_buf, int (*func)(ext2_filsys fs, blk_t *blocknr, int blockcnt, void *priv_data), void *priv_data) argument
H A Dbmap.c28 extern errcode_t ext2fs_bmap(ext2_filsys fs, ext2_ino_t ino,
132 static errcode_t extent_bmap(ext2_filsys fs, ext2_ino_t ino,
139 static errcode_t implied_cluster_alloc(ext2_filsys fs, ext2_ino_t ino, argument
164 extent_bmap(fs, ino, inode, handle, 0, 0,
176 errcode_t ext2fs_map_cluster_block(ext2_filsys fs, ext2_ino_t ino, argument
190 retval = ext2fs_extent_open2(fs, ino, inode, &handle);
194 retval = implied_cluster_alloc(fs, ino, inode, handle, lblk, pblk);
204 static errcode_t extent_bmap(ext2_filsys fs, ext2_ino_t ino, argument
240 implied_cluster_alloc(fs, ino, inode, handle, block, &blk64);
243 retval = extent_bmap(fs, ino, inod
291 ext2fs_bmap2(ext2_filsys fs, ext2_ino_t ino, struct ext2_inode *inode, char *block_buf, int bmap_flags, blk64_t block, int *ret_flags, blk64_t *phys_blk) argument
444 ext2fs_bmap(ext2_filsys fs, ext2_ino_t ino, struct ext2_inode *inode, char *block_buf, int bmap_flags, blk_t block, blk_t *phys_blk) argument
[all...]
H A Ddblist.c159 errcode_t ext2fs_add_dir_block2(ext2_dblist dblist, ext2_ino_t ino, argument
181 new_entry->ino = ino;
192 errcode_t ext2fs_set_dir_block2(ext2_dblist dblist, ext2_ino_t ino, argument
200 if ((dblist->list[i].ino != ino) ||
255 if (db_a->ino != db_b->ino)
256 return (int) (db_a->ino - db_b->ino);
297 ext2fs_add_dir_block(ext2_dblist dblist, ext2_ino_t ino, blk_t blk, int blockcnt) argument
306 ext2fs_set_dir_block(ext2_dblist dblist, ext2_ino_t ino, blk_t blk, int blockcnt) argument
[all...]
H A Dfileio.c25 ext2_ino_t ino; member in struct:ext2_file
36 errcode_t ext2fs_file_open2(ext2_filsys fs, ext2_ino_t ino, argument
58 file->ino = ino;
64 retval = ext2fs_read_inode(fs, ino, &file->inode);
83 errcode_t ext2fs_file_open(ext2_filsys fs, ext2_ino_t ino, argument
86 return ext2fs_file_open2(fs, ino, NULL, flags, ret);
114 return file->ino;
138 retval = ext2fs_bmap2(fs, file->ino, &file->inode,
139 BMAP_BUFFER, file->ino
[all...]
H A Dpunch.c180 static errcode_t punch_extent_blocks(ext2_filsys fs, ext2_ino_t ino, argument
204 retval = ext2fs_map_cluster_block(fs, ino, inode,
233 retval = ext2fs_map_cluster_block(fs, ino, inode,
248 static errcode_t ext2fs_punch_extent(ext2_filsys fs, ext2_ino_t ino, argument
260 retval = ext2fs_extent_open2(fs, ino, inode, &handle);
388 retval = punch_extent_blocks(fs, ino, inode, lfree_start,
412 errcode_t ext2fs_punch(ext2_filsys fs, ext2_ino_t ino, argument
425 retval = ext2fs_read_inode(fs, ino, &inode_buf);
431 retval = ext2fs_punch_extent(fs, ino, inode, start, end);
446 return ext2fs_write_inode(fs, ino, inod
[all...]
/external/e2fsprogs/tests/progs/
H A Dtest_icount.c51 const char *str, ext2_ino_t *ino)
55 *ino = strtoul(str, &tmp, 0);
106 ext2_ino_t ino; local
115 if (parse_inode(argv[0], "inode", argv[1], &ino))
117 retval = ext2fs_icount_fetch(test_icount, ino, &count);
129 ext2_ino_t ino; local
138 if (parse_inode(argv[0], "inode", argv[1], &ino))
140 retval = ext2fs_icount_increment(test_icount, ino, &count);
153 ext2_ino_t ino; local
162 if (parse_inode(argv[0], "inode", argv[1], &ino))
50 parse_inode(const char *request, const char *desc, const char *str, ext2_ino_t *ino) argument
177 ext2_ino_t ino; local
[all...]
H A Dtest_rel.c39 const char *str, ext2_ino_t *ino)
43 *ino = strtoul(str, &tmp, 0);
508 ext2_ino_t ino; local
521 retval = ext2fs_irel_next(irel, &ino, &ent);
526 if (ino == 0)
529 display_irel_entry(ino, &ent, 1);
539 ext2_ino_t ino; local
550 if (parse_inode(argv[0], "inode", argv[1], &ino))
563 retval = ext2fs_irel_add_ref(irel, ino, &ref);
575 ext2_ino_t ino; local
38 parse_inode(const char *request, const char *desc, const char *str, ext2_ino_t *ino) argument
642 ext2_ino_t ino; local
[all...]
/external/valgrind/main/include/
H A Dpub_tool_aspacemgr.h69 dev==ino==foff = 0, fnidx == -1
81 dev==ino==foff = 0, fnidx == -1
87 dev==ino==foff = 0, fnidx == -1
104 ULong ino; member in struct:__anon32875
/external/e2fsprogs/debugfs/
H A Ddump.c102 static void dump_file(const char *cmdname, ext2_ino_t ino, int fd, argument
112 if (debugfs_read_inode(ino, &inode, cmdname))
115 retval = ext2fs_file_open(current_fs, ino, 0, &e2_file);
200 static void rdump_symlink(ext2_ino_t ino, struct ext2_inode *inode, argument
220 retval = ext2fs_file_open(current_fs, ino, 0, &e2_file);
254 static void rdump_inode(ext2_ino_t ino, struct ext2_inode *inode, argument
269 rdump_symlink(ino, inode, fullname);
277 dump_file("rdump", ino, fd, 1, fullname);
294 retval = ext2fs_dir_iterate(current_fs, ino, 0, 0,
331 ext2_ino_t ino; local
[all...]
H A Dfilefrag.c36 ext2_ino_t ino; member in struct:dir_list
128 static void filefrag(ext2_ino_t ino, struct ext2_inode *inode, argument
156 retval = ext2fs_block_iterate3(current_fs, ino,
177 ext2_ino_t ino; variable
188 ino = dirent->inode;
203 if (debugfs_read_inode(ino, &inode, fs->name))
206 filefrag(ino, &inode, fs);
219 p->ino = ino;
234 static void dir_iterate(ext2_ino_t ino, struc argument
265 ext2_ino_t ino; local
[all...]
H A Dhtree.c31 static void htree_dump_leaf_node(ext2_filsys fs, ext2_ino_t ino, argument
47 errcode = ext2fs_bmap2(fs, ino, inode, buf, 0, blk, 0, &pblk);
108 static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino,
114 static void htree_dump_int_node(ext2_filsys fs, ext2_ino_t ino, argument
147 htree_dump_int_block(fs, ino, inode, rootnode,
150 htree_dump_leaf_node(fs, ino, inode, rootnode,
157 static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino, argument
172 errcode = ext2fs_bmap2(fs, ino, inode, buf, 0, blk, 0, &pblk);
186 htree_dump_int_node(fs, ino, inode, rootnode,
197 ext2_ino_t ino; local
[all...]
H A Dutil.c110 ext2_ino_t ino; local
116 * If the string is of the form <ino>, then treat it as an
120 ino = strtoul(str+1, &end, 0);
122 return ino;
125 retval = ext2fs_namei(current_fs, root, cwd, str, &ino);
130 return ino;
386 int debugfs_read_inode_full(ext2_ino_t ino, struct ext2_inode * inode, argument
391 retval = ext2fs_read_inode_full(current_fs, ino, inode, bufsize);
393 com_err(cmd, retval, "while reading inode %u", ino);
399 int debugfs_read_inode(ext2_ino_t ino, struc argument
412 debugfs_write_inode_full(ext2_ino_t ino, struct ext2_inode *inode, const char *cmd, int bufsize) argument
428 debugfs_write_inode(ext2_ino_t ino, struct ext2_inode * inode, const char *cmd) argument
441 debugfs_write_new_inode(ext2_ino_t ino, struct ext2_inode * inode, const char *cmd) argument
[all...]
/external/e2fsprogs/e2fsck/
H A Ddirinfo.c117 void e2fsck_add_dir_info(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent) argument
126 printf("add_dir_info for inode (%lu, %lu)...\n", ino, parent);
144 ent.ino = ino;
163 ctx->dir_info->array[ctx->dir_info->count-1].ino >= ino) {
165 if (ctx->dir_info->array[i-1].ino < ino)
168 if (dir->ino != ino)
183 e2fsck_get_dir_info(e2fsck_t ctx, ext2_ino_t ino) argument
392 e2fsck_dir_info_set_parent(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent) argument
409 e2fsck_dir_info_set_dotdot(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t dotdot) argument
426 e2fsck_dir_info_get_parent(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t *parent) argument
442 e2fsck_dir_info_get_dotdot(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t *dotdot) argument
[all...]
H A Dpass3.c45 static int check_directory(e2fsck_t ctx, ext2_ino_t ino,
47 static void fix_dotdot(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent);
106 if (ext2fs_test_inode_bitmap2(ctx->inode_dir_map, dir->ino))
107 if (check_directory(ctx, dir->ino, &pctx))
265 ext2_ino_t ino = dir, parent; local
279 if (ext2fs_mark_inode_bitmap2(inode_done_map, ino))
282 if (e2fsck_dir_info_get_parent(ctx, ino, &parent)) {
296 pctx->ino = ino;
298 if (e2fsck_reconnect_file(ctx, pctx->ino))
359 ext2_ino_t ino; local
504 e2fsck_reconnect_file(e2fsck_t ctx, ext2_ino_t ino) argument
555 e2fsck_adjust_inode_count(e2fsck_t ctx, ext2_ino_t ino, int adj) argument
643 fix_dotdot(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent) argument
[all...]
/external/e2fsprogs/lib/quota/
H A Dmkquota.c57 ext2_ino_t ino; local
65 &ino);
69 return ino;
75 void quota_set_sb_inum(ext2_filsys fs, ext2_ino_t ino, int qtype) argument
82 log_debug("setting quota ino in superblock: ino=%u, type=%d", ino,
84 *inump = ino;
162 quota_inode_truncate(fs, h->qh_qf.ino);
167 quota_set_sb_inum(fs, h->qh_qf.ino,
291 quota_data_add(quota_ctx_t qctx, struct ext2_inode *inode, ext2_ino_t ino, qsize_t space) argument
317 quota_data_sub(quota_ctx_t qctx, struct ext2_inode *inode, ext2_ino_t ino, qsize_t space) argument
342 quota_data_inodes(quota_ctx_t qctx, struct ext2_inode *inode, ext2_ino_t ino, int adjust) argument
367 ext2_ino_t ino; local
[all...]
H A Dquotaio.c112 errcode_t quota_inode_truncate(ext2_filsys fs, ext2_ino_t ino) argument
117 if ((err = ext2fs_read_inode(fs, ino, &inode)))
120 if ((ino == EXT4_USR_QUOTA_INO) || (ino == EXT4_GRP_QUOTA_INO)) {
124 err = ext2fs_punch(fs, ino, &inode, NULL, 0, ~0ULL);
132 err = ext2fs_write_inode(fs, ino, &inode);
136 static ext2_off64_t compute_inode_size(ext2_filsys fs, ext2_ino_t ino) argument
140 ext2fs_block_iterate3(fs, ino,
212 log_debug("Opening quota ino=%lu, type=%d", qf_ino, type);
221 h->qh_qf.ino
246 quota_inode_init_new(ext2_filsys fs, ext2_ino_t ino) argument
[all...]
H A Dquotaio.h65 ext2_ino_t ino; member in struct:quota_file
151 errcode_t quota_inode_truncate(ext2_filsys fs, ext2_ino_t ino);
/external/e2fsprogs/misc/
H A De2initrd_helper.c79 ext2_ino_t ino; local
86 filename, &ino);
90 retval = ext2fs_read_inode(fs, ino, &inode);
102 retval = ext2fs_file_open(fs, ino, 0, &e2_file);
/external/elfutils/0.153/libdwfl/
H A Dlinux-proc-maps.c173 uint64_t ino; local
177 &start, &end, &offset, &dmajor, &dminor, &ino, &nread) < 6
204 if (file[0] == '\0' || (ino == 0 && dmajor == 0 && dminor == 0))
209 && ino == last_ino && dmajor == last_dmajor && dminor == last_dminor)
223 last_ino = ino;
/external/f2fs-tools/fsck/
H A Ddump.c198 DBG(3, "ino[0x%x] has inline data!\n", nid);
259 dump_inode_blk(sbi, ni->ino, node_blk);
282 DBG(1, "nat_entry.ino [0x%x]\n", ni.ino);
287 DBG(1, "node_blk.footer.ino [0x%x]\n", le32_to_cpu(node_blk->footer.ino));
290 if (le32_to_cpu(node_blk->footer.ino) == ni.ino &&
303 nid_t ino, nid; local
323 DBG(1, "NAT.ino [
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dauto_fs4.h134 __u64 ino; member in struct:autofs_v5_packet
H A Dbfs_fs.h45 __le16 ino; member in struct:bfs_dirent
67 #define BFS_INO2OFF(ino) \
68 ((__u32)(((ino) - BFS_ROOT_INO) * sizeof(struct bfs_inode)) + BFS_BSIZE)
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dmap.h40 u64 ino; /* only valid for MMAP2 record */ member in struct:map
94 u64 pgoff, u32 pid, u32 d_maj, u32 d_min, u64 ino,
/external/valgrind/main/coregrind/m_aspacemgr/
H A Daspacemgr-common.c299 /*OUT*/ULong* ino, /*OUT*/UInt* mode )
311 *ino = (ULong)buf64.st_ino;
319 *ino = (ULong)buf.st_ino;
297 am_get_fd_d_i_m( Int fd, ULong* dev, ULong* ino, UInt* mode ) argument

Completed in 1014 milliseconds

1234