Home
last modified time | relevance | path

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

/system/core/property_service/libpropertyinfoserializer/
Dtrie_builder.h28 struct PropertyEntryBuilder { struct
29 PropertyEntryBuilder() : context(nullptr), type(nullptr) {} in PropertyEntryBuilder() function
30 PropertyEntryBuilder(const std::string& name, const std::string* context, const std::string* type) in PropertyEntryBuilder() function
86 const PropertyEntryBuilder property_entry() const { return property_entry_; } in property_entry()
89 const std::vector<PropertyEntryBuilder>& prefixes() const { return prefixes_; } in prefixes()
90 const std::vector<PropertyEntryBuilder>& exact_matches() const { return exact_matches_; } in exact_matches()
93 PropertyEntryBuilder property_entry_;
95 std::vector<PropertyEntryBuilder> prefixes_;
96 std::vector<PropertyEntryBuilder> exact_matches_;
Dtrie_serializer.h39 uint32_t WritePropertyEntry(const PropertyEntryBuilder& property_entry);
Dtrie_serializer.cpp42 uint32_t TrieSerializer::WritePropertyEntry(const PropertyEntryBuilder& property_entry) { in WritePropertyEntry()