Home | History | Annotate | Download | only in Tools

Lines Matching refs:mapFile

208             mapFile = fvFile + ".map"

209 if not os.path.exists(mapFile):
210 raise Exception("Cannot open MAP file '%s'!" % mapFile)
212 self.parseFvMapFile(mapFile)
232 mapFile =os.path.join(ffsDir, item, "%s.map" % item[0:0x24])
233 if not os.path.exists(mapFile):
235 self.parseModMapFile(item[0x24:], mapFile)
313 # param [in] mapFile .Fv.map file
317 def parseFvMapFile(self, mapFile):
327 fdIn = open(mapFile, "r")
361 # param [in] mapFile .Fv.map file
366 def parseModMapFile(self, moduleName, mapFile):
368 # Get information from mapFile by moduleName in order to create a dictionary
373 fdIn = open(mapFile, "r")