Lines Matching refs:m
463 m = re.match(r"^(.*[.]zip)\+(.*[.]zip)$", filename, re.IGNORECASE)
464 if m:
465 unzip_to_dir(m.group(1), tmp)
466 unzip_to_dir(m.group(2), os.path.join(tmp, "BOOTABLE_IMAGES"))
467 filename = m.group(1)
618 m = re.match(r'^name="(.*)"\s+certificate="(.*)"\s+'
620 if m:
621 name, cert, privkey = m.groups()
835 m = re.match(r"^\[\[\[\s*(.*?)\s*\]\]\]\s*(\S+)$", line)
836 if not m:
839 result[m.group(2)] = m.group(1)
1422 m = re.match(r"^service flash_recovery /system/(\S+)\s*$", line)
1423 if m:
1424 sh_location = m.group(1)