Home
last modified time | relevance | path

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

/system/core/fastboot/
Dfastboot.cpp868 std::smatch match_results; in ParseRequirementLine() local
870 if (std::regex_match(line, match_results, require_reject_regex)) { in ParseRequirementLine()
871 *invert = Trim(match_results[1]) == "reject"; in ParseRequirementLine()
872 } else if (std::regex_match(line, match_results, require_product_regex)) { in ParseRequirementLine()
873 *product = match_results[1]; in ParseRequirementLine()
878 *name = match_results[2]; in ParseRequirementLine()
884 auto raw_options = Split(match_results[3], "|"); in ParseRequirementLine()
/system/logging/logcat/tests/
Dlogcat_test.cpp1698 std::smatch match_results; in SniffUid() local
1699 ASSERT_TRUE(std::regex_match(trimmed_line, match_results, uid_regex)) in SniffUid()
1701 auto uid_string = match_results[1]; in SniffUid()