HomeSort by relevance Sort by last modified time
    Searched defs:inode (Results 76 - 100 of 271) sorted by null

1 2 34 5 6 7 8 91011

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
minix_fs.h 30 * This is the original minix inode layout on disk.
44 * The new minix inode has all the time entries, as well as
47 * now 16-bit. The inode is now 64 bytes instead of 32.
97 __u16 inode; member in struct:minix_dir_entry
102 __u32 inode; member in struct:minix3_dir_entry
  /system/extras/ext4_utils/
contents.c 60 struct ext4_dir_entry_2 *prev, u32 inode, const char *name,
79 dentry->inode = inode;
90 and stores the location of the structure in an inode. The new inode's
91 .. link is set to dir_inode_num. Stores the location of the inode number
92 of each directory entry into dentries[i].inode, to be filled in later
93 when the inode for the entry is allocated. Returns the inode number of the
98 struct ext4_inode *inode; local
176 struct ext4_inode *inode; local
204 struct ext4_inode *inode; local
239 struct ext4_inode *inode = get_inode(inode_num); local
444 struct ext4_inode *inode = get_inode(inode_num); local
    [all...]
ext4_utils.c 303 struct ext4_inode *inode = get_inode(EXT4_RESIZE_INO); local
304 if (inode == NULL) {
305 error("failed to get resize inode");
322 inode_attach_resize(inode, reserve_inode_alloc);
324 inode->i_mode = S_IFREG | S_IRUSR | S_IWUSR;
325 inode->i_links_count = 1;
330 /* Allocate the blocks to hold a journal inode and connect them to the
331 reserved journal inode */
334 struct ext4_inode *inode = get_inode(EXT4_JOURNAL_INO); local
335 if (inode == NULL)
    [all...]
make_ext4fs.c 71 Allocating blocks in the same block group as the file inode
83 u32 inode; local
94 inode = make_directory(root_inode, 0, NULL, 0);
95 *dentries.inode = inode;
96 inode_set_permissions(inode, dentries.mode,
120 u32 inode; local
242 inode = make_directory(dir_inode, entries, dentries, dirs);
259 subdir_dir_path, inode, fs_config_func, sehnd, verbose);
268 *dentries[i].inode = entry_inode
    [all...]
allocate.c 64 struct ext4_inode *inode; member in struct:xattr_list_element
83 static struct ext4_xattr_header *xattr_list_find(struct ext4_inode *inode)
87 if (element->inode == inode)
93 static void xattr_list_insert(struct ext4_inode *inode, struct ext4_xattr_header *header)
96 element->inode = inode;
689 /* Returns an ext4_inode structure for an inode number */
690 struct ext4_inode *get_inode(u32 inode)
692 inode -= 1
734 u32 inode; local
757 u32 inode; local
    [all...]
ext4fixup.c 39 /* The inode block count for a file/directory is in units of 512 byte blocks,
242 printf(" Inode size: %d\n", info.inode_size);
257 static int read_inode(int fd, unsigned int inum, struct ext4_inode *inode)
270 critical_error_errno("failed to seek to inode %d\n", inum);
273 len=read(fd, inode, sizeof(*inode));
274 if (len != sizeof(*inode)) {
275 critical_error_errno("failed to read inode %d\n", inum);
345 * new_inodes_per_group, retrieve the inode bitmap, and make sure
361 printf("Warning: updated inode bitmap for block group %d\n", bg_num)
594 struct ext4_inode inode; local
    [all...]
  /external/e2fsprogs/debugfs/
logdump.c 164 printf("Inode %u is at group %u, block %u, offset %u\n",
600 * If the block is an inode block for the inode being searched
601 * for, then we need to dump the contents of that inode
632 struct ext2_inode *inode; local
635 fprintf(out_file, " (inode block for inode %u):\n",
638 inode = (struct ext2_inode *) (buf + inode_offset_to_dump);
639 internal_dump_inode(out_file, " ", inode_to_dump, inode, 0);
643 * on-disk inode, not from the journaled copy of th
    [all...]
  /external/e2fsprogs/e2fsck/
journal.c 52 struct inode *inode = journal->j_inode;
56 if (!inode) {
61 retval= ext2fs_bmap(inode->i_ctx->fs, inode->i_ino,
62 &inode->i_ext2, NULL, 0, block, &pblk);
233 struct inode *j_inode = NULL;
272 "journal inode");
455 /* The journal inode is bogus, remove and force full fsck */
513 /* If we don't even have JFS_MAGIC, we probably have a wrong inode */
924 struct ext2_inode inode; local
    [all...]
pass1b.c 6 * than one inode.
16 * Pass1D is a reconciliation pass. For each inode with duplicate
62 ext2_ino_t inode; member in struct:inode_el
72 * This structure stores information about a particular inode which
81 struct ext2_inode inode; member in struct:dup_inode
119 struct ext2_inode *inode)
138 sizeof(struct inode_el), "inode element");
139 ino_el->inode = ino;
149 sizeof(struct dup_inode), "duplicate inode header");
158 di->inode = *inode
260 struct ext2_inode *inode; member in struct:process_block_struct
268 struct ext2_inode inode; local
596 struct ext2_inode inode; local
    [all...]
