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

1 23 4 5 6 7 8 91011

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeFactoryTest.java 19 import com.android.ide.common.api.INode;
60 // Groovy scripts only see the INode interface so we want to primarily test that.
61 INode inode = proxy; local
62 assertEquals(new Rect(10, 12, 110-10-1, 120-12-1), inode.getBounds());
63 assertTrue(Arrays.equals(new INode[0], inode.getChildren()));
64 assertEquals("com.example.MyJavaClass", inode.getFqcn());
65 assertNull(inode.getParent());
66 assertSame(inode, inode.getRoot())
82 INode inode = proxy; local
    [all...]
  /external/e2fsprogs/debugfs/
ls.c 52 struct ext2_inode inode; variable in typeref:struct:ext2_inode
67 ino = dirent->inode;
77 if (ino && debugfs_read_inode(ino, &inode, name)) return 0;
78 fprintf(ls->f,"/%u/%06o/%d/%d/%s/",ino,inode.i_mode,inode.i_uid, inode.i_gid,name);
79 if (LINUX_S_ISDIR(inode.i_mode))
82 fprintf(ls->f, "%lld/", inode.i_size | ((__u64)inode.i_size_high << 32));
87 if (debugfs_read_inode(ino, &inode, name)
125 ext2_ino_t inode; local
    [all...]
lsdel.c 34 ext2_ino_t inode; member in struct:lsdel_struct
80 struct ext2_inode inode; local
120 "while opening inode scan");
125 retval = ext2fs_get_next_inode(scan, &ino, &inode);
129 "while starting inode scan");
134 if ((inode.i_dtime == 0) ||
135 (secs && ((unsigned) abs(now - secs) > inode.i_dtime)))
138 lsd.inode = ino;
165 delarray[num_delarray].mode = inode.i_mode;
166 delarray[num_delarray].uid = inode_uid(inode);
    [all...]
