Home
last modified time | relevance | path

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

/third_party/eudev/src/udev/
Dudevadm-hwdb.c355 struct trie_header_f h = { in trie_store()
358 .header_size = htole64(sizeof(struct trie_header_f)), in trie_store()
366 t.strings_off = sizeof(struct trie_header_f); in trie_store()
375 err = fseeko(t.f, sizeof(struct trie_header_f), SEEK_SET); in trie_store()
384 h.nodes_len = htole64(pos - sizeof(struct trie_header_f)); in trie_store()
399 fwrite(&h, sizeof(struct trie_header_f), 1, t.f); in trie_store()
411 log_debug("header: %8zu bytes", sizeof(struct trie_header_f)); in trie_store()
/third_party/eudev/src/libudev/
Dlibudev-hwdb-def.h27 struct trie_header_f { struct
Dlibudev-hwdb.c53 struct trie_header_f *head;
286 (size_t)hwdb->st.st_size < offsetof(struct trie_header_f, strings_len) + 8) { in udev_hwdb_new()