Home
last modified time | relevance | path

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

/aosp_15_r20/system/extras/simpleperf/
H A Dcommand.h74 struct OptionValueMap { struct
75 std::multimap<OptionName, OptionValue> values;
77 bool PullBoolValue(const OptionName& name) { return PullValue(name).has_value(); } in PullBoolValue()
82 if (auto option_value = PullValue(name); option_value) {
95 if (auto option_value = PullValue(name); option_value) {
105 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
H A Dcommand_test.cpp193 TEST(command, OptionValueMap) { in TEST() argument