/external/capstone/arch/M680X/ |
D | M680XModule.c | 21 if (errcode != CS_ERR_OK) in M680X_global_init() 26 if (errcode != CS_ERR_OK) in M680X_global_init() 67 return CS_ERR_OK; in M680X_global_init() 73 return CS_ERR_OK; in M680X_option()
|
D | M680XInstPrinter.c | 361 return CS_ERR_OK; in M680X_instprinter_init()
|
/external/capstone/bindings/python/capstone/ |
D | __init__.py | 237 CS_ERR_OK = 0 # No error: everything was fine variable 464 if status != CS_ERR_OK: 477 if status != CS_ERR_OK: 483 if status != CS_ERR_OK: 505 if status != CS_ERR_OK: 519 if status != CS_ERR_OK: 525 if status != CS_ERR_OK: 786 if status != CS_ERR_OK: 815 if status != CS_ERR_OK: 852 if status != CS_ERR_OK: [all …]
|
/external/capstone/ |
D | cs.c | 440 case CS_ERR_OK: in cs_strerror() 496 ud->errnum = CS_ERR_OK; in cs_open() 514 return CS_ERR_OK; in cs_open() 553 return CS_ERR_OK; in cs_close() 686 return CS_ERR_OK; in cs_option() 699 return CS_ERR_OK; in cs_option() 703 return CS_ERR_OK; in cs_option() 713 return CS_ERR_OK; in cs_option() 718 return CS_ERR_OK; in cs_option() 749 return CS_ERR_OK; in cs_option() [all …]
|
/external/capstone/arch/EVM/ |
D | EVMModule.c | 25 return CS_ERR_OK; in EVM_global_init() 30 return CS_ERR_OK; in EVM_option()
|
/external/capstone/arch/MOS65XX/ |
D | MOS65XXModule.c | 25 return CS_ERR_OK; in MOS65XX_global_init() 30 return CS_ERR_OK; in MOS65XX_option()
|
/external/capstone/arch/TMS320C64x/ |
D | TMS320C64xModule.c | 31 return CS_ERR_OK; in TMS320C64x_global_init() 36 return CS_ERR_OK; in TMS320C64x_option()
|
/external/capstone/arch/XCore/ |
D | XCoreModule.c | 30 return CS_ERR_OK; in XCore_global_init() 38 return CS_ERR_OK; in XCore_option()
|
/external/capstone/arch/M68K/ |
D | M68KModule.c | 33 return CS_ERR_OK; in M68K_global_init() 38 return CS_ERR_OK; in M68K_option()
|
/external/capstone/arch/SystemZ/ |
D | SystemZModule.c | 30 return CS_ERR_OK; in SystemZ_global_init() 41 return CS_ERR_OK; in SystemZ_option()
|
/external/capstone/arch/AArch64/ |
D | AArch64Module.c | 32 return CS_ERR_OK; in AArch64_global_init() 41 return CS_ERR_OK; in AArch64_option()
|
/external/capstone/arch/Mips/ |
D | MipsModule.c | 39 return CS_ERR_OK; in Mips_global_init() 48 return CS_ERR_OK; in Mips_option()
|
/external/capstone/arch/Sparc/ |
D | SparcModule.c | 30 return CS_ERR_OK; in Sparc_global_init() 42 return CS_ERR_OK; in Sparc_option()
|
/external/capstone/arch/PowerPC/ |
D | PPCModule.c | 30 return CS_ERR_OK; in PPC_global_init() 42 return CS_ERR_OK; in PPC_option()
|
/external/capstone/suite/cstest/include/ |
D | capstone_test.h | 27 #define cs_assert_success(err) cs_assert_err(CS_ERR_OK, err) 33 if (__err == CS_ERR_OK) { \
|
/external/capstone/arch/ARM/ |
D | ARMModule.c | 37 return CS_ERR_OK; in ARM_global_init() 60 return CS_ERR_OK; in ARM_option()
|
/external/capstone/arch/X86/ |
D | X86Module.c | 39 return CS_ERR_OK; in X86_global_init() 91 return CS_ERR_OK; in X86_option()
|
/external/capstone/suite/cstest/src/ |
D | main.c | 75 if(cs_open(arch, mode, handle) != CS_ERR_OK) { in setup_MC() 83 if (cs_option(*handle, options[i].first_value, options[i].second_value) != CS_ERR_OK) { in setup_MC() 185 if(cs_open(arch, mode, handle) != CS_ERR_OK) { in setup_issue() 193 if (cs_option(*handle, options[i].first_value, options[i].second_value) != CS_ERR_OK) { in setup_issue()
|
/external/capstone/bindings/java/capstone/ |
D | Capstone.java | 259 if (c != CS_ERR_OK) { in regsAccess() 369 public static final int CS_ERR_OK = 0; field in Capstone 450 if (cs.cs_open(arch, mode, ns.handleRef) != CS_ERR_OK) { in Capstone() 465 if (cs.cs_option(ns.csh, CS_OPT_SYNTAX, new NativeLong(syntax)) == CS_ERR_OK) { in setSyntax() 474 if (cs.cs_option(ns.csh, CS_OPT_DETAIL, new NativeLong(opt)) == CS_ERR_OK) { in setDetail() 483 if (cs.cs_option(ns.csh, CS_OPT_MODE, new NativeLong(opt)) == CS_ERR_OK) { in setMode()
|
/external/capstone/docs/Capstone-Engine-Documentation/ |
D | Capstone-Engine Documentation.md | 549 CS_ERR_OK = 0, ///< 无错误 1085 return: 创建成功返回CS_ERR_OK,否则返回cs_err枚举中对应的错误信息 1112 ud->errnum = CS_ERR_OK; 1130 return CS_ERR_OK; 1184 return: 释放成功返回CS_ERR_OK,否则返回cs_err枚举的错误信息 1222 return CS_ERR_OK; 1243 return: 设置成功返回CS_ERR_OK,否则返回cs_err枚举的错误信息 1266 return CS_ERR_OK; 1279 return CS_ERR_OK; 1283 return CS_ERR_OK; [all …]
|
/external/capstone/contrib/cs_driver/cs_driver/ |
D | cs_driver.c | 68 &handle) != CS_ERR_OK) { in cs_driver_hello()
|
/external/capstone/bindings/vb6/ |
D | CDisassembler.cls | 87 If lastErr <> CS_ERR_OK Then
|
D | Module1.bas | 151 CS_ERR_OK = 0 ' No error: everything was fine
|
/external/capstone/include/capstone/ |
D | capstone.h | 366 CS_ERR_OK = 0, ///< No error: everything was fine enumerator
|
/external/capstone/bindings/python/pyx/ |
D | ccapstone.pyx | 256 if status != capstone.CS_ERR_OK: 287 if status != capstone.CS_ERR_OK:
|