MCPcopy Create free account
hub / github.com/capstone-engine/capstone / fromArrayRaw

Method fromArrayRaw

bindings/java/capstone/Capstone.java:286–294  ·  view source on GitHub ↗
(_cs_insn[] arr_raw)

Source from the content-addressed store, hash-verified

284 }
285
286 private CsInsn[] fromArrayRaw(_cs_insn[] arr_raw) {
287 CsInsn[] arr = new CsInsn[arr_raw.length];
288
289 for (int i = 0; i < arr_raw.length; i++) {
290 arr[i] = new CsInsn(arr_raw[i], this.arch, ns.csh, cs, this.diet);
291 }
292
293 return arr;
294 }
295
296 private interface CS extends Library {
297 public int cs_open(int arch, int mode, PointerByReference handle);

Callers 1

disasmMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected