HomeSort by relevance Sort by last modified time
    Searched defs:inode (Results 101 - 125 of 174) sorted by null

1 2 3 45 6 7

  /external/f2fs-tools/fsck/
dir.c 277 * Parent inode needs updating, because its inode info may be changed.
315 static void make_empty_dir(struct f2fs_sb_info *sbi, struct f2fs_node *inode)
318 nid_t ino = le32_to_cpu(inode->footer.ino);
319 nid_t pino = le32_to_cpu(inode->i.i_pino);
351 inode->i.i_addr[get_extra_isize(inode)] = cpu_to_le32(blkaddr);
355 static void page_symlink(struct f2fs_sb_info *sbi, struct f2fs_node *inode,
358 nid_t ino = le32_to_cpu(inode->footer.ino);
368 if ((unsigned long)(symlen + 1) <= MAX_INLINE_DATA(inode)) {
464 struct f2fs_inode *inode = &(node->i); local
    [all...]
  /external/squashfs-tools/squashfs-tools/
mksquashfs.h 51 struct inode_info *inode; member in struct:dir_ent
65 squashfs_inode inode; member in struct:inode_info
xattr.c 681 struct inode_info *inode = dir_ent->inode; local
694 if(no_xattrs || IS_PSEUDO(inode) || inode->root_entry)
706 read_selinux_xattr_from_sehnd(mounted_path, inode->buf.st_mode,
711 read_selinux_xattr_from_sehnd(filename, inode->buf.st_mode,
unsquashfs.h 85 struct inode { struct
106 unsigned int offset, struct inode **i);
112 struct inode *(*read_inode)(unsigned int start_block,
257 extern struct inode *read_inode_1(unsigned int, unsigned int);
259 struct inode **);
266 extern struct inode *read_inode_2(unsigned int, unsigned int);
271 extern struct inode *read_inode_3(unsigned int, unsigned int);
273 struct inode **);
278 extern struct inode *read_inode_4(unsigned int, unsigned int);
280 struct inode **);
    [all...]
  /external/strace/
socketutils.c 52 unsigned long inode; member in struct:__anon35338
61 cache_inode_details(const unsigned long inode, char *const details)
63 cache_entry *e = &cache[inode & CACHE_MASK];
65 e->inode = inode;
72 get_sockaddr_by_inode_cached(const unsigned long inode)
74 const cache_entry *const e = &cache[inode & CACHE_MASK];
75 return (e && inode == e->inode) ? e->details : NULL;
79 print_sockaddr_by_inode_cached(const unsigned long inode)
    [all...]
util.c 428 unsigned long inode; local
435 || !(inode = strtoul(str, NULL, 10))
436 || !print_sockaddr_by_inode(tcp, fd, inode)) {
  /external/syslinux/core/fs/btrfs/
btrfs.c 396 static struct inode *btrfs_iget_by_inr(struct fs_info *fs, u64 inr)
399 struct inode *inode; local
405 /* FIXME: some BTRFS inode member are u64, while our logical inode
415 if (!(inode = alloc_inode(fs, inr, sizeof(struct btrfs_pvt_inode))))
417 inode->ino = inr;
418 inode->size = inode_item.size;
419 inode->mode = IFTODT(inode_item.mode);
421 if (inode->mode == DT_REG || inode->mode == DT_LNK)
484 struct inode * const inode = file->inode; local
    [all...]
  /external/syslinux/core/fs/pxe/
pxe.c 28 * Return the inode pointer if success, or null if failure
30 static struct inode *allocate_socket(struct fs_info *fs)
32 struct inode *inode = alloc_inode(fs, 0, sizeof(struct pxe_pvt_inode)); local
34 if (!inode) {
37 inode->mode = DT_REG; /* No other types relevant for PXE */
40 return inode;
43 void free_socket(struct inode *inode)
45 struct pxe_pvt_inode *socket = PVT(inode);
53 struct inode *inode = file->inode; local
199 struct inode *inode = file->inode; local
274 struct inode *inode; local
676 struct inode *inode = file->inode; local
    [all...]
  /external/syslinux/core/fs/xfs/
xfs_dir2.c 171 struct inode *xfs_dir2_local_find_entry(const char *dname, struct inode *parent,
178 struct inode *inode; local
206 inode = xfs_new_inode(fs);
214 xfs_debug("entry inode's number %lu", ino);
222 fill_xfs_inode_pvt(fs, inode, ino);
224 inode->ino = ino;
225 inode->size = be64_to_cpu(ncore->di_size);
228 inode->mode = DT_DIR
256 struct inode *inode = NULL; local
    [all...]
  /external/toybox/toys/net/
netstat.c 127 unsigned long inode; local
135 &uid, &inode);
141 &rxq, &uid, &inode);
173 if ((toys.optflags & FLAG_e)) printf(" %-10s %-11ld", toybuf, inode);
175 struct num_cache *nc = get_num_cache(TT.inodes, inode);
189 unsigned long refcount, flags, type, state, inode; local
199 &refcount, &flags, &type, &state, &inode, &offset))
215 refcount, toybuf, types[type], states[state], inode);
217 struct num_cache *nc = get_num_cache(TT.inodes, inode);
354 if (toys.optflags & FLAG_e) printf(" User Inode ");
    [all...]
  /external/toybox/toys/pending/
