HomeSort by relevance Sort by last modified time
    Searched refs:inode (Results 151 - 175 of 307) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/ltp/testcases/kernel/device-drivers/nls/
nlsTest.c 60 static int test_open(struct inode *, struct file *);
61 static int test_release(struct inode *, struct file *);
62 static int test_ioctl(struct inode *, struct file *,
87 static int test_open(struct inode *inode, struct file *f)
97 static int test_release(struct inode *ino, struct file *f)
107 static int test_ioctl(struct inode *ino, struct file *f,
  /external/syslinux/core/fs/pxe/
http.c 155 void http_open(struct url_info *url, int flags, struct inode *inode,
158 struct pxe_pvt_inode *socket = PVT(inode);
176 uint32_t content_length; /* same as inode->size */
191 inode->size = content_length = -1;
236 int ch = pxe_getc(inode);
389 inode->size = 0;
390 core_tcp_close_file(inode);
http_readdir.c 385 static const char *http_get_filename(struct inode *inode, char *buf)
398 c = pxe_getc(inode);
434 int http_readdir(struct inode *inode, struct dirent *dirent)
440 fn = http_get_filename(inode, buf);
  /system/core/libappfuse/
FuseAppLoop.cc 47 const uint64_t inode = static_cast<uint64_t>(atol(buffer->request.lookup_name)); local
48 if (inode == 0 || inode == LONG_MAX) {
53 callback->OnLookup(buffer->request.header.unique, inode);
154 bool FuseAppLoop::ReplyLookup(uint64_t unique, uint64_t inode, int64_t size) {
157 response.entry_out.nodeid = inode;
160 response.entry_out.attr.ino = inode;
166 bool FuseAppLoop::ReplyGetAttr(uint64_t unique, uint64_t inode, int64_t size, int mode) {
171 response.attr_out.attr.ino = inode;
  /external/e2fsprogs/lib/ext2fs/
fallocate.c 83 static errcode_t claim_range(ext2_filsys fs, struct ext2_inode *inode,
92 return ext2fs_iblk_add_blocks(fs, inode, clusters);
98 struct ext2_inode *inode,
126 eof_blk = EXT2_I_SIZE(inode) / fs->blocksize;
293 err = claim_range(fs, inode, pblk, plen);
364 err = ext2fs_map_cluster_block(fs, ino, inode,
382 err = claim_range(fs, inode, pblk, plen);
435 err = ext2fs_map_cluster_block(fs, ino, inode,
459 err = claim_range(fs, inode,
500 err = ext2fs_map_cluster_block(fs, ino, inode, newex.e_lblk
    [all...]
newdir.c 63 dir->inode = dir_ino;
79 dir->inode = parent_ino;
112 dir->inode = 0;
jfs_compat.h 33 struct inode;
80 struct inode * j_inode;
inode_io.c 2 * inode_io.c --- This is allows an inode in an ext2 filesystem image
40 struct ext2_inode inode; member in struct:inode_private_data
67 .name = "Inode I/O Manager",
82 struct ext2_inode *inode,
97 if (inode) {
98 memcpy(&data->inode, inode, sizeof(struct ext2_inode));
156 &data->inode : 0, open_flags,
  /external/f2fs-tools/fsck/
quotaio.h 99 time_t dqi_igrace; /* Inode grace time for given quotafile */
211 void quota_data_inodes(quota_ctx_t qctx, struct f2fs_inode *inode, int adjust);
212 void quota_data_add(quota_ctx_t qctx, struct f2fs_inode *inode, qsize_t space);
213 void quota_data_sub(quota_ctx_t qctx, struct f2fs_inode *inode, qsize_t space);
216 struct f2fs_inode* inode);
  /external/syslinux/core/fs/
readdir.c 22 if (file->inode->mode != DT_DIR) {
  /external/syslinux/core/fs/ufs/
ufs.h 69 uint32_t off_inode_tbl; // Inode table
125 uint32_t off_inode_tbl; // Inode table offset.
130 struct inode *(*ufs_iget_by_inr)(struct fs_info *, uint32_t);
131 void (*ufs_read_blkaddrs)(struct inode *, char *);
152 * UFS1 inode structures
178 * UFS2 inode structures
248 extern uint64_t ufs_bmap (struct inode *, block_t, size_t *);
249 extern int ufs_next_extent(struct inode *, uint32_t);
  /system/extras/ext4_utils/include/ext4_utils/
ext4.h 25 #define EXT4_ERROR_INODE(inode, fmt, a...) ext4_error_inode(__func__, (inode), (fmt), ## a);
63 struct inode *inode; member in struct:ext4_allocation_request
306 #define EXT4_INODE_SET_XTIME(xtime, inode, raw_inode) do { (raw_inode)->xtime = cpu_to_le32((inode)->xtime.tv_sec); if (EXT4_FITS_IN_INODE(raw_inode, EXT4_I(inode), xtime ## _extra)) (raw_inode)->xtime ## _extra = ext4_encode_extra_time(&(inode)->xtime); } while (0)
308 #define EXT4_INODE_GET_XTIME(xtime, inode, raw_inode) do { (inode)->xtime.tv_sec = (signed)le32_to_cpu((raw_inode)->xtime); if (EXT4_FITS_IN_INODE(raw_inode, EXT4 (…)
540 __le32 inode; member in struct:ext4_dir_entry
547 __le32 inode; member in struct:ext4_dir_entry_2
    [all...]
  /external/e2fsprogs/contrib/android/
block_list.c 35 struct ext2_inode *inode EXT2FS_ATTR((unused)),
41 params->entry.filename = LINUX_S_ISREG(inode->i_mode) ? path : NULL;
  /external/e2fsprogs/e2fsck/
iscan.c 2 * Test to see how quickly we can scan the inode table (not doing
100 struct ext2_inode inode; local
119 com_err(program_name, retval, _("while opening inode scan"));
124 retval = ext2fs_get_next_inode(scan, &ino, &inode);
127 _("while getting next inode"));
  /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
  /external/strace/tests/
nlattr_unix_diag_msg.c 109 static const uint32_t inode[] = { 0xadbcadbc, 0xfabdcdac }; local
112 UNIX_DIAG_ICONS, pattern, inode, print_uint);
  /external/strace/tests-m32/
nlattr_unix_diag_msg.c 109 static const uint32_t inode[] = { 0xadbcadbc, 0xfabdcdac }; local
112 UNIX_DIAG_ICONS, pattern, inode, print_uint);
  /external/strace/tests-mx32/
nlattr_unix_diag_msg.c 109 static const uint32_t inode[] = { 0xadbcadbc, 0xfabdcdac }; local
112 UNIX_DIAG_ICONS, pattern, inode, print_uint);
  /external/e2fsprogs/debugfs/
debugfs.h 52 ext2_ino_t *inode, int flags);
55 extern int debugfs_read_inode(ext2_ino_t ino, struct ext2_inode * inode,
57 extern int debugfs_read_inode_full(ext2_ino_t ino, struct ext2_inode * inode,
59 extern int debugfs_write_inode(ext2_ino_t ino, struct ext2_inode * inode,
61 extern int debugfs_write_inode_full(ext2_ino_t ino, struct ext2_inode * inode,
63 extern int debugfs_write_new_inode(ext2_ino_t ino, struct ext2_inode * inode,
  /external/ltp/testcases/kernel/device-drivers/include/
includeTest.c 62 static int test_ioctl(struct inode *, struct file *, unsigned int,
64 static int test_open(struct inode *, struct file *);
65 static int test_close(struct inode *, struct file *);
87 static int test_open(struct inode *ino, struct file *f)
93 static int test_close(struct inode *ino, struct file *f)
99 static int test_ioctl(struct inode *ino, struct file *f, unsigned int cmd,
  /external/ltp/testcases/kernel/device-drivers/usb/tusb/
tusb.c 63 static int tusb_ioctl(struct inode *, struct file *, unsigned int,
65 static int tusb_open(struct inode *, struct file *);
66 static int tusb_close(struct inode *, struct file *);
86 static int tusb_open(struct inode *ino, struct file *f)
91 static int tusb_close(struct inode *ino, struct file *f)
185 static int tusb_ioctl(struct inode *ino, struct file *f,
  /external/valgrind/callgrind/
main.c 248 InstrInfo* inode; member in struct:__anon42150
335 ev->inode, ev->inode->instr_offset);
339 ev->inode, ev->inode->instr_offset, ev->Ev.Dr.szB);
345 ev->inode, ev->inode->instr_offset, ev->Ev.Dw.szB);
351 ev->inode, ev->inode->instr_offset, ev->Ev.Dm.szB);
356 VG_(printf)("Bc %p GA=", ev->inode);
    [all...]
  /external/e2fsprogs/misc/
e2initrd_helper.c 79 struct ext2_inode inode; local
91 retval = ext2fs_read_inode(fs, ino, &inode);
95 if (inode.i_size_high || (inode.i_size > 65536))
98 buf = malloc(inode.i_size + 1);
101 memset(buf, 0, inode.i_size+1);
107 retval = ext2fs_file_read(e2_file, buf, inode.i_size, &got);
  /external/valgrind/cachegrind/
cg_main.c 516 InstrInfo* inode; member in struct:__anon42131
637 VG_(printf)("IrGen %p\n", ev->inode);
640 VG_(printf)("IrNoX %p\n", ev->inode);
643 VG_(printf)("Dr %p %d EA=", ev->inode, ev->Ev.Dr.szB);
648 VG_(printf)("Dw %p %d EA=", ev->inode, ev->Ev.Dw.szB);
653 VG_(printf)("Dm %p %d EA=", ev->inode, ev->Ev.Dm.szB);
658 VG_(printf)("Bc %p GA=", ev->inode);
663 VG_(printf)("Bi %p DST=", ev->inode);
726 i_node_expr = mkIRExpr_HWord( (HWord)ev->inode );
742 tl_assert(ev2->inode == ev->inode)
    [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.
347 /* Move bitmaps/inode tables out of the way. */
432 * Move any conflicting bitmaps and inode tables. Ensure that we
475 struct ext2_inode *inode)
482 if (!(inode->i_flags & EXT4_EXTENTS_FL))
516 struct ext2_inode *inode = NULL local
1816 struct ext2_inode * inode; member in struct:process_block_struct
1993 struct ext2_inode *inode = NULL; local
2175 struct ext2_inode inode; local
2597 struct ext2_inode inode; local
2744 struct ext2_inode inode; local
    [all...]

Completed in 475 milliseconds

1 2 3 4 5 67 8 91011>>