super.c 42 * helper function to release an inode
94 * If we are truncating an orphan, then update the inode fields
149 * This function releases an inode. Returns 1 if an inconsistency was
150 * found. If the inode has a link count, then it is being truncated and
154 struct ext2_inode *inode, char *block_buf,
162 if (!ext2fs_inode_has_valid_blocks(inode))
170 if (inode->i_links_count) {
173 ((((long long)inode->i_size_high << 32) +
174 inode->i_size + fs->blocksize - 1) /
176 pb.truncate_offset = inode->i_size % fs->blocksize
228 struct ext2_inode inode; local
310 struct ext2_inode inode; local
    [all...]
pass2.c 20 * - The inode number in the directory entry should be within
22 * - The inode number should refer to a in-use inode.
23 * - The first entry should be '.', and its inode should be
24 * the inode of the directory.
31 * - The inode numbers of the subdirectories for each directory.
60 * Keeps track of how many times an inode is referenced.
352 if (!dirent->inode)
365 dirent->inode = ino;
373 if (dirent->inode != ino)
481 struct ext2_inode inode; local
1180 struct ext2_inode inode; local
1238 struct ext2_inode inode; local
1252 struct ext2_inode inode; local
1405 struct ext2_inode inode; local
    [all...]
rehash.c 56 struct ext2_inode *inode; member in struct:fill_dir_struct
98 if (offset + fs->blocksize > fd->inode->i_size) {
129 if (dirent->inode == 0)
136 fd->parent = dirent->inode;
152 ent->ino = dirent->inode;
196 ret = he_b->dir->inode - he_a->dir->inode;
353 if (!ent->dir->inode ||
360 if ((ent->dir->inode == prev->dir->inode) &
672 struct ext2_inode inode; local
706 struct ext2_inode inode; local
    [all...]
pass1.c 2 * pass1.c -- pass #1 of e2fsck: sequential scan of the inode table
12 * and applies the following tests to each inode:
14 * - The mode field of the inode must be legal.
15 * - The size and block count fields of the inode are correct.
16 * - A data block must not be used by another inode
31 * other passes should not need to read in the inode information
34 * inode to fix it.)
89 struct ext2_inode *inode; member in struct:process_block_struct
97 struct ext2_inode inode; member in struct:process_inode_block
125 * Check to make sure a device inode is real. Returns 1 if the devic
133 struct ext2_inode *inode) struct
257 struct ext2_inode *inode = pctx->inode; local
273 struct ext2_inode_large *inode; local
353 struct ext2_inode_large *inode; local
403 struct ext2_inode *inode = pctx->inode; local
549 struct ext2_inode *inode; local
1414 struct ext2_inode *inode = pctx->inode; local
1825 struct ext2_inode *inode = pctx->inode; local
1878 struct ext2_inode *inode = pctx->inode; local
    [all...]
  /external/e2fsprogs/misc/
dumpe2fs.c 219 fputs(_(", Inode bitmap at "), stdout);
224 fputs(_("\n Inode table at "), stdout);
304 struct ext2_inode inode; local
312 retval = ext2fs_read_inode(fs, ino, &inode);
315 _("while reading journal inode"));
318 retval = ext2fs_file_open2(fs, ino, &inode, 0, &journal_file);
321 _("while opening journal inode"));
353 (inode.i_flags & EXT4_HUGE_FILE_FL))
354 size = inode.i_blocks / (fs->blocksize / 1024);
356 size = inode.i_blocks >> 1
    [all...]
