Home | History | Annotate | Download | only in Scripts

Lines Matching refs:opts

64 def dumpmacho(path, opts):
99 dumpLoadCommand(f, i, opts)
106 def dumpLoadCommand(f, i, opts):
116 dumpSegmentLoadCommand(f, opts, False)
118 dumpSymtabCommand(f, opts)
120 dumpDysymtabCommand(f, opts)
122 dumpSegmentLoadCommand(f, opts, True)
136 def dumpSegmentLoadCommand(f, opts, is64Bit):
156 dumpSection(f, i, opts, is64Bit)
159 def dumpSymtabCommand(f, opts):
180 dumpNlist32(f, i, opts)
185 def dumpNlist32(f, i, opts):
204 def dumpDysymtabCommand(f, opts):
237 def dumpSection(f, i, opts, is64Bit):
273 if opts.dumpSectionData:
285 (opts, args) = parser.parse_args()
291 dumpmacho(arg, opts)