Searched refs:watchpoint (Results 1 - 2 of 2) sorted by relevance

/external/qemu/
H A Dcpu-all.h779 /* Breakpoint/watchpoint flags */
794 int flags, CPUWatchpoint **watchpoint);
797 void cpu_watchpoint_remove_by_ref(CPUState *env, CPUWatchpoint *watchpoint);
H A Dexec.c1366 /* Add a watchpoint. */
1368 int flags, CPUWatchpoint **watchpoint)
1375 fprintf(stderr, "qemu: tried to set invalid watchpoint at "
1393 if (watchpoint)
1394 *watchpoint = wp;
1398 /* Remove a specific watchpoint. */
1415 /* Remove a specific watchpoint by reference. */
1416 void cpu_watchpoint_remove_by_ref(CPUState *env, CPUWatchpoint *watchpoint) argument
1418 TAILQ_REMOVE(&env->watchpoints, watchpoint, entry);
1420 tlb_flush_page(env, watchpoint
1367 cpu_watchpoint_insert(CPUState *env, target_ulong addr, target_ulong len, int flags, CPUWatchpoint **watchpoint) argument
[all...]

Completed in 22 milliseconds