Lines Matching refs:match
173 match = re.compile(RE_LS_BLOCK_DEVICE).match(result)
174 if not match:
178 return match.group(1)
346 match = matcher.match(line)
348 if not match:
351 readIos = int(match.group(4))
352 readSectors = int(match.group(6))
353 writeIos = int(match.group(8))
354 writeSectors = int(match.group(10))
382 match = self.uidIoStatsReMatcher.match(line)
383 if not match:
385 return (int(match.group(1)),
387 rdBytes=(int(match.group(4)) + int(match.group(8))),
388 wrBytes=(int(match.group(5)) + int(match.group(9)))))