/src/sys/lib/libsa/ |
ext2fs.c | 151 static int block_map(struct open_file *, indp_t, indp_t *); 205 block_map(struct open_file *f, indp_t file_block, indp_t *disk_block_p) function in typeref:typename:int 329 rc = block_map(f, file_block, &disk_block); 642 rc = block_map(f, (indp_t)0, &disk_block);
|
minixfs3.c | 174 static int block_map(struct open_file *, block_t, block_t *); 224 block_map(struct open_file *f, block_t file_block, block_t *disk_block_p) function in typeref:typename:int 353 rc = block_map(f, file_block, &disk_block); 665 rc = block_map(f, (block_t)0, &disk_block); 913 * anyway, hence everything is done by block_map().
|
ufs.c | 207 static int block_map(struct open_file *, indp_t, indp_t *); 414 block_map(struct open_file *f, indp_t file_block, indp_t *disk_block_p) function in typeref:typename:int 550 rc = block_map(f, file_block, &disk_block); 845 rc = block_map(f, (indp_t)0, &disk_block);
|