![]() |
IDA Domain Python API
|
Public Member Functions | |
def | __init__ (self, database, ea) |
def | get_first (self) |
def | get_next (self) |
"Iterator[xref_t]" | __iter__ (self) |
![]() | |
def | __init__ (self, *args, **kwargs) |
Properties | |
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") | |
![]() | |
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") | |
Iterator for outgoing cross-references (from the specified address).
def ida_domain.XrefsFromIterator.__init__ | ( | self, | |
database, | |||
ea | |||
) |
__init__(self, database, ea) -> XrefsFromIterator Constructs an iterator for cross-references :param database: Reference to the active IDA database. :param ea: The source effective address.
"Iterator[xref_t]" ida_domain.XrefsFromIterator.__iter__ | ( | self | ) |
__iter__(self) -> Iterator[xref_t]
def ida_domain.XrefsFromIterator.get_first | ( | self | ) |
get_first(self) -> BoolXrefBlkPair Retrieves the first outgoing xref. :return: A pair <bool, xrefblk_t>. The bool is false if no xref is found.
def ida_domain.XrefsFromIterator.get_next | ( | self | ) |
get_next(self) -> BoolXrefBlkPair Retrieves the next outgoing xref. :return: A pair <bool, xrefblk_t>. The bool is false if no more xrefs exist.
|
static |