Lines Matching refs:matched
52 matched = re.match(pattern, line.strip())
53 if not matched:
56 (name, value) = (matched.group(1), matched.group(2))
63 """Check the crossystem values matched.
66 this function check the current crossystem values are matched or not.
70 @return: True if the crossystem value matched; otherwise, False.
163 @return: True if the correct boot firmware fields matched. Otherwise,
183 """Check the flags from VbSharedData matched.
186 are matched the given value.
188 @param mask: A bitmask of flags to be matched.
190 @return: True if the flags matched; otherwise, False.
208 @return: True if the currect boot firmware matched and used RO boot;
231 @return: True if the currect boot device matched; otherwise, False.
237 """Check the partition number of the root device matched.
241 @return: True if the currect root partition number matched;
265 matched = pattern.match(line)
266 if matched:
267 if matched.group(1) == expected_copy:
271 expected_copy, matched.group(1))