Home
last modified time | relevance | path

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

/system/core/property_service/libpropertyinfoparser/include/property_info_parser/
Dproperty_info_parser.h97 TrieNode() : serialized_data_(nullptr), trie_node_base_(nullptr) {} in TrieNode()
99 : serialized_data_(data_base), trie_node_base_(trie_node_base) {} in TrieNode()
108 uint32_t num_child_nodes() const { return trie_node_base_->num_child_nodes; } in num_child_nodes()
110 uint32_t child_node_offset = serialized_data_->uint32_array(trie_node_base_->child_nodes)[n]; in child_node()
118 uint32_t num_prefixes() const { return trie_node_base_->num_prefixes; } in num_prefixes()
121 serialized_data_->uint32_array(trie_node_base_->prefix_entries)[n]; in prefix()
126 uint32_t num_exact_matches() const { return trie_node_base_->num_exact_matches; } in num_exact_matches()
129 serialized_data_->uint32_array(trie_node_base_->exact_match_entries)[n]; in exact_match()
137 trie_node_base_->property_entry); in node_property_entry()
141 const TrieNodeInternal* trie_node_base_; variable
/system/core/property_service/libpropertyinfoparser/
Dproperty_info_parser.cpp71 …auto node_index = Find(trie_node_base_->num_child_nodes, [this, name, namelen](auto array_offset) { in FindChildForString()