Lines Matching refs:match
277 match = re.match("^EFI_BASE_ADDRESS\s*=\s*(0x[a-fA-F0-9]+)", rptLine)
278 if match is not None:
279 self.fdBase = int(match.group(1), 16) - fvOffset
303 match = re.match("(0x[a-fA-F0-9]+)\s([0-9a-fA-F\-]+)", rptLine)
304 if match is not None:
305 self.dictFfsOffset[match.group(2)] = "0x%08X" % (int(match.group(1), 16) + fvOffset)
334 …match = re.match("([_a-zA-Z0-9\-]+)\s\(.+BaseAddress=(0x[0-9a-fA-F]+),\s+EntryPoint=(0x[0-9a-fA-F]…
335 if match is not None:
336 modName = match.group(1)
339 self.dictModBase['%s:BASE' % modName] = int (match.group(2), 16)
340 self.dictModBase['%s:ENTRY' % modName] = int (match.group(3), 16)
341 …match = re.match("\(GUID=([A-Z0-9\-]+)\s+\.textbaseaddress=(0x[0-9a-fA-F]+)\s+\.databaseaddress=(0…
342 if match is not None:
343 modName = match.group(1)
346 self.dictModBase['%s:TEXT' % modName] = int (match.group(2), 16)
347 self.dictModBase['%s:DATA' % modName] = int (match.group(3), 16)
350 match = re.match("^\s+(0x[a-z0-9]+)\s+([_a-zA-Z0-9]+)", rptLine)
351 if match is not None:
352 self.dictSymbolAddress["%s:%s"%(modName, match.group(2))] = match.group(1)
395 match = re.match(patchMapFileMatchString, reportLine)
396 if match is not None:
397 … modSymbols[prefix + match.group(matchKeyGroupIndex)] = match.group(matchSymbolGroupIndex)
407 pcdName = match.group(1)
408 match = re.match("\s+(0x[0-9a-fA-F]{16})\s+", reportLine)
409 if match is not None:
410 modSymbols[prefix + pcdName] = match.group(1)
412 match = re.match("^\s\.data\.(_gPcd_BinaryPatch[_a-zA-Z0-9\-]+)", reportLine)
413 if match is not None:
451 match = re.match("([0-9a-fA-F\-]+)\s([_a-zA-Z0-9]+)", rptLine)
452 if match is not None:
453 self.dictGuidNameXref[match.group(1).upper()] = match.group(2)