D | hwdb-util.c | 137 … const char *filename, uint16_t file_priority, uint32_t line_number, bool compat) { in trie_node_add_value() argument 148 if (!compat) { in trie_node_add_value() 192 … const char *filename, uint16_t file_priority, uint32_t line_number, bool compat) { in trie_insert() argument 245 … return trie_node_add_value(trie, node, key, value, filename, file_priority, line_number, compat); in trie_insert() 270 … return trie_node_add_value(trie, child, key, value, filename, file_priority, line_number, compat); in trie_insert() 288 static void trie_store_nodes_size(struct trie_f *trie, struct trie_node *node, bool compat) { in trie_store_nodes_size() argument 290 trie_store_nodes_size(trie, node->children[i].child, compat); in trie_store_nodes_size() 296 …trie->strings_off += compat ? sizeof(struct trie_value_entry_f) : sizeof(struct trie_value_entry2_… in trie_store_nodes_size() 299 static int64_t trie_store_nodes(struct trie_f *trie, struct trie_node *node, bool compat) { in trie_store_nodes() argument 318 child_off = trie_store_nodes(trie, node->children[i].child, compat); in trie_store_nodes() [all …]
|