Home
last modified time | relevance | path

Searched refs:hook_mem_write (Results 1 – 20 of 20) sorted by relevance

/dports/devel/radare2/radare2-5.1.1/libr/anal/
H A Desil_stats.c20 static int hook_mem_write(RAnalEsil *esil, ut64 addr, const ut8 *buf, int len) { in hook_mem_write() function
43 esil->cb.hook_mem_write = hook_NOP_mem_write; in r_anal_esil_mem_ro()
45 esil->cb.hook_mem_write = NULL; in r_anal_esil_mem_ro()
59 esil->cb.hook_mem_write = hook_mem_write; in r_anal_esil_stats()
64 esil->cb.hook_mem_write = NULL; in r_anal_esil_stats()
H A Desil_trace.c183 if (ocbs.hook_mem_write) { in trace_hook_mem_write()
186 ret = ocbs.hook_mem_write (esil, addr, buf, len); in trace_hook_mem_write()
231 esil->cb.hook_mem_write = trace_hook_mem_write; in r_anal_esil_trace_op()
H A Desil.c359 if (esil->cb.hook_mem_write) { in r_anal_esil_mem_write()
360 ret = esil->cb.hook_mem_write (esil, addr, buf, len); in r_anal_esil_mem_write()
/dports/emulators/unicorn/unicorn-1.0.2/tests/regress/
H A Dfpu_mem_write.py15 def hook_mem_write(uc, access, address, size, value, user_data): function
32 mu.hook_add(UC_HOOK_MEM_WRITE, hook_mem_write)
H A Drep_movsb.c75 static void hook_mem_write(uc_engine *uc, uc_mem_type type, in hook_mem_write() function
139 if (uc_hook_add(uc, &trace1, UC_HOOK_MEM_WRITE, hook_mem_write, NULL, 1, 0) != UC_ERR_OK) { in main()
H A Dmem_exec.c105 static void hook_mem_write(uc_engine *uc, uc_mem_type type, in hook_mem_write() function
214 if (uc_hook_add(uc, &trace1, UC_HOOK_MEM_WRITE, hook_mem_write, NULL, 1, 0) != UC_ERR_OK) { in main()
H A Dmem_protect.c126 static void hook_mem_write(uc_engine *uc, uc_mem_type type, in hook_mem_write() function
222 if (uc_hook_add(uc, &trace1, UC_HOOK_MEM_WRITE, hook_mem_write, NULL, 1, 0) != UC_ERR_OK) { in main()
H A Dmem_unmap.c121 static void hook_mem_write(uc_engine *uc, uc_mem_type type, in hook_mem_write() function
217 if (uc_hook_add(uc, &trace1, UC_HOOK_MEM_WRITE, hook_mem_write, NULL, 1, 0) != UC_ERR_OK) { in main()
/dports/emulators/py-unicorn/unicorn-1.0.2/tests/regress/
H A Dfpu_mem_write.py15 def hook_mem_write(uc, access, address, size, value, user_data): function
32 mu.hook_add(UC_HOOK_MEM_WRITE, hook_mem_write)
H A Drep_movsb.c75 static void hook_mem_write(uc_engine *uc, uc_mem_type type, in hook_mem_write() function
139 if (uc_hook_add(uc, &trace1, UC_HOOK_MEM_WRITE, hook_mem_write, NULL, 1, 0) != UC_ERR_OK) { in main()
H A Dmem_exec.c105 static void hook_mem_write(uc_engine *uc, uc_mem_type type, in hook_mem_write() function
214 if (uc_hook_add(uc, &trace1, UC_HOOK_MEM_WRITE, hook_mem_write, NULL, 1, 0) != UC_ERR_OK) { in main()
H A Dmem_unmap.c121 static void hook_mem_write(uc_engine *uc, uc_mem_type type, in hook_mem_write() function
217 if (uc_hook_add(uc, &trace1, UC_HOOK_MEM_WRITE, hook_mem_write, NULL, 1, 0) != UC_ERR_OK) { in main()
H A Dmem_protect.c126 static void hook_mem_write(uc_engine *uc, uc_mem_type type, in hook_mem_write() function
222 if (uc_hook_add(uc, &trace1, UC_HOOK_MEM_WRITE, hook_mem_write, NULL, 1, 0) != UC_ERR_OK) { in main()
/dports/devel/radare2/radare2-5.1.1/libr/debug/
H A Ddesil.c237 ESIL->cb.hook_mem_write = &esilbreak_mem_write; in r_debug_esil_stepi()
/dports/security/py-angr/angr-9.0.5405/native/
H A Dsim_unicorn.hpp342 static void hook_mem_write(uc_engine *uc, uc_mem_type type, uint64_t address, int size, int64_t val…
H A Dsim_unicorn.cpp68 err = uc_hook_add(uc, &h_write, UC_HOOK_MEM_WRITE, (void *)hook_mem_write, this, 1, 0); in hook()
1786 static void hook_mem_write(uc_engine *uc, uc_mem_type type, uint64_t address, int size, int64_t val… in hook_mem_write() function
/dports/devel/radare2/radare2-5.1.1/libr/core/
H A Ddisasm.c4601 int (*hook_mem_write)(RAnalEsil *esil, ut64 addr, const ut8 *buf, int len) = NULL; in ds_print_esil_anal() local
4628 hook_mem_write = esil->cb.hook_mem_write; in ds_print_esil_anal()
4631 esil->cb.hook_mem_write = mymemwrite2; in ds_print_esil_anal()
4634 esil->cb.hook_mem_write = mymemwrite0; in ds_print_esil_anal()
4636 esil->cb.hook_mem_write = mymemwrite1; in ds_print_esil_anal()
4804 esil->cb.hook_mem_write = hook_mem_write; in ds_print_esil_anal()
H A Dcanal.c5130 ESIL->cb.hook_mem_write = &esilbreak_mem_write; in r_core_anal_esil()
5437 ESIL->cb.hook_mem_write = NULL; in r_core_anal_esil()
H A Dcmd_anal.c5684 esil->cb.hook_mem_write = mymemwrite; in cmd_aea()
/dports/devel/radare2/radare2-5.1.1/libr/include/
H A Dr_anal.h1124 int (*hook_mem_write)(ESIL *esil, ut64 addr, const ut8 *buf, int len); member