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

  /external/capstone/bindings/python/pyx/
ccapstone.pyx 95 # Diet engine cannot provide @mnemonic & @op_str
102 def op_str(self): member in class:CsInsn
104 # Diet engine cannot provide @mnemonic & @op_str
107 return self._raw.op_str
291 # unlike disasm(), disasm_lite() only return tuples of (address, size, mnemonic, op_str),
298 # Diet engine cannot provide @mnemonic & @op_str
306 yield (insn.address, insn.size, insn.mnemonic, insn.op_str)
  /external/capstone/bindings/ocaml/
capstone.ml 100 op_str: string; Record field in type:cs_insn0
152 let (id, address, size, bytes, mnemonic, op_str, regs_read,
154 (a.id, a.address, a.size, a.bytes, a.mnemonic, a.op_str,
162 method op_str = op_str; method
  /external/capstone/bindings/java/capstone/
Capstone.java 50 public byte[] op_str; field in class:Capstone._cs_insn
57 op_str = new byte[160];
59 java.util.Arrays.fill(op_str, (byte) 0);
70 return Arrays.asList("id", "address", "size", "bytes", "mnemonic", "op_str", "cs_detail");
128 while (insn.op_str[lo++] != 0);
130 opStr = new String(insn.op_str, 0, lo-1);
  /external/capstone/bindings/python/capstone/
__init__.py 296 ('op_str', ctypes.c_char * 160),
410 # cs_disasm_lite() only return tuples of (address, size, mnemonic, op_str),
421 # Diet engine cannot provide @mnemonic & @op_str
435 yield (insn.address, insn.size, insn.mnemonic.decode('ascii'), insn.op_str.decode('ascii'))
490 def op_str(self): member in class:CsInsn
492 # Diet engine cannot provide @op_str.
495 return self._raw.op_str.decode('ascii')
866 # unlike disasm(), disasm_lite() only return tuples of (address, size, mnemonic, op_str),
870 # Diet engine cannot provide @mnemonic & @op_str
879 yield (insn.address, insn.size, insn.mnemonic.decode('ascii'), insn.op_str.decode('ascii')
    [all...]
  /external/capstone/include/
capstone.h 275 char op_str[160]; member in struct:cs_insn
  /external/selinux/libsepol/cil/src/
cil_tree.c 366 char *op_str = NULL; local
374 op_str = CIL_KEY_AND;
377 op_str = CIL_KEY_OR;
380 op_str = CIL_KEY_NOT;
383 op_str = CIL_KEY_ALL;
386 op_str = CIL_KEY_EQ;
389 op_str = CIL_KEY_NEQ;
392 op_str = CIL_KEY_XOR;
395 op_str = CIL_KEY_RANGE;
398 op_str = CIL_KEY_CONS_DOM
    [all...]
cil_write_ast.c 87 char *op_str = NULL; local
92 op_str = CIL_KEY_AND;
95 op_str = CIL_KEY_OR;
98 op_str = CIL_KEY_NOT;
101 op_str = CIL_KEY_ALL;
104 op_str = CIL_KEY_EQ;
107 op_str = CIL_KEY_NEQ;
110 op_str = CIL_KEY_RANGE;
113 op_str = CIL_KEY_XOR;
116 op_str = CIL_KEY_CONS_DOM
    [all...]
cil_policy.c 562 const char *op_str; local
567 op_str = " == ";
571 op_str = " != ";
575 op_str = " dom ";
579 op_str = " domby ";
583 op_str = " incomp ";
588 op_str = " ??? ";
592 strcpy(new, op_str);
    [all...]
  /external/stressapptest/src/
worker.cc 2931 const char *op_str; member in struct:__anon35590
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
typeobject.c 5578 static PyObject *op_str[6]; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
typeobject.c 5526 static PyObject *op_str[6]; local
    [all...]
  /external/python/cpython2/Objects/
typeobject.c 5675 static PyObject *op_str[6]; local
    [all...]

Completed in 278 milliseconds