Changeset 343ccfd in mainline for uspace/lib/ext4/libext4_directory_index.h
- Timestamp:
- 2011-11-20T12:56:00Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ebeaaa06
- Parents:
- fe27eb4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_directory_index.h
rfe27eb4 r343ccfd 91 91 92 92 93 extern uint8_t ext4_directory_dx_root_info_get_hash_version(ext4_directory_dx_root_info_t *); 94 extern uint8_t ext4_directory_dx_root_info_get_info_length(ext4_directory_dx_root_info_t *); 95 extern uint8_t ext4_directory_dx_root_info_get_indirect_levels(ext4_directory_dx_root_info_t *); 93 extern uint8_t ext4_directory_dx_root_info_get_hash_version( 94 ext4_directory_dx_root_info_t *); 95 extern void ext4_directory_dx_root_info_set_hash_version( 96 ext4_directory_dx_root_info_t *, uint8_t); 97 extern uint8_t ext4_directory_dx_root_info_get_info_length( 98 ext4_directory_dx_root_info_t *); 99 extern void ext4_directory_dx_root_info_set_info_length( 100 ext4_directory_dx_root_info_t *, uint8_t); 101 extern uint8_t ext4_directory_dx_root_info_get_indirect_levels( 102 ext4_directory_dx_root_info_t *); 103 extern void ext4_directory_dx_root_info_set_indirect_levels( 104 ext4_directory_dx_root_info_t *, uint8_t); 96 105 97 extern uint16_t ext4_directory_dx_countlimit_get_limit(ext4_directory_dx_countlimit_t *); 98 extern uint16_t ext4_directory_dx_countlimit_get_count(ext4_directory_dx_countlimit_t *); 106 extern uint16_t ext4_directory_dx_countlimit_get_limit( 107 ext4_directory_dx_countlimit_t *); 108 extern void ext4_directory_dx_countlimit_set_limit( 109 ext4_directory_dx_countlimit_t *, uint16_t); 110 extern uint16_t ext4_directory_dx_countlimit_get_count( 111 ext4_directory_dx_countlimit_t *); 112 extern void ext4_directory_dx_countlimit_set_count( 113 ext4_directory_dx_countlimit_t *, uint16_t); 99 114 100 115 extern uint32_t ext4_directory_dx_entry_get_hash(ext4_directory_dx_entry_t *); 116 extern void ext4_directory_dx_entry_set_hash(ext4_directory_dx_entry_t *, 117 uint32_t); 101 118 extern uint32_t ext4_directory_dx_entry_get_block(ext4_directory_dx_entry_t *); 119 void ext4_directory_dx_entry_set_block(ext4_directory_dx_entry_t *, uint32_t); 120 121 /*********************************************************************************/ 102 122 103 123 extern int ext4_directory_dx_find_entry(ext4_directory_iterator_t *,
Note:
See TracChangeset
for help on using the changeset viewer.