HomeSort by relevance Sort by last modified time
    Searched full:inode (Results 201 - 225 of 1335) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/e2fsprogs/lib/ext2fs/
namei.c 28 ext2_ino_t inode, int link_count,
37 printf("follow_link: root=%lu, dir=%lu, inode=%lu, lc=%d\n",
38 root, dir, inode, link_count);
41 retval = ext2fs_read_inode (fs, inode, &ei);
44 *res_inode = inode;
71 * directory and the root directory, and returns the inode of the
84 ext2_ino_t inode; local
101 retval = ext2fs_lookup (fs, dir, thisname, len, buf, &inode);
103 retval = follow_link (fs, root, dir, inode,
119 ext2_ino_t dir, inode; local
    [all...]
res_gdt.c 58 * uses before we can add them to the resize inode (which has to come
59 * after the creation of the inode table).
65 struct ext2_inode inode; local
80 retval = ext2fs_read_inode(fs, EXT2_RESIZE_INO, &inode);
86 if ((dindir_blk = inode.i_block[EXT2_DIND_BLOCK])) {
101 inode.i_mode = LINUX_S_IFREG | 0600;
102 inode.i_links_count = 1;
103 inode.i_block[EXT2_DIND_BLOCK] = dindir_blk;
104 ext2fs_iblk_set(fs, &inode, 1);
112 inode.i_size = inode_size & 0xFFFFFFFF
    [all...]
link.c 25 ext2_ino_t inode; member in struct:link_struct
56 (next->inode == 0) &&
70 if (dirent->inode) {
80 next->inode = 0;
94 dirent->inode = ls->inode;
116 struct ext2_inode inode; local
126 ls.inode = ino;
143 if ((retval = ext2fs_read_inode(fs, dir, &inode)) != 0)
146 if (inode.i_flags & EXT2_INDEX_FL)
    [all...]
read_bb.c 2 * read_bb --- read the bad blocks inode
62 * Reads the current bad blocks from the bad blocks inode.
68 struct ext2_inode inode; local
74 retval = ext2fs_read_inode(fs, EXT2_BAD_INO, &inode);
77 numblocks = inode.i_blocks;
80 (inode.i_flags & EXT4_HUGE_FILE_FL)))
  /external/e2fsprogs/tests/m_no_opt/
expect.1 15 Writing inode tables: done
37 Inode count: 16384
48 Inode blocks per group: 256
53 First inode: 11
54 Inode size: 128
60 Block bitmap at 3 (+2), Inode bitmap at 4 (+3)
61 Inode table at 5-260 (+4)
67 Block bitmap at 8195 (+2), Inode bitmap at 8196 (+3)
68 Inode table at 8197-8452 (+4)
74 Block bitmap at 16387 (+2), Inode bitmap at 16388 (+3
    [all...]
  /external/e2fsprogs/tests/m_std/
expect.1 16 Writing inode tables: done
38 Inode count: 16384
50 Inode blocks per group: 256
55 First inode: 11
56 Inode size: 128
63 Block bitmap at 258 (+257), Inode bitmap at 259 (+258)
64 Inode table at 260-515 (+259)
71 Block bitmap at 8450 (+257), Inode bitmap at 8451 (+258)
72 Inode table at 8452-8707 (+259)
77 Block bitmap at 16385 (+0), Inode bitmap at 16386 (+1
    [all...]
  /external/e2fsprogs/tests/m_dasd_bs/
expect.1 16 Writing inode tables: done
38 Inode count: 16384
50 Inode blocks per group: 512
55 First inode: 11
56 Inode size: 128
63 Block bitmap at 33 (+33), Inode bitmap at 34 (+34)
64 Inode table at 35-546 (+35)
71 Block bitmap at 16417 (+33), Inode bitmap at 16418 (+34)
72 Inode table at 16419-16930 (+35)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
TableRowRule.java 23 import com.android.ide.common.api.INode;
36 protected boolean isVertical(INode node) {
46 public void onChildInserted(@NonNull INode child, @NonNull INode parent,
56 final @NonNull INode parentNode,
57 final @NonNull List<? extends INode> children) {
64 INode grandParent = parentNode.getParent();
73 public DropFeedback onResizeBegin(@NonNull INode child, @NonNull INode parent,
TableLayoutRule.java 25 import com.android.ide.common.api.INode;
54 protected boolean isVertical(INode node) {
65 public void onChildInserted(@NonNull INode child, @NonNull INode parent,
76 final @NonNull INode selectedNode) {
83 @NonNull List<? extends INode> selectedNodes,
86 final INode node = selectedNode;
87 INode newRow = node.appendChild(FQCN_TABLE_ROW);
97 final @NonNull INode parentNode,
98 final @NonNull List<? extends INode> children)
    [all...]
  /system/extras/ext4_utils/
indirect.c 166 /* Given an allocation, attach as many blocks as possible to direct inode
168 static int inode_attach_direct_blocks(struct ext4_inode *inode,
175 inode->i_block[i] = get_block(alloc, i);
191 static int inode_attach_indirect_blocks(struct ext4_inode *inode,
197 inode->i_block[EXT4_IND_BLOCK] = ind_block;
223 static int inode_attach_dindirect_blocks(struct ext4_inode *inode,
229 inode->i_block[EXT4_DIND_BLOCK] = dind_block;
255 static int inode_attach_tindirect_blocks(struct ext4_inode *inode,
261 inode->i_block[EXT4_TIND_BLOCK] = tind_block;
348 static int do_inode_attach_indirect(struct ext4_inode *inode,
    [all...]
extent.c 76 struct ext4_inode *inode, u64 len)
100 (struct ext4_extent_header *)&inode->i_block[0];
107 extent = (struct ext4_extent *)&inode->i_block[3];
110 (struct ext4_extent_header *)&inode->i_block[0];
118 (struct ext4_extent_idx *)&inode->i_block[3];
167 inode->i_flags |= EXT4_EXTENTS_FL;
168 inode->i_size_lo = len;
169 inode->i_size_high = len >> 32;
170 inode->i_blocks_lo = blocks;
171 inode->osd2.linux2.l_i_blocks_high = blocks >> 32
    [all...]
extent.h 23 void inode_allocate_extents(struct ext4_inode *inode, u64 len);
24 void inode_allocate_file_extents(struct ext4_inode *inode, u64 len,
26 u8 *inode_allocate_data_extents(struct ext4_inode *inode, u64 len,
indirect.h 22 void inode_allocate_indirect(struct ext4_inode *inode, unsigned long len);
23 u8 *inode_allocate_data_indirect(struct ext4_inode *inode, unsigned long len,
25 void inode_attach_resize(struct ext4_inode *inode,
  /external/e2fsprogs/e2fsck/
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...]
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...]
  /external/e2fsprogs/tests/f_badtable/
expect.1 6 Group 0's inode bitmap (4) is bad. Relocate? yes
9 Relocating group 0's inode bitmap from 4 to 10...
11 Entry 'lost+found' in / (2) points to inode (11) located in a bad block.
18 Inode 2 ref count is 4, should be 3. Fix? yes
30 Inode bitmap differences: +(12--16) +(25--32)
  /external/e2fsprogs/tests/f_lpf2/
expect.1 4 Unconnected directory inode 12 (/???)
9 Unconnected directory inode 13 (/???)
13 Inode 2 ref count is 4, should be 3. Fix? yes
15 Inode 12 ref count is 3, should be 2. Fix? yes
17 Inode 13 ref count is 3, should be 2. Fix? yes
  /external/kernel-headers/original/linux/
efs_fs_i.h 36 * extent based filesystem inode as it appears on disk. The efs inode
50 u_char di_version; /* version of inode */
58 /* efs inode storage in memory */
64 struct inode vfs_inode;
msdos_fs.h 265 * MS-DOS file system inode data in memory
280 struct inode vfs_inode;
288 static inline struct msdos_inode_info *MSDOS_I(struct inode *inode)
290 return container_of(inode, struct msdos_inode_info, vfs_inode);
293 /* Return the FAT attribute byte for this inode */
294 static inline u8 fat_attr(struct inode *inode)
296 return ((inode->i_mode & S_IWUGO) ? ATTR_NONE : ATTR_RO) |
297 (S_ISDIR(inode->i_mode) ? ATTR_DIR : ATTR_NONE)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
fs.h 141 /* Inode flags - they have nothing to superblock flags now */
148 #define S_NOQUOTA 32 /* Inode is not counted to quota */
152 #define S_PRIVATE 512 /* Inode is fs-internal */
155 * Note that nosuid etc flags are inode-specific: setting some file-system
167 #define __IS_FLG(inode,flg) ((inode)->i_sb->s_flags & (flg))
169 #define IS_RDONLY(inode) ((inode)->i_sb->s_flags & MS_RDONLY)
170 #define IS_SYNC(inode) (__IS_FLG(inode, MS_SYNCHRONOUS) ||
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
fs.h 141 /* Inode flags - they have nothing to superblock flags now */
148 #define S_NOQUOTA 32 /* Inode is not counted to quota */
152 #define S_PRIVATE 512 /* Inode is fs-internal */
155 * Note that nosuid etc flags are inode-specific: setting some file-system
167 #define __IS_FLG(inode,flg) ((inode)->i_sb->s_flags & (flg))
169 #define IS_RDONLY(inode) ((inode)->i_sb->s_flags & MS_RDONLY)
170 #define IS_SYNC(inode) (__IS_FLG(inode, MS_SYNCHRONOUS) ||
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
fs.h 141 /* Inode flags - they have nothing to superblock flags now */
148 #define S_NOQUOTA 32 /* Inode is not counted to quota */
152 #define S_PRIVATE 512 /* Inode is fs-internal */
155 * Note that nosuid etc flags are inode-specific: setting some file-system
167 #define __IS_FLG(inode,flg) ((inode)->i_sb->s_flags & (flg))
169 #define IS_RDONLY(inode) ((inode)->i_sb->s_flags & MS_RDONLY)
170 #define IS_SYNC(inode) (__IS_FLG(inode, MS_SYNCHRONOUS) ||
    [all...]
  /external/e2fsprogs/tests/f_dupdot/
expect.1 11 Unattached inode 13
14 Inode 13 ref count is 2, should be 1. Fix? yes
16 Unattached zero-length inode 14. Clear? yes
  /development/ndk/platforms/android-3/include/linux/
nfs_xdr.h 321 struct inode * inode; member in struct:nfs3_setaclargs
467 struct inode *inode; member in struct:nfs_read_data
482 struct inode *inode; member in struct:nfs_write_data
509 int (*lookup) (struct inode *, struct qstr *,
511 int (*access) (struct inode *, struct nfs_access_entry *);
512 int (*readlink)(struct inode *, struct page *, unsigned int,
517 int (*create) (struct inode *, struct dentry *
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
nfs_xdr.h 321 struct inode * inode; member in struct:nfs3_setaclargs
467 struct inode *inode; member in struct:nfs_read_data
482 struct inode *inode; member in struct:nfs_write_data
509 int (*lookup) (struct inode *, struct qstr *,
511 int (*access) (struct inode *, struct nfs_access_entry *);
512 int (*readlink)(struct inode *, struct page *, unsigned int,
517 int (*create) (struct inode *, struct dentry *
    [all...]

Completed in 1219 milliseconds

1 2 3 4 5 6 7 891011>>