Home
last modified time | relevance | path

Searched defs:OptionValueMap (Results 1 – 2 of 2) sorted by relevance

/system/extras/simpleperf/
Dcommand.h73 struct OptionValueMap { struct
74 std::multimap<OptionName, OptionValue> values;
76 bool PullBoolValue(const OptionName& name) { return PullValue(name).has_value(); } in PullBoolValue()
81 if (auto option_value = PullValue(name); option_value) {
94 if (auto option_value = PullValue(name); option_value) {
104 void PullStringValue(const OptionName& name, std::string* value) { in PullStringValue()
111 std::optional<OptionValue> PullValue(const OptionName& name) { in PullValue()
120 std::vector<std::string> PullStringValues(const OptionName& name) { in PullStringValues()
144 OptionValueMap* options, argument
Dcommand_test.cpp164 TEST(command, OptionValueMap) { in TEST() argument