Changeset beb9336 in mainline for uspace/lib/ext4/libext4_directory_index.h
- Timestamp:
- 2012-08-24T14:07:52Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 041ab64
- Parents:
- bd29f9c9 (diff), db81577 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_directory_index.h
rbd29f9c9 rbeb9336 29 29 /** @addtogroup libext4 30 30 * @{ 31 */ 31 */ 32 32 33 33 #ifndef LIBEXT4_LIBEXT4_DIRECTORY_INDEX_H_ … … 37 37 38 38 extern uint8_t ext4_directory_dx_root_info_get_hash_version( 39 39 ext4_directory_dx_root_info_t *); 40 40 extern void ext4_directory_dx_root_info_set_hash_version( 41 41 ext4_directory_dx_root_info_t *, uint8_t); 42 42 extern uint8_t ext4_directory_dx_root_info_get_info_length( 43 43 ext4_directory_dx_root_info_t *); 44 44 extern void ext4_directory_dx_root_info_set_info_length( 45 45 ext4_directory_dx_root_info_t *, uint8_t); 46 46 extern uint8_t ext4_directory_dx_root_info_get_indirect_levels( 47 47 ext4_directory_dx_root_info_t *); 48 48 extern void ext4_directory_dx_root_info_set_indirect_levels( 49 49 ext4_directory_dx_root_info_t *, uint8_t); 50 50 51 51 extern uint16_t ext4_directory_dx_countlimit_get_limit( 52 52 ext4_directory_dx_countlimit_t *); 53 53 extern void ext4_directory_dx_countlimit_set_limit( 54 54 ext4_directory_dx_countlimit_t *, uint16_t); 55 55 extern uint16_t ext4_directory_dx_countlimit_get_count( 56 56 ext4_directory_dx_countlimit_t *); 57 57 extern void ext4_directory_dx_countlimit_set_count( 58 58 ext4_directory_dx_countlimit_t *, uint16_t); 59 59 60 60 extern uint32_t ext4_directory_dx_entry_get_hash(ext4_directory_dx_entry_t *); 61 61 extern void ext4_directory_dx_entry_set_hash(ext4_directory_dx_entry_t *, 62 62 uint32_t); 63 63 extern uint32_t ext4_directory_dx_entry_get_block(ext4_directory_dx_entry_t *); 64 void ext4_directory_dx_entry_set_block(ext4_directory_dx_entry_t *, uint32_t); 65 66 /*********************************************************************************/ 64 extern void ext4_directory_dx_entry_set_block(ext4_directory_dx_entry_t *, 65 uint32_t); 67 66 68 67 extern int ext4_directory_dx_init(ext4_inode_ref_t *); 69 68 extern int ext4_directory_dx_find_entry(ext4_directory_search_result_t *, 70 71 extern int ext4_directory_dx_add_entry( 72 ext4_inode_ref_t *, ext4_inode_ref_t *,const char *);69 ext4_inode_ref_t *, size_t, const char *); 70 extern int ext4_directory_dx_add_entry(ext4_inode_ref_t *, ext4_inode_ref_t *, 71 const char *); 73 72 74 73 #endif
Note:
See TracChangeset
for help on using the changeset viewer.