Home
last modified time | relevance | path

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

/system/core/fastboot/
Dfastboot.cpp730 std::smatch match_results; in ParseRequirementLine() local
732 if (std::regex_match(line, match_results, require_reject_regex)) { in ParseRequirementLine()
733 *invert = Trim(match_results[1]) == "reject"; in ParseRequirementLine()
734 } else if (std::regex_match(line, match_results, require_product_regex)) { in ParseRequirementLine()
735 *product = match_results[1]; in ParseRequirementLine()
740 *name = match_results[2]; in ParseRequirementLine()
746 auto raw_options = Split(match_results[3], "|"); in ParseRequirementLine()
/system/core/logcat/tests/
Dlogcat_test.cpp1760 std::smatch match_results; in SniffUid() local
1761 ASSERT_TRUE(std::regex_match(trimmed_line, match_results, uid_regex)) in SniffUid()
1763 auto uid_string = match_results[1]; in SniffUid()