/external/capstone/bindings/ocaml/ |
D | capstone.ml | 48 | CS_OPT_DETAIL (* Break down instruction structure into details *) Constructor 56 let _CS_OPT_OFF = 0L;; (* Turn OFF an option - default option of CS_OPT_DETAIL, CS_OPT_SKIPDATA. *) 57 let _CS_OPT_ON = 3L;; (* Turn ON an option (CS_OPT_DETAIL, CS_OPT_SKIPDATA). *)
|
D | test_mips.ml | 62 let err = cs_option handle CS_OPT_DETAIL _CS_OPT_ON in
|
D | test_systemz.ml | 67 let err = cs_option handle CS_OPT_DETAIL _CS_OPT_ON in
|
D | test_xcore.ml | 65 let err = cs_option handle CS_OPT_DETAIL _CS_OPT_ON in
|
D | test_ppc.ml | 68 let err = cs_option handle CS_OPT_DETAIL _CS_OPT_ON in
|
D | test_sparc.ml | 66 let err = cs_option handle CS_OPT_DETAIL _CS_OPT_ON in
|
D | test_arm64.ml | 87 let err = cs_option handle CS_OPT_DETAIL _CS_OPT_ON in
|
/external/capstone/suite/benchmark/ |
D | test_iter_benchmark.c | 72 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test()
|
/external/capstone/suite/arm/ |
D | test_arm_regression.c | 195 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test_invalids() 309 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test_valids()
|
/external/capstone/bindings/vb6/ |
D | CDisassembler.cls | 95 cs_option handle, CS_OPT_DETAIL, CS_OPT_ON
|
D | Module1.bas | 51 CS_OPT_DETAIL ' Break down instruction structure into details
|
/external/capstone/tests/ |
D | test_mips.c | 129 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test()
|
D | test_xcore.c | 102 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test()
|
D | test_sparc.c | 114 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test()
|
D | test_systemz.c | 107 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test()
|
D | test_ppc.c | 140 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test()
|
D | test_iter.c | 202 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test()
|
D | test_arm64.c | 207 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test()
|
D | test_detail.c | 232 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test()
|
D | test_arm.c | 263 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test()
|
D | test_x86.c | 214 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in test()
|
/external/capstone/suite/fuzz/ |
D | fuzz_harness.c | 157 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON); in main()
|
/external/capstone/bindings/java/capstone/ |
D | Capstone.java | 327 public static final int CS_OPT_DETAIL = 2; // Break down instruction structure into details field in Capstone 406 if (cs.cs_option(ns.csh, CS_OPT_DETAIL, new NativeLong(opt)) == CS_ERR_OK) { in setDetail()
|
/external/capstone/bindings/python/capstone/ |
D | __init__.py | 146 CS_OPT_DETAIL = 2 # Break down instruction structure into details variable 814 status = _cs.cs_option(self.csh, CS_OPT_DETAIL, CS_OPT_OFF) 816 status = _cs.cs_option(self.csh, CS_OPT_DETAIL, CS_OPT_ON)
|
/external/capstone/include/ |
D | capstone.h | 134 CS_OPT_DETAIL, // Break down instruction structure into details enumerator
|