* Add variadic decorator * Add check for _variadic func attribute * Expose @variadic at top level * Use variable for the actual name of attr * Update naming * Use helper * Maybe more pythonic? * Add variadic to public API * Add variadic decorator tests * Clean * Remove variadic parameter * Add docstrings * Document parameter * Clean * Better use of autodoc * Update docstring * Add todo comment
31 lines
621 B
ReStructuredText
31 lines
621 B
ReStructuredText
API
|
|
===
|
|
|
|
|
|
This API is under active development, and should be considered unstable.
|
|
|
|
Helpers
|
|
-------
|
|
|
|
.. automodule:: manticore
|
|
:members: issymbolic, variadic
|
|
|
|
Manticore
|
|
---------
|
|
|
|
.. autoclass:: manticore.Manticore
|
|
:members: add_hook, hook, run, terminate, verbosity
|
|
|
|
State
|
|
-----
|
|
|
|
.. autoclass:: manticore.core.state.State
|
|
:members: abandon, constrain, new_symbolic_buffer, new_symbolic_value, solve_n, solve_one, symbolicate_buffer, invoke_model
|
|
|
|
Cpu
|
|
---
|
|
|
|
.. autoclass:: manticore.core.cpu.abstractcpu.Cpu
|
|
:members: read_int, read_bytes, write_int, write_bytes, write_register, read_register, all_registers
|
|
|