lsof.c 128 static struct file_info *add_socket(ino_t inode, const char *type)
133 fi->st_ino = inode;
140 long inode; local
143 if (sscanf(line, "%*p: %*X %*X %*X %*X %*X %lu %n", &inode, &path_pos) >= 1) {
144 struct file_info *fi = add_socket(inode, "unix");
154 long inode; local
162 if (sscanf(line, "%*p %u %*u %*x %*u %*u %*u %*u %*u %lu", &state, &inode)<2)
165 struct file_info *fi = add_socket(inode, "netlink");
180 long inode; local
187 &state, &inode) == 6
334 long inode; local
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
fs_nacl.go 32 root *inode // root directory
33 cwd *inode // process current directory
45 // An inode is a (possibly special) file in the file system.
46 type inode struct { type
55 inode *inode
62 inode *inode
109 // newInode creates a new inode.
110 func (fs *fsys) newInode() *inode {
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
fs_nacl.go 32 root *inode // root directory
33 cwd *inode // process current directory
45 // An inode is a (possibly special) file in the file system.
46 type inode struct { type
55 inode *inode
62 inode *inode
109 // newInode creates a new inode.
110 func (fs *fsys) newInode() *inode {
    [all...]
  /external/e2fsprogs/e2fsck/
journal.c 103 struct inode *inode = journal->j_inode;
107 if (!inode) {
112 retval= ext2fs_bmap2(inode->i_ctx->fs, inode->i_ino,
113 &inode->i_ext2, NULL, 0, block, 0, &pblk);
285 struct inode *j_inode = NULL;
324 "journal inode");
540 /* The journal inode is bogus, remove and force full fsck */
599 /* If we don't even have JFS_MAGIC, we probably have a wrong inode */
1029 struct ext2_inode inode; local
    [all...]
pass1b.c 6 * than one inode.
16 * Pass1D is a reconciliation pass. For each inode with duplicate
63 ext2_ino_t inode; member in struct:inode_el
73 * This structure stores information about a particular inode which
82 struct ext2_inode_large inode; member in struct:dup_inode
121 struct ext2_inode_large *inode)
140 sizeof(struct inode_el), "inode element");
141 ino_el->inode = ino;
151 sizeof(struct dup_inode), "duplicate inode header");
160 di->inode = *inode
266 struct ext2_inode_large *inode; member in struct:process_block_struct
274 struct ext2_inode_large inode; local
732 struct ext2_inode_large *inode; member in struct:clone_struct
    [all...]
rehash.c 78 struct ext2_inode *inode; member in struct:fill_dir_struct
122 if (offset + fs->blocksize > fd->inode->i_size) {
160 if (dirent->inode == 0)
167 fd->parent = dirent->inode;
183 ent->ino = dirent->inode;
229 ret = he_b->dir->inode - he_a->dir->inode;
386 if (!ent->dir->inode ||
393 if ((ent->dir->inode == prev->dir->inode) &
792 struct ext2_inode inode; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
csum.c 302 struct ext2_inode inode; local
304 retval = ext2fs_read_inode(fs, inum, &inode);
309 gen = ext2fs_cpu_to_le32(inode.i_generation);
369 struct ext2_inode inode; local
375 retval = ext2fs_read_inode(fs, inum, &inode);
380 gen = ext2fs_cpu_to_le32(inode.i_generation);
492 struct ext2_inode inode; local
497 retval = ext2fs_read_inode(fs, inum, &inode);
501 gen = ext2fs_cpu_to_le32(inode.i_generation);
630 struct ext2_inode_large *inode,
    [all...]
ext_attr.c 321 struct ext2_inode_large *inode)
329 /* Read inode? */
330 if (inode == NULL) {
335 inode = &i;
339 blk = ext2fs_file_acl_block(fs, (struct ext2_inode *)inode);
371 ext2fs_file_acl_block_set(fs, (struct ext2_inode *)inode, 0);
374 err = ext2fs_iblk_sub_blocks(fs, (struct ext2_inode *)inode, 1);
378 /* Write inode? */
379 if (inode == &i) {
393 struct ext2_inode_large *inode)
523 struct ext2_inode_large *inode; local
782 struct ext2_inode_large *inode; local
938 struct ext2_inode_large *inode; local
    [all...]
extent.c 58 struct ext2_inode *inode; member in struct:ext2_extent_handle
192 * Begin functions to handle an inode's extent information
218 struct ext2_inode *inode,
228 if (!inode)
240 if (inode) {
241 handle->inode = inode;
243 handle->inode = &handle->inodebuf;
244 retval = ext2fs_read_inode(fs, ino, handle->inode);
249 eh = (struct ext3_extent_header *) &handle->inode->i_block[0]
    [all...]
inode.c 2 * inode.c --- utility routines to read and write inodes
80 * Free the inode cache structure
91 ext2fs_free_mem(&icache->cache[i].inode);
126 &fs->icache->cache[i].inode);
149 * If fs->badblocks isn't set, then set it --- since the inode
305 * blocks in the inode table.
317 * If the inode table is missing, then obviously there are no
365 struct ext2_inode_large *inode)
370 if ((inode->i_flags & EXT4_INLINE_DATA_FL) ||
371 (inode->i_flags & EXT4_EXTENTS_FL)
414 struct ext2_inode_large *inode; local
1018 struct ext2_inode inode; local
1041 struct ext2_inode inode; local
    [all...]
  /external/syslinux/core/fs/fat/
fat.c 15 static struct inode * new_fat_inode(struct fs_info *fs)
17 struct inode *inode = alloc_inode(fs, 0, sizeof(struct fat_pvt_inode)); local
18 if (!inode)
19 malloc_error("inode structure");
21 return inode;
87 static int fat_next_extent(struct inode *inode, uint32_t lstart)
89 struct fs_info *fs = inode->fs;
100 tcluster = (inode->size + cluster_bytes - 1) >> sbi->clust_byte_shift
187 struct inode *inode = file->inode; local
217 struct inode *inode = file->inode; local
441 struct inode *inode; local
569 struct inode *inode = new_fat_inode(fs); local
    [all...]
  /external/syslinux/core/fs/ntfs/
ntfs.c 66 static inline struct inode *new_ntfs_inode(struct fs_info *fs)
68 struct inode *inode; local
70 inode = alloc_inode(fs, 0, sizeof(struct ntfs_inode));
71 if (!inode)
72 malloc_error("inode structure");
74 return inode;
611 struct inode *inode)
633 NTFS_PVT(inode)->mft_no = mft_no
743 struct inode *inode; local
967 struct inode *inode = file->inode; local
1021 struct inode *inode = file->inode; local
1232 struct inode *inode; local
    [all...]
  /external/syslinux/core/include/
fs.h 37 struct inode *root, *cwd; /* Root and current directories */
66 struct inode * (*iget_root)(struct fs_info *);
67 struct inode * (*iget)(const char *, struct inode *);
68 int (*readlink)(struct inode *, char *);
73 int (*next_extent)(struct inode *, uint32_t);
98 * The inode structure, including the detail file information
100 struct inode { struct
101 struct fs_info *fs; /* The filesystem this inode is associated with */
102 struct inode *parent; /* Parent directory, if any *
122 struct inode *inode; \/* The file-specific information *\/ member in struct:file
    [all...]
  /external/toybox/toys/
e2fs.h 36 uint32_t first_ino; // First non-reserved inode
37 uint16_t inode_size; // size of inode structure
52 uint32_t journal_inum; // inode number of journal file
61 uint32_t jnl_blocks[17]; // Backup of journal inode
68 uint32_t inode_bitmap; // Block number of inode bitmap
69 uint32_t inode_table; // Block number of inode table
77 uint32_t inode; // Inode number member in struct:ext2_dentry
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
pat_trie_.hpp 134 typedef typename traits_type::inode inode; typedef in class:__gnu_pbds::detail::PB_DS_PAT_TRIE_NAME
135 typedef typename inode::iterator inode_iterator;
136 typedef typename _Alloc::template rebind<inode> __rebind_in;

Completed in 830 milliseconds

1 2 3 45 6 7