dump.c 2 * dump.c --- dump the contents of an inode out to a file
67 static void fix_perms(const char *cmd, const struct ext2_inode *inode,
74 i = fchmod(fd, mode_xlate(inode->i_mode));
76 i = chmod(name, mode_xlate(inode->i_mode));
81 i = chown(name, inode->i_uid, inode->i_gid);
84 i = fchown(fd, inode->i_uid, inode->i_gid);
86 i = chown(name, inode->i_uid, inode->i_gid)
104 struct ext2_inode inode; local
144 ext2_ino_t inode; local
299 struct ext2_inode inode; local
317 struct ext2_inode inode; local
355 ext2_ino_t inode; local
    [all...]
htree.c 32 struct ext2_inode *inode,
47 errcode = ext2fs_bmap(fs, ino, inode, buf, 0, blk, &pblk);
94 sprintf(tmp, "%u 0x%08x-%08x (%d) %s ", dirent->inode,
110 struct ext2_inode *inode,
116 struct ext2_inode *inode,
148 htree_dump_int_block(fs, ino, inode, rootnode,
151 htree_dump_leaf_node(fs, ino, inode, rootnode,
159 struct ext2_inode *inode,
173 errcode = ext2fs_bmap(fs, ino, inode, buf, 0, blk, &pblk);
187 htree_dump_int_node(fs, ino, inode, rootnode
199 struct ext2_inode inode; local
357 ext2_ino_t inode; local
    [all...]
  /external/e2fsprogs/e2fsck/
iscan.c 2 * Test to see how quickly we can scan the inode table (not doing
102 struct ext2_inode inode; local
121 com_err(program_name, retval, _("while opening inode scan"));
126 retval = ext2fs_get_next_inode(scan, &ino, &inode);
129 _("while getting next inode"));
message.c 19 * %Di <dirent>->ino inode number
24 * %d <dir> inode number
26 * %i <ino> inode number
27 * %Is <inode> -> i_size
28 * %IS <inode> -> i_extra_isize
29 * %Ib <inode> -> i_blocks
30 * %Il <inode> -> i_links_count
31 * %Im <inode> -> i_mode
32 * %IM <inode> -> i_mtime
33 * %IF <inode> -> i_fadd
264 struct ext2_inode *inode; local
    [all...]
jfs_user.h 28 struct inode { struct
pass3.c 76 pctx.errcode = ext2fs_allocate_inode_bitmap(fs, _("inode done bitmap"),
138 * This makes sure the root inode is present; if not, we ask if the
145 struct ext2_inode inode; local
153 * If the root inode is not a directory, die here. The
188 * Now let's create the actual data block for the inode
209 * Set up the inode structure
211 memset(&inode, 0, sizeof(inode));
212 inode.i_mode = 040755;
213 inode.i_size = fs->blocksize
360 struct ext2_inode inode; local
506 struct ext2_inode inode; local
555 struct ext2_inode inode; local
756 struct ext2_inode inode; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
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...]
tst_iscan.c 2 * tst_inode.c --- this function tests the inode scan function
63 * Setup the variables for doing the inode scan test.
106 retval = ext2fs_allocate_inode_bitmap(test_fs, "bad inode map",
110 "While allocating bad inode bitmap");
136 struct ext2_inode inode; local
143 com_err("iterate", retval, "While opening inode scan");
147 retval = ext2fs_get_next_inode(scan, &ino, &inode);
149 com_err("iterate", retval, "while reading first inode");
153 retval = ext2fs_get_next_inode(scan, &ino, &inode);
160 "while getting next inode");
    [all...]
block.c 2 * block.c --- iterate over all blocks in an inode
309 struct ext2_inode inode; local
316 ctx.errcode = ext2fs_read_inode(fs, ino, &inode);
324 if (!LINUX_S_ISDIR(inode.i_mode) &&
325 (inode.i_size_high != 0))
351 if (inode.osd1.hurd1.h_i_translator) {
353 &inode.osd1.hurd1.h_i_translator,
362 if (inode.i_flags & EXT4_EXTENTS_FL) {
371 ctx.errcode = ext2fs_extent_open2(fs, ino, &inode, &handle);
462 if (inode.i_block[i] || (flags & BLOCK_FLAG_APPEND))
    [all...]
ext2fsP.h 63 * Inode cache structure
76 struct ext2_inode inode; member in struct:ext2_inode_cache_ent
fileio.c 25 struct ext2_inode inode; member in struct:ext2_file
36 struct ext2_inode *inode,
60 if (inode) {
61 memcpy(&file->inode, inode, sizeof(struct ext2_inode));
63 retval = ext2fs_read_inode(fs, ino, &file->inode);
119 retval = ext2fs_bmap(fs, file->ino, &file->inode,
171 retval = ext2fs_bmap(fs, file->ino, &file->inode,
220 while ((file->pos < EXT2_I_SIZE(&file->inode)) && (wanted > 0)) {
232 left = EXT2_I_SIZE(&file->inode) - file->pos
    [all...]
inode_io.c 2 * inode_io.c --- This is allows an inode in an ext2 filesystem image
39 struct ext2_inode inode; member in struct:inode_private_data
66 "Inode I/O Manager",
83 struct ext2_inode *inode,
98 if (inode) {
99 memcpy(&data->inode, inode, sizeof(struct ext2_inode));
157 &data->inode : 0, open_flags,
mkjournal.c 280 struct ext2_inode inode; local
289 if ((retval = ext2fs_read_inode(fs, journal_ino, &inode)))
292 if (inode.i_blocks > 0)
302 inode.i_flags |= EXT4_EXTENTS_FL;
303 if ((retval = ext2fs_write_inode(fs, journal_ino, &inode)))
348 if ((retval = ext2fs_read_inode(fs, journal_ino, &inode)))
351 inode.i_size += fs->blocksize * size;
352 ext2fs_iblk_add_blocks(fs, &inode, es.newblocks);
353 inode.i_mtime = inode.i_ctime = fs->now ? fs->now : time(0)
    [all...]
inode.c 2 * inode.c --- utility routines to read and write inodes
116 * If fs->badblocks isn't set, then set it --- since the inode
266 * blocks in the inode table.
278 * If the inode table is missing, then obviously there are no
327 * read in more blocks from the current blockgroup's inode table.
354 * Do inode bad block processing, if necessary.
387 * that part of the inode table was used at one point; we want all
388 * zeros, which means that the inode table is pristine.)
405 struct ext2_inode *inode, int bufsize)
451 * Have we run out of space in the inode buffer? If so, w
791 struct ext2_inode inode; local
814 struct ext2_inode inode; local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/pat_trie_/
traits.hpp 79 typedef base_type::_Inode<synth_access_traits, metadata> inode; typedef in struct:__gnu_pbds::detail::trie_traits
81 typedef base_type::_Iter<node, leaf, head, inode, true> iterator;
82 typedef base_type::_CIter<node, leaf, head, inode, true> const_iterator;
83 typedef base_type::_Iter<node, leaf, head, inode, false> reverse_iterator;
84 typedef base_type::_CIter<node, leaf, head, inode, false> const_reverse_iterator;
88 typedef base_type::_Node_citer<node, leaf, head, inode, const_iterator, iterator, _Alloc> node_const_iterator;
90 typedef base_type::_Node_iter<node, leaf, head, inode, const_iterator, iterator, _Alloc> node_iterator;
126 typedef base_type::_Inode<synth_access_traits, metadata> inode; typedef in struct:__gnu_pbds::detail::trie_traits
128 typedef base_type::_CIter<node, leaf, head, inode, true> const_iterator;
130 typedef base_type::_CIter<node, leaf, head, inode, false> const_reverse_iterator
    [all...]
  /system/core/toolbox/
lsof.c 107 long int inode; local
116 while (fscanf(maps, "%*x-%*x %*s %zx %5s %ld %s\n", &offset, device, &inode,
119 if (inode == 0 || !strcmp(device, "00:00"))
124 "???", device, offset, inode, file);
  /external/e2fsprogs/misc/
e2initrd_helper.c 78 struct ext2_inode inode; local
90 retval = ext2fs_read_inode(fs, ino, &inode);
94 if (inode.i_size_high || (inode.i_size > 65536))
97 buf = malloc(inode.i_size + 1);
100 memset(buf, 0, inode.i_size+1);
106 retval = ext2fs_file_read(e2_file, buf, inode.i_size, &got);
  /external/grub/stage2/
fsys_jfs.c 52 #define inode ((dinode_t *)((char *)FSYS_BUF + 8192 + sizeof(dinode_t))) macro
53 #define dtroot ((dtroot_t *)(&inode->di_btroot))
164 dtr = (dtroot_t *)&inode->di_btroot;
168 de_always[0].inumber = inode->di_parent;
169 de_always[1].inumber = inode->di_number;
238 xad = first_extent (inode);
287 di_read (inum, inode);
288 di_size = inode->di_size;
289 di_mode = inode->di_mode;
297 grub_memmove (linkbuf, inode->di_fastsymlink, di_size)
    [all...]
  /external/kernel-headers/original/linux/
inotify.h 2 * Inode based directory notification for Linux
72 * struct inotify_watch - represents a watch request on a specific inode
75 * i_list, mask are protected by inode->inotify_mutex of the associated inode.
76 * ih, inode, and wd are never written to once the watch is created.
84 struct list_head i_list; /* entry in inode's list */
87 struct inode *inode; /* associated inode */ member in struct:inotify_watch
94 const char *, struct inode *);
    [all...]
  /external/libcap-ng/libcap-ng-0.7/utils/
netcap.c 163 unsigned long inode; local
191 inode = strtoul(s, NULL, 10);
198 node.inode = inode;
201 // We make one entry for each socket inode
253 unsigned long rxq, txq, time_len, retr, inode; local
275 &uid, &timeout, &inode, more);
276 if (list_find_inode(&l, inode))
287 unsigned long rxq, txq, time_len, retr, inode; local
309 &uid, &timeout, &inode, more)
321 unsigned long rxq, txq, time_len, retr, inode; local
391 unsigned long sk, inode; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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
  /prebuilts/gcc/linux-x86/host/i686-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

Completed in 1181 milliseconds

1 23 4 5 6 7 8 91011