Home
last modified time | relevance | path

Searched refs:disasm_lite (Results 1 – 7 of 7) sorted by relevance

/external/capstone/bindings/python/
DBUILDING.txt62 Similarly to test_basic.py, but this code shows how to use disasm_lite(), a lighter
66 The main reason for using this API is better performance: disasm_lite() is at least
68 information out of disassembler, use disasm_lite() instead of disasm().
Dtest_lite.py65 for (addr, size, mnemonic, op_str) in md.disasm_lite(code, 0x1000):
/external/capstone/suite/
Dfuzz.py73 insns = md.disasm_lite(code, 0)
Dbenchmark.py66 insns = md.disasm_lite(code, 0)
/external/capstone/bindings/python/pyx/
Dccapstone.pyx291 # unlike disasm(), disasm_lite() only return tuples of (address, size, mnemonic, op_str),
293 def disasm_lite(self, code, addr, count=0): member in Cs
/external/capstone/bindings/python/capstone/
D__init__.py868 def disasm_lite(self, code, offset, count=0): member in Cs
/external/capstone/
DChangeLog458 - New API disasm_lite() added to Cs class. This light API only returns tuples of