Home
last modified time | relevance | path

Searched refs:trie (Results 1 – 2 of 2) sorted by relevance

/aosp14/system/core/property_service/libpropertyinfoserializer/
H A Dtrie_serializer.cpp60 auto trie = arena_->AllocateObject<TrieNodeInternal>(&trie_offset); in WriteTrieNode() local
62 trie->property_entry = WritePropertyEntry(builder_node.property_entry()); in WriteTrieNode()
70 trie->num_prefixes = sorted_prefix_matches.size(); in WriteTrieNode()
73 trie->prefix_entries = prefix_entries_array_offset; in WriteTrieNode()
86 trie->num_exact_matches = sorted_exact_matches.size(); in WriteTrieNode()
90 trie->exact_match_entries = exact_match_entries_array_offset; in WriteTrieNode()
102 trie->num_child_nodes = sorted_children.size(); in WriteTrieNode()
104 trie->child_nodes = children_offset_array_offset; in WriteTrieNode()
/aosp14/system/core/property_service/libpropertyinfoparser/include/property_info_parser/
H A Dproperty_info_parser.h172 TrieNode root_node() const { return trie(header()->root_offset); } in root_node()
186 TrieNode trie(uint32_t offset) const { in trie() function