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

12 3 4 5

  /external/e2fsprogs/lib/ext2fs/
fileio.c 24 ext2_ino_t ino; member in struct:ext2_file
35 errcode_t ext2fs_file_open2(ext2_filsys fs, ext2_ino_t ino,
57 file->ino = ino;
63 retval = ext2fs_read_inode(fs, ino, &file->inode);
82 errcode_t ext2fs_file_open(ext2_filsys fs, ext2_ino_t ino,
85 return ext2fs_file_open2(fs, ino, NULL, flags, ret);
119 retval = ext2fs_bmap(fs, file->ino, &file->inode,
120 BMAP_BUFFER, file->ino ? BMAP_ALLOC : 0,
171 retval = ext2fs_bmap(fs, file->ino, &file->inode
    [all...]
unlink.c 71 const char *name, ext2_ino_t ino,
79 if (!name && !ino)
87 ls.inode = ino;
inode_io.c 38 ext2_ino_t ino; member in struct:inode_private_data
82 errcode_t ext2fs_inode_io_intern2(ext2_filsys fs, ext2_ino_t ino,
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,
111 return ext2fs_inode_io_intern2(fs, ino, NULL, name);
155 retval = ext2fs_file_open2(data->fs, data->ino,
tst_iscan.c 139 ext2_ino_t ino; local
147 retval = ext2fs_get_next_inode(scan, &ino, &inode);
152 while (ino) {
153 retval = ext2fs_get_next_inode(scan, &ino, &inode);
155 ext2fs_mark_inode_bitmap(bad_inode_map, ino);
ext2fs.h 128 ext2_ino_t ino; member in struct:ext2_db_entry
203 errcode_t (*get_blocks)(ext2_filsys fs, ext2_ino_t ino, blk_t *blocks);
204 errcode_t (*check_directory)(ext2_filsys fs, ext2_ino_t ino);
206 errcode_t (*read_inode)(ext2_filsys fs, ext2_ino_t ino,
208 errcode_t (*write_inode)(ext2_filsys fs, ext2_ino_t ino,
584 void ext2fs_inode_alloc_stats(ext2_filsys fs, ext2_ino_t ino, int inuse);
585 void ext2fs_inode_alloc_stats2(ext2_filsys fs, ext2_ino_t ino,
687 ext2_ino_t ino,
696 ext2_ino_t ino,
708 extern errcode_t ext2fs_bmap(ext2_filsys fs, ext2_ino_t ino,
    [all...]
ext2fsP.h 75 ext2_ino_t ino; member in struct:ext2_inode_cache_ent
bmap.c 28 extern errcode_t ext2fs_bmap(ext2_filsys fs, ext2_ino_t ino,
132 errcode_t ext2fs_bmap2(ext2_filsys fs, ext2_ino_t ino, struct ext2_inode *inode,
152 retval = ext2fs_read_inode(fs, ino, &inode_buf);
163 retval = ext2fs_extent_open2(fs, ino, inode, &handle);
197 retval = ext2fs_read_inode(fs, ino, inode);
315 retval = ext2fs_write_inode(fs, ino, inode);
320 errcode_t ext2fs_bmap(ext2_filsys fs, ext2_ino_t ino, struct ext2_inode *inode,
327 ret = ext2fs_bmap2(fs, ino, inode, block_buf, bmap_flags, block,
  /cts/tests/tests/permission/src/android/permission/cts/
FileUtils.java 53 public int ino; field in class:FileUtils.FileStatus
  /external/e2fsprogs/debugfs/
htree.c 31 static void htree_dump_leaf_node(ext2_filsys fs, ext2_ino_t ino,
47 errcode = ext2fs_bmap(fs, ino, inode, buf, 0, blk, &pblk);
109 static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino,
115 static void htree_dump_int_node(ext2_filsys fs, ext2_ino_t ino,
148 htree_dump_int_block(fs, ino, inode, rootnode,
151 htree_dump_leaf_node(fs, ino, inode, rootnode,
158 static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino,
173 errcode = ext2fs_bmap(fs, ino, inode, buf, 0, blk, &pblk);
187 htree_dump_int_node(fs, ino, inode, rootnode,
198 ext2_ino_t ino; local
    [all...]
debugfs.h 45 extern int debugfs_read_inode(ext2_ino_t ino, struct ext2_inode * inode,
47 extern int debugfs_read_inode_full(ext2_ino_t ino, struct ext2_inode * inode,
49 extern int debugfs_write_inode(ext2_ino_t ino, struct ext2_inode * inode,
51 extern int debugfs_write_new_inode(ext2_ino_t ino, struct ext2_inode * inode,
  /external/e2fsprogs/e2fsck/
scantest.c 97 ext2_ino_t ino; local
119 retval = ext2fs_get_next_inode(scan, &ino, &inode);
124 while (ino) {
129 retval = ext2fs_get_next_inode(scan, &ino, &inode);
swapfs.c 22 ext2_ino_t ino; member in struct:swap_block_struct
80 static void swap_inode_blocks(e2fsck_t ctx, ext2_ino_t ino, char *block_buf,
86 sb.ino = ino;
94 retval = ext2fs_block_iterate(ctx->fs, ino, 0, block_buf,
115 ext2_ino_t ino = 1; local
145 i++, ino++, inode++) {
146 ctx->stashed_ino = ino;
163 swap_inode_blocks(ctx, ino, block_buf, inode);
rehash.c 69 ino_t ino; member in struct:hash_entry
152 ent->ino = dirent->inode;
174 return (he_a->ino - he_b->ino);
331 ext2_ino_t ino,
343 pctx.ino = ino;
490 ext2_ino_t ino, ext2_ino_t parent)
502 dir->inode = ino;
551 ext2_ino_t ino,
827 ext2_ino_t ino; local
    [all...]
iscan.c 100 ext2_ino_t ino; local
126 retval = ext2fs_get_next_inode(scan, &ino, &inode);
132 if (ino == 0)
pass5.c 86 if (pctx->ino == pctx->ino2)
92 if (pctx->ino == pctx->ino2)
100 pctx->ino = pctx->ino2 = 0;
130 pctx.ino = ext2fs_get_block_bitmap_start(ctx->block_found_map);
145 pctx.ino = ext2fs_get_block_bitmap_start(fs->block_map);
357 pctx.ino = ext2fs_get_inode_bitmap_start(ctx->inode_used_map);
370 pctx.ino = ext2fs_get_inode_bitmap_start(fs->inode_map);
383 pctx.ino = pctx.ino2 = 0;
424 if (pctx.ino == 0) {
425 pctx.ino = pctx.ino2 = i
    [all...]
  /external/grub/stage2/
fsys_xfs.c 83 ino2agno (xfs_ino_t ino)
85 return ino >> XFS_INO_AGINO_BITS;
89 ino2agino (xfs_ino_t ino)
91 return ino & XFS_INO_MASK(XFS_INO_AGINO_BITS);
95 ino2offset (xfs_ino_t ino)
97 return ino & XFS_INO_MASK(XFS_INO_OFFSET_BITS);
202 di_read (xfs_ino_t ino)
210 agno = ino2agno (ino);
211 agino = ino2agino (ino);
213 offset = ino2offset (ino);
539 xfs_ino_t ino, parent_ino, new_ino; local
    [all...]
fsys_ffs.c 186 int block, off, loc, map, ino = ROOTINO; local
194 if (!devread (fsbtodb (SUPERBLOCK, itod (SUPERBLOCK, ino)),
195 ino % (SUPERBLOCK->fs_inopb) * sizeof (struct dinode),
285 ino = dp->d_ino;
fsys_ufs2.c 210 int block, off, loc, ino = ROOTINO; local
219 if (!devread (fsbtodb (SUPERBLOCK, ino_to_fsba (SUPERBLOCK, ino)),
220 ino % (SUPERBLOCK->fs_inopb) * sizeof (struct ufs2_dinode),
306 ino = dp->d_ino;
  /ndk/sources/host-tools/make-3.81/
dir.c 236 ino_t ino[3]; member in struct:directory_contents
238 ino_t ino;
258 ^ ((unsigned int) key->ino[0]
259 + (unsigned int) key->ino[1]
260 + (unsigned int) key->ino[2]));
262 hash = ((unsigned int) key->dev << 4) ^ (unsigned int) key->ino;
281 ^ ~((unsigned int) key->ino[0]
282 + (unsigned int) key->ino[1]
283 + (unsigned int) key->ino[2]));
285 hash = ((unsigned int) key->dev << 4) ^ (unsigned int) ~key->ino;
234 ino_t ino[3]; member in struct:directory_contents
    [all...]
  /external/e2fsprogs/tests/progs/
test_rel.c 39 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
642 ext2_ino_t ino; local
    [all...]
  /external/kernel-headers/original/linux/nfsd/
nfsfh.h 30 * ino/dev of the exported inode.
121 static inline __u32 ino_t_to_u32(ino_t ino)
123 return (__u32) ino;
168 static inline void mk_fsid_v0(u32 *fsidv, dev_t dev, ino_t ino)
172 fsidv[1] = ino_t_to_u32(ino);
180 static inline void mk_fsid_v2(u32 *fsidv, dev_t dev, ino_t ino)
184 fsidv[2] = ino_t_to_u32(ino);
187 static inline void mk_fsid_v3(u32 *fsidv, dev_t dev, ino_t ino)
190 fsidv[1] = ino_t_to_u32(ino);
  /external/e2fsprogs/misc/
e2image.c 155 ext2_ino_t ino; member in struct:process_block_struct
169 ext2_ino_t ino, variable
174 if ((ino != stashed_ino) || !stashed_inode)
183 ext2_ino_t ino)
185 if ((ino != stashed_ino) || !stashed_inode)
194 ext2_ino_t ino, variable
197 if ((ino != stashed_ino) || !stashed_inode)
464 ext2_ino_t ino; local
502 retval = ext2fs_get_next_inode(scan, &ino, &inode);
510 if (ino == 0
    [all...]
  /external/valgrind/main/include/
pub_tool_aspacemgr.h 68 dev==ino==foff = 0, fnidx == -1
80 dev==ino==foff = 0, fnidx == -1
86 dev==ino==foff = 0, fnidx == -1
103 ULong ino; member in struct:__anon12725
  /system/extras/fatblock/
fatblock.h 50 ino_t ino; member in struct:file
  /external/yaffs2/yaffs2/utils/
mkyaffs2image.c 57 ino_t ino; member in struct:__anon14424
87 if(oa->ino < ob->ino) return -1;
88 if(oa->ino > ob->ino) return 1;
94 static void add_obj_to_list(dev_t dev, ino_t ino, int obj)
99 obj_list[n_obj].ino = ino;
114 static int find_obj_in_list(dev_t dev, ino_t ino)
120 test.ino = ino
    [all...]

Completed in 737 milliseconds

12 3 4 5