Lines Matching refs:ext_entry
90 hfsplus_extent_rec ext_entry; in hfsplus_get_block() local
120 err = hfsplus_find_extentry(&fd, ext_entry); in hfsplus_get_block()
122 dblock = hfsplus_find_extent(ext_entry, ablock - in hfsplus_get_block()
267 hfsplus_extent_rec ext_entry; in hfsplus_free_fork() local
289 res = hfsplus_find_extentry(&fd, ext_entry); in hfsplus_free_fork()
293 hfsplus_free_extents(sb, ext_entry, in hfsplus_free_fork()
309 hfsplus_extent_rec ext_entry; in hfsplus_extend_file() local
388 res = hfsplus_find_extentry(&fd, ext_entry); in hfsplus_extend_file()
401 res = hfsplus_find_extentry(&fd, ext_entry); in hfsplus_extend_file()
407 res = hfsplus_add_extent(ext_entry, HFSPLUS_I(inode).alloc_blocks - in hfsplus_extend_file()
411 hfsplus_dump_extent(ext_entry); in hfsplus_extend_file()
412 hfsplus_bnode_writebytes(fd.bnode, &ext_entry, in hfsplus_extend_file()
414 sizeof(ext_entry)); in hfsplus_extend_file()
430 memset(ext_entry, 0, sizeof(ext_entry)); in hfsplus_extend_file()
431 ext_entry[0].start_block = cpu_to_be32(ablock); in hfsplus_extend_file()
432 ext_entry[0].block_count = cpu_to_be32(block_count); in hfsplus_extend_file()
434 hfsplus_bnode_insert_rec(&fd, ext_entry, sizeof(ext_entry)); in hfsplus_extend_file()
444 hfsplus_extent_rec ext_entry; in hfsplus_truncate() local
489 res = hfsplus_find_extentry(&fd, ext_entry); in hfsplus_truncate()
495 hfsplus_free_extents(sb, ext_entry, in hfsplus_truncate()
498 hfsplus_dump_extent(ext_entry); in hfsplus_truncate()
500 hfsplus_bnode_writebytes(fd.bnode, &ext_entry, in hfsplus_truncate()
502 sizeof(ext_entry)); in hfsplus_truncate()