Lines Matching refs:symbol
952 """Holds imported symbol's information.
954 ordinal: Ordinal of the symbol
955 name: Name of the symbol
956 bound: If the symbol is bound, this contains
970 ordinal: ordinal of the symbol
971 address: address of the symbol
972 name: name of the symbol (None if the symbol is
974 symbol is forwarded it will
975 contain the name of the target symbol,
2592 The symbol addresses are relative, not absolute.
2640 # it will point to a string with the forwarded symbol's string
3247 for symbol in module.imports:
3249 if symbol.import_by_ordinal is True:
3251 module.dll, str(symbol.ordinal)))
3254 module.dll, symbol.name, str(symbol.hint)))
3256 if symbol.bound:
3257 dump.add_line(' Bound: 0x%08X' % (symbol.bound))
3284 for symbol in module.imports:
3285 if symbol.import_by_ordinal is True:
3287 module.dll, str(symbol.ordinal)))
3290 module.dll, symbol.name, str(symbol.hint)))
3292 if symbol.bound:
3293 dump.add_line(' Bound: 0x%08X' % (symbol.bound))