Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dsystem_properties.cpp169 const prop_info* find_property(prop_bt* const trie, const char* name, uint32_t namelen,
172 bool foreach_property(prop_bt* const trie, void (*propfn)(const prop_info* pi, void* cookie),
421 const prop_info* prop_area::find_property(prop_bt* const trie, const char* name, uint32_t namelen, in find_property() argument
424 if (!trie) return nullptr; in find_property()
427 prop_bt* current = trie; in find_property()
654 bool prop_area::foreach_property(prop_bt* const trie, in foreach_property() argument
656 if (!trie) return false; in foreach_property()
658 uint_least32_t left_offset = atomic_load_explicit(&trie->left, memory_order_relaxed); in foreach_property()
660 const int err = foreach_property(to_prop_bt(&trie->left), propfn, cookie); in foreach_property()
663 uint_least32_t prop_offset = atomic_load_explicit(&trie->prop, memory_order_relaxed); in foreach_property()
[all …]