types module¶
binaryninja.types.BoolWithConfidence (value) |
|
binaryninja.types.Enumeration ([handle]) |
|
binaryninja.types.EnumerationMember (name, ...) |
|
binaryninja.types.FunctionParameter (param_type) |
|
binaryninja.types.NamedTypeReference ([...]) |
|
binaryninja.types.QualifiedName ([name]) |
|
binaryninja.types.ReferenceTypeWithConfidence (value) |
|
binaryninja.types.RegisterSet (reg_list[, ...]) |
|
binaryninja.types.RegisterStackAdjustmentWithConfidence (value) |
|
binaryninja.types.SizeWithConfidence (value) |
|
binaryninja.types.Structure ([handle]) |
|
binaryninja.types.StructureMember (t, name, ...) |
|
binaryninja.types.Symbol (sym_type, addr, ...) |
Symbols are defined as one of the following types: |
binaryninja.types.Type (handle[, platform, ...]) |
|
binaryninja.types.TypeParserResult (types, ...) |
|
binaryninja.types.preprocess_source (source) |
preprocess_source run the C preprocessor on the given source or source filename. |
binaryninja.types.pyNativeStr (arg) |
|
binaryninja.types.range (*args) |
A Python2 and Python3 Compatible Range Generator |
-
class
binaryninja.types.
Enumeration
(handle=None)[source]¶ Bases:
object
-
members
¶ Enumeration member list (read-only)
-
-
class
binaryninja.types.
FunctionParameter
(param_type, name='', location=None)[source]¶ Bases:
object
-
class
binaryninja.types.
NamedTypeReference
(type_class=<NamedTypeReferenceClass.UnknownNamedTypeClass: 0>, type_id=None, name=None, handle=None)[source]¶ Bases:
object
-
name
¶
-
type_class
¶
-
type_id
¶
-
-
class
binaryninja.types.
RegisterStackAdjustmentWithConfidence
(value, confidence=255)[source]¶ Bases:
object
-
class
binaryninja.types.
Structure
(handle=None)[source]¶ Bases:
object
-
alignment
¶ Structure alignment
-
members
¶ Structure member list (read-only)
-
packed
¶
-
type
¶
-
union
¶
-
width
¶ Structure width
-
-
class
binaryninja.types.
Symbol
(sym_type, addr, short_name, full_name=None, raw_name=None, handle=None)[source]¶ Bases:
object
Symbols are defined as one of the following types:
SymbolType Description FunctionSymbol Symbol for Function that exists in the current binary ImportAddressSymbol Symbol defined in the Import Address Table ImportedFunctionSymbol Symbol for Function that is not defined in the current binary DataSymbol Symbol for Data in the current binary ImportedDataSymbol Symbol for Data that is not defined in the current binary -
address
¶ Symbol address (read-only)
-
auto
¶
-
full_name
¶ Symbol full name (read-only)
-
name
¶ Symbol name (read-only)
-
raw_name
¶ Symbol raw name (read-only)
-
short_name
¶ Symbol short name (read-only)
-
type
¶ Symbol type (read-only)
-
-
class
binaryninja.types.
Type
(handle, platform=None, confidence=255)[source]¶ Bases:
object
-
alignment
¶ Type alignment (read-only)
-
calling_convention
¶ Calling convention (read-only)
-
can_return
¶ Whether type can return (read-only)
-
const
¶ Whether type is const (read-only)
-
count
¶ Type count (read-only)
-
element_type
¶ Target (read-only)
-
enumeration
¶ Type enumeration (read-only)
-
classmethod
float
(width, altname='')[source]¶ float
class method for creating an floating point Types.Parameters:
-
classmethod
function
(ret, params, calling_convention=None, variable_arguments=None, stack_adjust=None)[source]¶ function
class method for creating an function Type.Parameters: - ret (Type) – width of the integer in bytes
- params (list(Type)) – list of parameter Types
- calling_convention (CallingConvention) – optional argument for function calling convention
- variable_arguments (bool) – optional argument for functions that have a variable number of arguments
-
has_variable_arguments
¶ Whether type has variable arguments (read-only)
-
classmethod
int
(width, sign=None, altname='')[source]¶ int
class method for creating an int Type.Parameters:
-
modified
¶ Whether type is modified (read-only)
-
named_type_reference
¶ Reference to a named type (read-only)
-
offset
¶ Offset into structure (read-only)
-
parameters
¶ Type parameters list (read-only)
-
return_value
¶ Return value (read-only)
-
signed
¶ Wether type is signed (read-only)
-
stack_adjustment
¶ Stack adjustment for function (read-only)
-
structure
¶ Structure of the type (read-only)
-
target
¶ Target (read-only)
-
tokens
¶ Type string as a list of tokens (read-only)
-
type_class
¶ Type class (read-only)
-
width
¶ Type width (read-only)
-
-
binaryninja.types.
preprocess_source
(source, filename=None, include_dirs=[])[source]¶ preprocess_source
run the C preprocessor on the given source or source filename.Parameters: Returns: returns a tuple of (preprocessed_source, error_string)
Return type: tuple(str,str)
Example: >>> source = "#define TEN 10\nint x[TEN];\n" >>> preprocess_source(source) ('#line 1 "input"\n\n#line 2 "input"\n int x [ 10 ] ;\n', '') >>>