Home
last modified time | relevance | path

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

/system/bt/gd/storage/
Dmutation_entry.h32 enum PropertyType { NORMAL, MEMORY_ONLY }; enum
36PropertyType property_type, std::string section_param, std::string property_param, T value_param) { in Set()
43PropertyType property_type, std::string section_param, std::string property_param, T value_param) { in Set()
54PropertyType property_type, std::string section_param, std::string property_param, T value_param) { in Set()
61PropertyType property_type, std::string section_param, std::string property_param, T value_param) { in Set()
68PropertyType property_type, std::string section_param, std::string property_param, const T& value_… in Set()
80PropertyType property_type, std::string section_param, std::string property_param, const T& value_… in Set()
91PropertyType property_type, std::string section_param, std::string property_param, std::string val… in Set()
96 static MutationEntry Remove(PropertyType property_type, std::string section_param) { in Remove()
100 …static MutationEntry Remove(PropertyType property_type, std::string section_param, std::string pro… in Remove()
[all …]
Dmutation_test.cc40 …mutation.Add(MutationEntry::Set(MutationEntry::PropertyType::NORMAL, "AA:BB:CC:DD:EE:FF", "LinkKey… in TEST()
41 …mutation.Add(MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, "AA:BB:CC:DD:EE:FF", "Link… in TEST()
45 …mutation2.Add(MutationEntry::Set(MutationEntry::PropertyType::NORMAL, "AA:BB:CC:DD:EE:FF", "LinkKe… in TEST()
65 mutation.Add(MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, "A", "B")); in TEST()
76 mutation.Add(MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, "B")); in TEST()
87 mutation.Add(MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, "A", "C")); in TEST()
103 mutation.Add(MutationEntry::Set(MutationEntry::PropertyType::NORMAL, "A", "B", "C")); in TEST()
104 mutation.Add(MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, "A", "B")); in TEST()
114 mutation.Add(MutationEntry::Set(MutationEntry::PropertyType::NORMAL, "A", "B", "C")); in TEST()
115 mutation.Add(MutationEntry::Set(MutationEntry::PropertyType::MEMORY_ONLY, "A", "D", "Hello")); in TEST()
Ddevice.h52 …return MutationEntry::Set<RETURN_TYPE>(MutationEntry::PropertyType::NORMAL, section_, PROPERTY_KEY…
55 …return MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, section_, PROPERTY_KEY); …
73 …return MutationEntry::Set<RETURN_TYPE>(MutationEntry::PropertyType::NORMAL, section_, PROPERTY_KEY…
76 …return MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, section_, PROPERTY_KEY); …
93 …return MutationEntry::Set<RETURN_TYPE>(MutationEntry::PropertyType::MEMORY_ONLY, section_, PROPERT…
96 …return MutationEntry::Remove(MutationEntry::PropertyType::MEMORY_ONLY, section_, PROPERTY_KEY); …
Dmutation.cc32 case MutationEntry::PropertyType::NORMAL: in Add()
39 case MutationEntry::PropertyType::MEMORY_ONLY: in Add()
Ddevice.cc88 return MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, section_); in RemoveFromConfig()
92 return MutationEntry::Remove(MutationEntry::PropertyType::MEMORY_ONLY, section_); in RemoveFromTempConfig()
Dmutation_entry.cc26 PropertyType property_type_param, in MutationEntry()