Home
last modified time | relevance | path

Searched refs:section_param (Results 1 – 2 of 2) sorted by relevance

/aosp12/system/bt/gd/storage/
H A Dmutation_entry.h36 …PropertyType property_type, std::string section_param, std::string property_param, T value_param) { in Set() argument
38 … property_type, std::move(section_param), std::move(property_param), std::to_string(value_param)); in Set()
43 …PropertyType property_type, std::string section_param, std::string property_param, T value_param) { in Set() argument
47 std::move(section_param), in Set()
54 …PropertyType property_type, std::string section_param, std::string property_param, T value_param) { in Set() argument
61 …PropertyType property_type, std::string section_param, std::string property_param, T value_param) { in Set() argument
63 property_type, std::move(section_param), std::move(property_param), std::move(value_param)); in Set()
96 static MutationEntry Remove(PropertyType property_type, std::string section_param) { in Remove() argument
97 return MutationEntry(EntryType::REMOVE_SECTION, property_type, std::move(section_param)); in Remove()
102 … EntryType::REMOVE_PROPERTY, property_type, std::move(section_param), std::move(property_param)); in Remove()
[all …]
H A Dmutation_entry.cc27 std::string section_param, in MutationEntry() argument
32 section(std::move(section_param)), in MutationEntry()