OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:INODE
(Results
1 - 4
of
4
) sorted by null
/external/grub/stage2/
fsys_ffs.c
75
#define
INODE
((struct icommon *) ( FSYS_BUF + 16384 ))
104
return (
INODE
->i_db[file_block]);
108
if ((bnum = fsbtodb (SUPERBLOCK,
INODE
->i_ib[0])) != mapblock
153
size = blksize (SUPERBLOCK,
INODE
, logno);
189
/* main loop to find destination
inode
*/
192
/* load current
inode
(defaults to the root
inode
) */
196
sizeof (struct dinode), (char *)
INODE
))
204
if ((
INODE
->i_mode & IFMT) != IFREG)
210
filemax =
INODE
->i_size
[
all
...]
fsys_iso9660.c
44
/* iso fs
inode
data in memory */
51
#define
INODE
\
126
INODE
->file_start = 0;
149
INODE
->file_start = 0;
371
INODE
->file_start = idr->extent.l;
412
if (
INODE
->file_start == 0)
426
if (!iso9660_devread(
INODE
->file_start + sector, blkoffset, size, buf))
fsys_minix.c
79
#define INODE_VERSION(
inode
)
inode
->i_sb->u.minix_sb.s_version
81
#define INODE_VERSION(
inode
) (SUPERBLOCK->s_version)
84
* This is the original minix
inode
layout on disk.
98
* The new minix
inode
has all the time entries, as well as
101
* now 16-bit. The
inode
is now 64 bytes instead of 32.
132
__u16
inode
;
member in struct:minix_dir_entry
140
#define
INODE
\
143
((int)((int)
INODE
+ sizeof(struct minix_inode)))
200
a physical block (the location in the file system) via an
inode
. *
[
all
...]
fsys_ext2fs.c
176
__u32
inode
; /*
Inode
number */
member in struct:ext2_dir_entry
210
#define
INODE
\
213
((int)((int)
INODE
+ sizeof(struct ext2_inode)))
283
ext2/
inode
.c:ext2_bmap()
286
a physical block (the location in the file system) via an
inode
. */
293
for (i = (unsigned char *)
INODE
;
294
i < ((unsigned char *)
INODE
+ sizeof (struct ext2_inode));
299
if (!((i + 1 - (unsigned char *)
INODE
) % 16))
311
/* if it is directly pointed to by the
inode
, return that physical addr *
[
all
...]
Completed in 181 milliseconds