envi.bintree.BinaryTree:
A simple binary search tree capable of using integers or string
representations of binary integers as inputs.
vtrace.breakpoints.Breakpoint:
Breakpoints in Vtrace are platform independant objects that use the
underlying trace objects to get things like the program counter and
the break instruction.
vtrace.breakpoints.CallBreak:
A special breakpoint which will restore process state (registers in
particular) when it gets hit.
vdb.stalker.StalkerBreak:
Stalker breakpoints are added to function entry points to trigger
code-flow analysis and subsequent block breakpoint addition.
vdb.stalker.StalkerDynBreak:
A breakpoint which is placed on dynamic branches to track code flow
across them.
envi.cli.CliExtMeth:
This is used to work around the difference between functions and
bound methods for extended command modules
cobra.cluster.ClusterCallback:
Place one of these in the ClusterServer to get synchronous event
information about what's going on in the cluster server.
envi.util.CopyOnWrite:
A memory object wrapper you can use to do copy-on-write memory use
and be able to simply reset it.
visgraph.dbcore.DbGraphStore:
A DbGraphStore object may be used for all the standard management
of node and edge information but may not be used for path queries.
visgraph.graphcore.HierarchicalGraph:
An extension to the graph base which implements the idea of
hierarchy keeping a weight relationship based on the added edges.
visgraph.renderers.GraphRenderer:
Only a "renderer" knows how big each node will end up
based on metadata in the graph which is specific to the renderer.
vtrace.snapshot.TraceSnapshot:
A tracer snapshot is similar to a traditional "core file"
except that you may also have memory only snapshots that are never
written to disk.
envi.archs.i386.disasm.i386ImmMemOper:
An operand which represents the dereference (memory read/write) of
a memory location associated with an immediate.
envi.archs.i386.disasm.i386RegMemOper:
An operand which represents the result of reading/writting memory
from the dereference (with possible displacement) from a given
register.
envi.archs.i386.disasm.i386SibOper:
An operand which represents the result of reading/writting memory
from the dereference (with possible displacement) from a given
register.
envi.pagelookup.PageLookup:
An object capable of rapid lookups across a sparse address space
which will also NOT eat *all* the RAMS like a straight dictionary
full of millions of entries would.
vtrace.snapshot.TraceSnapshot:
A tracer snapshot is similar to a traditional "core file"
except that you may also have memory only snapshots that are never
written to disk.
vtrace.snapshot.TraceSnapshot:
A tracer snapshot is similar to a traditional "core file"
except that you may also have memory only snapshots that are never
written to disk.
envi.codeflow.CodeFlowContext:
A CodeFlowContext is used for code-flow (not linear) based disassembly
for an envi MemoryObject (which is responsible for knowing the implementation
of parseOpcode().
vtrace.notifiers.DistributedNotifier:
A notifier which will distributed notifications out to locally
registered notifiers so that remote tracer's notifier callbacks
only require once across the wire.
vtrace.snapshot.TraceSnapshot:
A tracer snapshot is similar to a traditional "core file"
except that you may also have memory only snapshots that are never
written to disk.
vtrace.snapshot.TraceSnapshot:
A tracer snapshot is similar to a traditional "core file"
except that you may also have memory only snapshots that are never
written to disk.
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.
PyQt4.QtGui.QApplication:
QApplication(list-of-str) QApplication(list-of-str, bool)
QApplication(list-of-str, QApplication.Type) QApplication(Display,
int visual=0, int colormap=0) QApplication(Display, list-of-str,
int visual=0, int cmap=0)