e2image.c 110 com_err(program_name, retval, _("while writing inode table"));
124 com_err(program_name, retval, _("while writing inode bitmap"));
161 * ext2fs_check_directory; we use them since we already have the inode
163 * the inode again.
195 struct ext2_inode *inode) struct
199 *inode = *stashed_inode;
268 * Mark the blocks used for the inode table
286 * Mark block used for the inode bitmap
462 struct ext2_inode inode; local
489 com_err(program_name, retval, _("while opening inode scan"))
    [all...]
tune2fs.c 270 * Remove the journal inode from the filesystem
274 struct ext2_inode inode; local
278 retval = ext2fs_read_inode(fs, ino, &inode);
281 _("while reading journal inode"));
296 _("while clearing journal inode"));
299 memset(&inode, 0, sizeof(inode));
303 inode.i_flags &= ~EXT2_IMMUTABLE_FL;
304 retval = ext2fs_write_inode(fs, ino, &inode);
307 _("while writing journal inode"));
1209 struct ext2_inode inode; local
    [all...]
  /external/kernel-headers/original/linux/nfsd/
nfsfh.h 30 * ino/dev of the exported inode.
34 __u32 fb_ino; /* our inode number */
35 __u32 fb_dirino; /* dir inode number, 0 for directories */
65 * 0 - 4 byte device id (ms-2-bytes major, ls-2-bytes minor), 4byte inode number
69 * 2 - 4 byte major, 4 byte minor, 4 byte inode number - DEPRECATED
70 * 3 - 4 byte device id, encoded for user-space, 4 byte inode number
78 * 1 - 32bit inode number, 32 bit generation number.
79 * 2 - 32bit inode number, 32 bit generation number, 32 bit parent directory inode number.
141 unsigned char fh_locked; /* inode locked by us *
245 struct inode *inode; local
262 struct inode *inode = fhp->fh_dentry->d_inode; local
303 struct inode *inode; local
    [all...]
  /external/v8/test/cctest/
test-mark-compact.cc 513 uintptr_t inode = ReadLong(buffer, &position, 10); local
516 private_mapping && inode == 0) {
  /external/grub/stage2/
fsys_minix.c 79 #define INODE_VERSION(inode) inode->i_sb->u.minix_sb.s_version
81 #define INODE_VERSION(inode) (SUPERBLOCK->s_version)
84 * This is the original minix inode layout on disk.
98 * The new minix inode has all the time entries, as well as
101 * now 16-bit. The inode is now 64 bytes instead of 32.
132 __u16 inode; member in struct:minix_dir_entry
140 #define INODE \
143 ((int)((int)INODE + sizeof(struct minix_inode)))
200 a physical block (the location in the file system) via an inode. *
    [all...]
fsys_xfs.c 65 #define inode ((xfs_dinode_t *)((char *)FSYS_BUF + 8192)) macro
66 #define icore (inode->di_core)
216 devread (daddr, offset*xfs.isize, xfs.isize, (char *)inode);
219 (inode->di_u.di_c + sizeof(xfs_bmdr_block_t)
233 xfs.xt = inode->di_u.di_bmx;
322 ? le64(*(xfs_ino_t *)(&inode->di_u.di_dir2sf.hdr.parent))
323 : le32(*(xfs_uint32_t *)(&inode->di_u.di_dir2sf.hdr.parent));
364 (inode->di_u.di_c
416 xfs.dirmax = inode->di_u.di_dir2sf.hdr.count;
417 xfs.i8param = inode->di_u.di_dir2sf.hdr.i8count ? 0 : 4
    [all...]
  /external/srec/srec/crec/
astar.c 1006 int to_nodes[32], *pto_nodes, inode; local
    [all...]
  /external/yaffs2/yaffs2/
yaffs_fs.c 22 * >> inode->u.generic_ip points to the associated yaffs_Object.
29 * * Michael Fischer for finding the problem with inode inconsistency.
118 static int yaffs_create(struct inode *dir, struct dentry *dentry, int mode,
120 static struct dentry *yaffs_lookup(struct inode *dir, struct dentry *dentry,
123 static int yaffs_create(struct inode *dir, struct dentry *dentry, int mode);
124 static struct dentry *yaffs_lookup(struct inode *dir, struct dentry *dentry);
126 static int yaffs_link(struct dentry *old_dentry, struct inode *dir,
128 static int yaffs_unlink(struct inode *dir, struct dentry *dentry);
129 static int yaffs_symlink(struct inode *dir, struct dentry *dentry,
131 static int yaffs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
326 struct inode *inode = NULL; \/* NCB 2.5\/2.6 needs NULL here *\/ local
551 struct inode *inode; local
772 struct inode *inode; local
805 struct inode *inode; local
861 struct inode *inode = f->f_dentry->d_inode; local
957 struct inode *inode; local
1100 struct inode *inode = old_dentry->d_inode; local
1158 struct inode *inode; local
1250 struct inode *inode = dentry->d_inode; local
1456 struct inode *inode = NULL; local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/pat_trie_/
pat_trie_.hpp 135 typedef typename traits_type::inode inode; typedef in class:__gnu_pbds::detail::PB_DS_PAT_TRIE_NAME
136 typedef typename inode::iterator inode_iterator;
137 typedef typename _Alloc::template rebind<inode> __rebind_in;
  /external/e2fsprogs/lib/ext2fs/
extent.c 55 struct ext2_inode *inode; member in struct:ext2_extent_handle
159 * Begin functions to handle an inode's extent information
168 if (handle->inode)
169 ext2fs_free_mem(&handle->inode);
187 struct ext2_inode *inode,
197 if (!inode)
206 retval = ext2fs_get_mem(sizeof(struct ext2_inode), &handle->inode);
213 if (inode) {
214 memcpy(handle->inode, inode, sizeof(struct ext2_inode))
1586 ext2_ino_t inode; local
    [all...]
  /external/e2fsprogs/resize/
resize2fs.c 18 * 1. Adjust superblock and write out new parts of the inode
22 * 3. Scan the inode table, doing the following:
26 * b. If parts of the inode table need to be evacuated,
32 * 4. Update the directory blocks with the new inode locations.
33 * 5. Move the inode tables, if necessary.
242 * initialize any new parts of the inode table. The new parts of the
243 * inode table are created in virgin disk space, so we can abort here
249 * If the group descriptor's bitmap and inode table blocks are valid,
251 * reserved so the old inode table blocks don't get overwritten.
323 * backups, the inode bitmap, the block bitmap, and the inod
1235 struct ext2_inode * inode; member in struct:process_block_struct
1310 struct ext2_inode *inode = NULL; local
1475 struct ext2_inode inode; local
1711 struct ext2_inode inode; local
1869 struct ext2_inode inode; local
    [all...]

Completed in 530 milliseconds

1 2 34 5 6 7 8 91011