Home
last modified time | relevance | path

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

/system/core/fastboot/
Dfastboot.cpp873 std::smatch match_results; in ParseRequirementLine() local
875 if (std::regex_match(line, match_results, require_reject_regex)) { in ParseRequirementLine()
876 *invert = Trim(match_results[1]) == "reject"; in ParseRequirementLine()
877 } else if (std::regex_match(line, match_results, require_product_regex)) { in ParseRequirementLine()
878 *product = match_results[1]; in ParseRequirementLine()
883 *name = match_results[2]; in ParseRequirementLine()
889 auto raw_options = Split(match_results[3], "|"); in ParseRequirementLine()
/system/logging/logcat/tests/
Dlogcat_test.cpp1695 std::smatch match_results; in SniffUid() local
1696 ASSERT_TRUE(std::regex_match(trimmed_line, match_results, uid_regex)) in SniffUid()
1698 auto uid_string = match_results[1]; in SniffUid()