HomeSort by relevance Sort by last modified time
    Searched defs:CS_ERR_OK (Results 1 - 3 of 3) sorted by null

  /external/capstone/bindings/java/capstone/
Capstone.java 310 public static final int CS_ERR_OK = 0;
382 if (cs.cs_open(arch, mode, ns.handleRef) != CS_ERR_OK) {
397 if (cs.cs_option(ns.csh, CS_OPT_SYNTAX, new NativeLong(syntax)) == CS_ERR_OK) {
406 if (cs.cs_option(ns.csh, CS_OPT_DETAIL, new NativeLong(opt)) == CS_ERR_OK) {
415 if (cs.cs_option(ns.csh, CS_OPT_MODE, new NativeLong(opt)) == CS_ERR_OK) {
  /external/capstone/bindings/python/capstone/
__init__.py 64 'CS_ERR_OK',
178 CS_ERR_OK = 0 # No error: everything was fine
385 if status != CS_ERR_OK:
398 if status != CS_ERR_OK:
404 if status != CS_ERR_OK:
426 if status != CS_ERR_OK:
440 if status != CS_ERR_OK:
446 if status != CS_ERR_OK:
695 if status != CS_ERR_OK:
727 if status != CS_ERR_OK
    [all...]
  /external/capstone/include/
capstone.h 297 CS_ERR_OK = 0, // No error: everything was fine
357 @return CS_ERR_OK on success, or other value on failure (refer to cs_err enum
374 @return CS_ERR_OK on success, or other value on failure (refer to cs_err enum
387 @return: CS_ERR_OK on success, or other value on failure.

Completed in 86 milliseconds