/external/capstone/bindings/python/pyx/ |
ccapstone.pxd | 66 int cs_op_count(csh handle, cs_insn *insn, unsigned int op_type)
|
/external/capstone/bindings/vb6/ |
vbCapstone.cpp | 88 return cs_op_count(handle,insn,op_type);
|
Module1.bas | 154 CS_ERR_HANDLE ' Invalid handle: cs_op_count(), cs_op_index()
563 'int cs_op_count(csh handle, const cs_insn *insn, unsigned int op_type);
564 Public Declare Function cs_op_count Lib "vbCapstone.dll" Alias "bs_op_count" (ByVal handle As Long, ByVal instruction As Long, ByVal op_type As Long) As Long
579 ' [1, cs_op_count(handle, insn, op_type)]
|
/external/capstone/cstool/ |
cstool_x86.c | 63 count = cs_op_count(ud, ins, X86_OP_IMM);
|
/external/capstone/bindings/java/capstone/ |
Capstone.java | 206 return cs.cs_op_count(csh, raw.getPointer(), type); 262 public int cs_op_count(NativeLong csh, Pointer insn, int type); method in interface:Capstone.CS
|
/external/capstone/tests/ |
test_x86.c | 86 count = cs_op_count(ud, ins, X86_OP_IMM);
|
/external/capstone/include/ |
capstone.h | 300 CS_ERR_HANDLE, // Invalid handle: cs_op_count(), cs_op_index() 649 int CAPSTONE_API cs_op_count(csh handle, const cs_insn *insn, unsigned int op_type); 662 [1, cs_op_count(handle, insn, op_type)]
|
/external/capstone/bindings/powershell/Capstone/ |
Capstone.psm1 | 194 CS_ERR_HANDLE, /// Invalid handle: cs_op_count(), cs_op_index()
|
/external/capstone/bindings/python/capstone/ |
__init__.py | 181 CS_ERR_HANDLE = 3 # Invalid handle: cs_op_count(), cs_op_index() 324 _setup_prototype(_cs, "cs_op_count", ctypes.c_int, ctypes.c_size_t, ctypes.POINTER(_cs_insn), ctypes.c_uint)
|
/external/capstone/ |
cs.c | 948 int CAPSTONE_API cs_op_count(csh ud, const cs_insn *insn, unsigned int op_type) function
|