Lines Matching refs:inode

48 dump_inode(Inode &inode)
50 Print("Inode (%p) {\n", &inode);
51 Print("\tfVolume = %p\n", inode.fVolume);
52 Print("\tfBlockNumber = 0x%16Lx\n", inode.fBlockNumber);
53 Print("\tfNode = %p\n", inode.Node());
54 Print("\tfTree = %p\n", inode.fTree);
55 Print("\tfAttributes = %p\n", inode.fAttributes);
56 Print("\tfOldSize = 0x%16Lx\n", inode.fOldSize);
57 Print("\tfOldLastModified = 0x%16Lx\n", inode.fOldLastModified);
114 dump_inode(bfs_inode *inode)
116 Print("inode:\n");
117 Print(" magic1 = %08lx (%s) %s\n", inode->magic1,
118 get_tupel(inode->magic1), (inode->magic1 == INODE_MAGIC1 ? "valid" : "INVALID"));
119 dump_block_run( " inode_num = ", inode->inode_num);
120 Print(" uid = %lu\n", inode->uid);
121 Print(" gid = %lu\n", inode->gid);
122 Print(" mode = %08lx\n", inode->mode);
123 Print(" flags = %08lx\n", inode->flags);
124 Print(" create_time = %Ld (%Ld)\n", inode->create_time,
125 inode->create_time >> INODE_TIME_SHIFT);
126 Print(" last_modified_time = %Ld (%Ld)\n", inode->last_modified_time,
127 inode->last_modified_time >> INODE_TIME_SHIFT);
128 dump_block_run( " parent = ", inode->parent);
129 dump_block_run( " attributes = ", inode->attributes);
130 Print(" type = %lu\n", inode->type);
131 Print(" inode_size = %lu\n", inode->inode_size);
132 Print(" etc = %#08lx\n", inode->etc);
134 S_ISLNK(inode->mode) && (inode->flags & INODE_LONG_SYMLINK) == 0 ?
135 inode->short_symlink : "-");
136 dump_data_stream(&(inode->data));
137 Print(" --\n pad[0] = %08lx\n", inode->pad[0]);
138 Print(" pad[1] = %08lx\n", inode->pad[1]);
139 Print(" pad[2] = %08lx\n", inode->pad[2]);
140 Print(" pad[3] = %08lx\n", inode->pad[3]);
270 kprintf("usage: obfsinode ptr-to-inode\n");
274 Inode *inode = (Inode *)parse_expression(argv[1]);
275 dump_inode(*inode);