Home
last modified time | relevance | path

Searched refs:capstone (Results 1 – 25 of 123) sorted by relevance

12345

/external/capstone/packages/freebsd/ports/devel/capstone/
Dpkg-plist1 include/capstone/arm.h
2 include/capstone/arm64.h
3 include/capstone/capstone.h
4 include/capstone/mips.h
5 include/capstone/ppc.h
6 include/capstone/sparc.h
7 include/capstone/systemz.h
8 include/capstone/x86.h
9 include/capstone/xcore.h
10 include/capstone/platform.h
[all …]
DMakefile3 PORTNAME= capstone
6 MASTER_SITES= http://capstone-engine.org/download/${PORTVERSION}/
21 …PLACE_CMD} -e '/libdir/s|\(libdir=\)\(.*\)\(devel/capstone/work/stage\)|\1|g' ${WRKSRC}/capstone.pc
/external/capstone/bindings/python/pyx/
Dccapstone.pyx4 import capstone, ctypes
7 _diet = cc.cs_support(capstone.CS_SUPPORT_DIET)
15 detail = ctypes.cast(raw_detail, ctypes.POINTER(capstone._cs_detail)).contents
24 if arch == capstone.CS_ARCH_ARM:
28 elif arch == capstone.CS_ARCH_ARM64:
31 elif arch == capstone.CS_ARCH_X86:
37 elif arch == capstone.CS_ARCH_MIPS:
39 elif arch == capstone.CS_ARCH_PPC:
42 elif arch == capstone.CS_ARCH_SPARC:
44 elif arch == capstone.CS_ARCH_SYSZ:
[all …]
/external/capstone/docs/
DREADME5 http://capstone-engine.org/version_2.1_API.html
9 http://capstone-engine.org/documentation.html
13 http://capstone-engine.org/lang_c.html
17 http://capstone-engine.org/lang_python.html
21 http://capstone-engine.org/lang_java.html
25 http://capstone-engine.org/compile.html
29 http://capstone-engine.org/diet.html
33 http://capstone-engine.org/embed.html
37 http://capstone-engine.org/skipdata.html
41 http://capstone-engine.org/iteration.html
[all …]
/external/capstone/bindings/ocaml/
DMakefile4 LIB = capstone
7 …m64.cmxa mips.cmxa ppc.cmxa x86.cmxa sparc.cmxa systemz.cmxa xcore.cmxa capstone.cmxa test_basic.c…
8 ocamlopt -o test_basic -ccopt $(FLAGS) ocaml.o capstone.cmx test_basic.cmx -cclib -l$(LIB)
9 ocamlopt -o test_detail -ccopt $(FLAGS) capstone.cmx ocaml.o test_detail.cmx -cclib -l$(LIB)
10 …ocamlopt -o test_x86 -ccopt $(FLAGS) capstone.cmx ocaml.o x86.cmx x86_const.cmx test_x86.cmx -ccli…
11 …ocamlopt -o test_arm -ccopt $(FLAGS) capstone.cmx ocaml.o arm.cmx arm_const.cmx test_arm.cmx -ccli…
12 …ocamlopt -o test_arm64 -ccopt $(FLAGS) capstone.cmx ocaml.o arm64.cmx arm64_const.cmx test_arm64.c…
13 …ocamlopt -o test_mips -ccopt $(FLAGS) capstone.cmx ocaml.o mips.cmx mips_const.cmx test_mips.cmx -…
14 …ocamlopt -o test_ppc -ccopt $(FLAGS) capstone.cmx ocaml.o ppc.cmx ppc_const.cmx test_ppc.cmx -ccli…
15 …ocamlopt -o test_sparc -ccopt $(FLAGS) capstone.cmx ocaml.o sparc.cmx sparc_const.cmx test_sparc.c…
[all …]
/external/capstone/bindings/vb6/
DREADME.txt8 This is a sample for using the capstone disassembly engine with VB6.
10 All of the capstone API are implemented, so this lib supports basic
11 disassembly of all of the processor architectures that capstone implements.
16 This sample was built against Capstone 3.0 rc4. Note that if the capstone
20 It is a small shim to give VB6 access to a stdcall API to access capstone.
21 You could also modify capstone itself so its exports were stdcall.
24 for <capstone.h>. This is for the /capstone/bindings/vb6/ directory structure
/external/capstone/suite/
Dtest_group_name.py3 from capstone import *
4 from capstone.arm import *
5 from capstone.arm64 import *
6 from capstone.mips import *
7 from capstone.ppc import *
8 from capstone.sparc import *
9 from capstone.systemz import *
10 from capstone.x86 import *
11 from capstone.xcore import *
16 from capstone import _cs
/external/capstone/bindings/
DREADME16 https://github.com/radare/capstone-vala
20 https://github.com/parasyte/node-capstone
32 https://github.com/richo/capstone-rs
46 - Emacs-capstone: Emacs (elisp) binding (by Bas Alberts)
48 https://github.com/collarchoke/emacs-capstone
52 https://github.com/mattifestation/capstone
56 https://github.com/aquynh/capstone/tree/master/bindings/powershell
60 https://github.com/firodj/php-capstone
/external/capstone/bindings/java/
DMakefile29 all: gen_const capstone tests
31 capstone: capstone_class target
33 cd $(OBJDIR) && jar cf $(BLDIR)/capstone.jar capstone/*.class
38 cd capstone && javac -d $(OBJDIR) -classpath $(JNA) $(CAPSTONE_JAVA)
40 cd capstone && javac -classpath $(JNA) $(CAPSTONE_JAVA)
56 rm -rf $(OBJDIR)/capstone/*.class
DTestPpc.java4 import capstone.Capstone;
5 import capstone.Ppc;
7 import static capstone.Ppc_const.*;
DTestXcore.java4 import capstone.Capstone;
5 import capstone.Xcore;
7 import static capstone.Xcore_const.*;
DTestMips.java4 import capstone.Capstone;
5 import capstone.Mips;
7 import static capstone.Mips_const.*;
DTestSparc.java4 import capstone.Capstone;
5 import capstone.Sparc;
7 import static capstone.Sparc_const.*;
DTestSystemz.java4 import capstone.Capstone;
5 import capstone.Systemz;
7 import static capstone.Sysz_const.*;
/external/capstone/
DCMakeLists.txt2 project(capstone) project
56 include/capstone.h
69 include/capstone.h
307 add_library(capstone-static STATIC ${ALL_SOURCES} ${ALL_HEADERS})
308 set_property(TARGET capstone-static PROPERTY OUTPUT_NAME capstone)
309 set(default-target capstone-static)
327 add_library(capstone-shared SHARED ${ALL_SOURCES} ${ALL_HEADERS})
328 set_property(TARGET capstone-shared PROPERTY OUTPUT_NAME capstone)
329 set_property(TARGET capstone-shared PROPERTY COMPILE_FLAGS -DCAPSTONE_SHARED)
332 set_target_properties(capstone-shared PROPERTIES IMPORT_SUFFIX _dll.lib)
[all …]
DCOMPILE.TXT83 /usr/include/capstone/capstone.h
84 /usr/include/capstone/x86.h
85 /usr/include/capstone/arm.h
86 /usr/include/capstone/arm64.h
87 /usr/include/capstone/mips.h
88 /usr/include/capstone/ppc.h
89 /usr/include/capstone/sparc.h
90 /usr/include/capstone/systemz.h
91 /usr/include/capstone/xcore.h
92 /usr/include/capstone/platform.h
[all …]
Dnmake.bat1 :: Capstone disassembler engine (www.capstone-engine.org)
2 :: Build Capstone libs (capstone.dll & capstone.lib) on Windows with CMake & Nmake
Dcapstone.pc.in1 Name: capstone pkg
4 URL: http://www.capstone-engine.org
7 Cflags: -I@CMAKE_INSTALL_PREFIX@/include/capstone
DMETADATA1 name: "capstone"
11 value: "https://github.com/aquynh/capstone"
15 value: "https://github.com/aquynh/capstone"
D.gitignore25 bindings/python/capstone.egg-info/
29 bindings/java/capstone.jar
74 capstone.pc
80 packages/freebsd/ports/devel/capstone/distinfo
/external/capstone/packages/rpm/
Dcapstone.spec1 Name: capstone
7 URL: http://www.capstone-engine.org/
8 Source0: http://www.capstone-engine.org/download/%{version}/%{name}-%{version}.tar.gz
72 sed -i 's;%{buildroot};;' capstone.pc
73 grep -v archive capstone.pc > capstone.pc.tmp
74 mv capstone.pc.tmp capstone.pc
/external/capstone/cstool/
DMakefile7 LIBNAME = capstone
20 LIBCAPSTONE = capstone.lib
24 LIBCAPSTONE = capstone.lib
/external/capstone/bindings/python/
DREADME.txt1 To install Capstone, you should run `pip install capstone`.
12 binary distribution from PyPI. Saying `pip install capstone` should
14 open an issue at https://github.com/aquynh/capstone and tag @rhelmot - they
51 Further information is available at http://www.capstone-engine.org
D.gitignore4 capstone/lib
5 capstone/include
DMakefile61 rm -rf capstone/lib capstone/include pyx/lib pyx/include
63 for f in capstone/*.py; do rm -f pyx/$$(basename $$f)x; done

12345