/external/e2fsprogs/lib/ext2fs/ |
punch.c | 180 static errcode_t punch_extent_blocks(ext2_filsys fs, ext2_ino_t ino, 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, 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, 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, inode) [all...] |
dblist_dir.c | 71 ctx->dir = db_info->ino;
|
extent.c | 54 ext2_ino_t ino; member in struct:ext2_extent_handle 179 errcode_t ext2fs_extent_open(ext2_filsys fs, ext2_ino_t ino, 182 return ext2fs_extent_open2(fs, ino, NULL, ret_handle); 185 errcode_t ext2fs_extent_open2(ext2_filsys fs, ext2_ino_t ino, 197 if ((ino == 0) || (ino > fs->super->s_inodes_count)) 205 handle->ino = ino; 212 retval = ext2fs_read_inode(fs, ino, handle->inode); 545 retval = ext2fs_write_inode(handle->fs, handle->ino, [all...] |
block.c | 321 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,
|
link.c | 115 ext2_ino_t ino, int flags) 129 ls.inode = ino;
|
alloc.c | 83 ext2_ino_t i, ino; local 90 ino = (group * fs->super->s_inodes_per_group) + 1; 91 for (i=0; i < fs->super->s_inodes_per_group; i++, ino++) 92 ext2fs_fast_unmark_inode_bitmap2(map, ino);
|
/external/e2fsprogs/e2fsck/ |
super.c | 156 static int release_inode_blocks(e2fsck_t ctx, ext2_ino_t ino, 185 retval = ext2fs_block_iterate3(fs, ino, BLOCK_FLAG_DEPTH_TRAVERSE, 190 ino); 197 e2fsck_read_inode(ctx, ino, inode, "release_inode_blocks"); 213 ino); 233 ext2_ino_t ino, next_ino; local 238 if ((ino = fs->super->s_last_orphan) == 0) 256 if ((ino < EXT2_FIRST_INODE(fs->super)) || 257 (ino > fs->super->s_inodes_count)) { 259 pctx.ino = ino [all...] |
util.c | 438 void e2fsck_read_inode(e2fsck_t ctx, unsigned long ino, 443 retval = ext2fs_read_inode(ctx->fs, ino, inode); 446 _("while reading inode %lu in %s"), ino, proc); 451 void e2fsck_read_inode_full(e2fsck_t ctx, unsigned long ino, 457 retval = ext2fs_read_inode_full(ctx->fs, ino, inode, bufsize); 460 _("while reading inode %lu in %s"), ino, proc); 465 void e2fsck_write_inode_full(e2fsck_t ctx, unsigned long ino, 471 retval = ext2fs_write_inode_full(ctx->fs, ino, inode, bufsize); 474 _("while writing inode %lu in %s"), ino, proc); 479 void e2fsck_write_inode(e2fsck_t ctx, unsigned long ino, [all...] |
message.c | 19 * %Di <dirent>->ino inode number 26 * %i <ino> inode number 42 * %p ext2fs_get_pathname of directory <ino> 43 * %P ext2fs_get_pathname of <dirent>->ino with <ino2> as 47 * %Q ext2fs_get_pathname of directory <ino> with <dir> as 197 ext2_ino_t ino) 202 if (!dir && (ino < num_special_inodes)) { 203 fputs(_(special_inode_name[ino]), f); 208 retval = ext2fs_get_pathname(fs, dir, ino, &path); 455 fprintf(f, "%*u", width, ctx->ino); [all...] |
pass5.c | 170 if (pctx->ino == pctx->ino2) 176 if (pctx->ino == pctx->ino2) 184 pctx->ino = pctx->ino2 = 0; 233 pctx.ino = ext2fs_get_block_bitmap_start2(ctx->block_found_map); 248 pctx.ino = ext2fs_get_block_bitmap_start2(fs->block_map); 565 pctx.ino = ext2fs_get_inode_bitmap_start2(ctx->inode_used_map); 578 pctx.ino = ext2fs_get_inode_bitmap_start2(fs->inode_map); 591 pctx.ino = pctx.ino2 = 0; 656 if (pctx.ino == 0) { 657 pctx.ino = pctx.ino2 = i [all...] |
/external/e2fsprogs/debugfs/ |
debugfs.h | 50 extern int debugfs_read_inode(ext2_ino_t ino, struct ext2_inode * inode, 52 extern int debugfs_read_inode_full(ext2_ino_t ino, struct ext2_inode * inode, 54 extern int debugfs_write_inode(ext2_ino_t ino, struct ext2_inode * inode, 56 extern int debugfs_write_inode_full(ext2_ino_t ino, struct ext2_inode * inode, 58 extern int debugfs_write_new_inode(ext2_ino_t ino, struct ext2_inode * inode,
|
debugfs.c | 609 static void dump_extents(FILE *f, const char *prefix, ext2_ino_t ino, 619 errcode = ext2fs_extent_open(current_fs, ino, &handle); 892 ext2_ino_t ino; local 922 ino = string_to_inode(argv[optind]); 923 if (ino == 0) 926 if (debugfs_read_inode(ino, &inode, argv[0])) 944 dump_extents(out, "", ino, flags, logical_width, physical_width); 1339 ext2_ino_t ino; local 1415 ext2_ino_t ino; local 2090 ext2_ino_t ino; local 2117 ext2_ino_t ino; local 2236 ext2_ino_t ino; local [all...] |
/external/elfutils/0.153/libdwfl/ |
linux-proc-maps.c | 173 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/ |
fsck.c | 74 DBG(2, "ino[0x%x] has hard links [0x%x]\n", nid, link_cnt); 208 node_blk->footer.nid != node_blk->footer.ino) { 209 ASSERT_MSG("nid[0x%x] footer.nid[0x%x] footer.ino[0x%x]", 211 le32_to_cpu(node_blk->footer.ino)); 215 node_blk->footer.nid == node_blk->footer.ino) { 216 ASSERT_MSG("nid[0x%x] footer.nid[0x%x] footer.ino[0x%x]", 218 le32_to_cpu(node_blk->footer.ino)); 268 static int fsck_chk_xattr_blk(struct f2fs_sb_info *sbi, u32 ino, 290 DBG(2, "ino[0x%x] x_nid[0x%x]\n", ino, x_nid) 857 nid_t ino = le32_to_cpu(orphan_blk->ino[j]); local [all...] |
/bionic/libc/kernel/uapi/linux/ |
jffs2.h | 100 jint32_t ino; member in struct:jffs2_raw_dirent 119 jint32_t ino; member in struct:jffs2_raw_inode 167 jint32_t ino; member in struct:jffs2_raw_xref
|
auto_fs4.h | 72 __u64 ino; member in struct:autofs_v5_packet
|
/development/ndk/platforms/android-L/include/linux/ |
jffs2.h | 100 jint32_t ino; member in struct:jffs2_raw_dirent 119 jint32_t ino; member in struct:jffs2_raw_inode 167 jint32_t ino; member in struct:jffs2_raw_xref
|
auto_fs4.h | 72 __u64 ino; member in struct:autofs_v5_packet
|
/external/kernel-headers/original/uapi/linux/ |
jffs2.h | 124 jint32_t ino; /* == zero for unlink */ member in struct:jffs2_raw_dirent 146 jint32_t ino; /* Inode number. */ member in struct:jffs2_raw_inode 187 jint32_t ino; /* inode number */ member in struct:jffs2_raw_xref
|
/external/e2fsprogs/lib/quota/ |
quotaio.h | 65 ext2_ino_t ino; member in struct:quota_file 151 errcode_t quota_inode_truncate(ext2_filsys fs, ext2_ino_t ino);
|
/external/iproute2/misc/ |
ss.c | 202 unsigned int ino; member in struct:user_ent 211 static int user_ent_hashfn(unsigned int ino) 213 int val = (ino >> 24) ^ (ino >> 16) ^ (ino >> 8) ^ ino; 218 static void user_ent_add(unsigned int ino, const char *process, int pid, int fd) 228 p->ino = ino; 233 pp = &user_ent_hash[user_ent_hashfn(ino)]; 275 unsigned int ino; local 442 unsigned ino; member in struct:tcpstat 1937 int ino; member in struct:unixstat 2269 int ino; local [all...] |
/external/e2fsprogs/misc/ |
e2image.c | 295 ext2_ino_t ino; member in struct:process_block_struct 309 ext2_ino_t ino, variable 314 if ((ino != stashed_ino) || !stashed_inode) 323 ext2_ino_t ino) 325 if ((ino != stashed_ino) || !stashed_inode) 334 ext2_ino_t ino, variable 337 if ((ino != stashed_ino) || !stashed_inode) 1247 ext2_ino_t ino; local 1291 retval = ext2fs_get_next_inode(scan, &ino, &inode); 1299 if (ino == 0 [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
dir_node.cc | 21 // TODO(binji): For now, just use a dummy value for the parent ino. 141 ino_t ino = it->second->stat_.st_ino; local 142 cache_.AddDirent(ino, name.c_str(), name.length());
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/os/ |
FileUtils.java | 53 private int ino; field in class:FileUtils.FileStatus
|
/cts/tests/tests/permission/src/android/permission/cts/ |
FileUtils.java | 64 public int ino; field in class:FileUtils.FileStatus
|