Searched refs:PropertyType (Results 1 – 7 of 7) sorted by relevance
/packages/modules/Bluetooth/system/gd/storage/ |
D | mutation_entry.h | 32 enum PropertyType { NORMAL, MEMORY_ONLY }; enum 35 static MutationEntry Set(PropertyType property_type, std::string section_param, in Set() 42 static MutationEntry Set(PropertyType property_type, std::string section_param, in Set() 51 static MutationEntry Set(PropertyType property_type, std::string section_param, in Set() 58 static MutationEntry Set(PropertyType property_type, std::string section_param, in Set() 66 static MutationEntry Set(PropertyType property_type, std::string section_param, in Set() 77 static MutationEntry Set(PropertyType property_type, std::string section_param, in Set() 88 static MutationEntry Set(PropertyType property_type, std::string section_param, in Set() 94 static MutationEntry Remove(PropertyType property_type, std::string section_param) { in Remove() 98 static MutationEntry Remove(PropertyType property_type, std::string section_param, in Remove() [all …]
|
D | mutation_test.cc | 40 mutation.Add(MutationEntry::Set(MutationEntry::PropertyType::NORMAL, "AA:BB:CC:DD:EE:FF", in TEST() 42 mutation.Add(MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, "AA:BB:CC:DD:EE:FF", in TEST() 47 mutation2.Add(MutationEntry::Set(MutationEntry::PropertyType::NORMAL, "AA:BB:CC:DD:EE:FF", in TEST() 69 mutation.Add(MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, "A", "B")); in TEST() 80 mutation.Add(MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, "B")); in TEST() 91 mutation.Add(MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, "A", "C")); in TEST() 107 mutation.Add(MutationEntry::Set(MutationEntry::PropertyType::NORMAL, "A", "B", "C")); in TEST() 108 mutation.Add(MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, "A", "B")); in TEST() 118 mutation.Add(MutationEntry::Set(MutationEntry::PropertyType::NORMAL, "A", "B", "C")); in TEST() 119 mutation.Add(MutationEntry::Set(MutationEntry::PropertyType::MEMORY_ONLY, "A", "D", "Hello")); in TEST()
|
D | device.h | 56 return MutationEntry::Set<RETURN_TYPE>(MutationEntry::PropertyType::NORMAL, section_, \ 60 return MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, section_, PROPERTY_KEY); \ 80 return MutationEntry::Set<RETURN_TYPE>(MutationEntry::PropertyType::NORMAL, section_, \ 84 return MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, section_, PROPERTY_KEY); \ 103 return MutationEntry::Set<RETURN_TYPE>(MutationEntry::PropertyType::MEMORY_ONLY, section_, \ 107 return MutationEntry::Remove(MutationEntry::PropertyType::MEMORY_ONLY, section_, \
|
D | mutation.cc | 30 case MutationEntry::PropertyType::NORMAL: in Add() 37 case MutationEntry::PropertyType::MEMORY_ONLY: in Add()
|
D | device.cc | 86 return MutationEntry::Remove(MutationEntry::PropertyType::NORMAL, section_); in RemoveFromConfig() 90 return MutationEntry::Remove(MutationEntry::PropertyType::MEMORY_ONLY, section_); in RemoveFromTempConfig()
|
D | mutation_entry.cc | 22 MutationEntry::MutationEntry(EntryType entry_type_param, PropertyType property_type_param, in MutationEntry()
|
/packages/apps/Car/SystemUI/src/com/android/systemui/car/hvac/toggle/ |
D | HvacToggleButton.java | 45 public abstract class HvacToggleButton<PropertyType> extends ImageButton implements HvacView { 125 protected abstract boolean updateToggleState(PropertyType propertyValue); in updateToggleState() 173 mIsOn = updateToggleState((PropertyType) value.getValue()); in onPropertyChanged()
|