Searched defs:breakpoint (Results 1 - 2 of 2) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/
H A Dxmlmemory.c139 * number reaches the specified value this function is called. One need to add a breakpoint
851 char *breakpoint; local
866 breakpoint = getenv("XML_MEM_BREAKPOINT");
867 if (breakpoint != NULL) {
868 sscanf(breakpoint, "%ud", &xmlMemStopAtBlock);
872 breakpoint = getenv("XML_MEM_TRACE");
873 if (breakpoint != NULL) {
874 sscanf(breakpoint, "%p", &xmlMemTraceBlockAt);
/vbox/src/recompiler/
H A Dexec.c1632 /* Add a breakpoint. */
1634 CPUBreakpoint **breakpoint)
1652 if (breakpoint)
1653 *breakpoint = bp;
1660 /* Remove a specific breakpoint. */
1682 /* Remove a specific breakpoint by reference. */
1683 void cpu_breakpoint_remove_by_ref(CPUState *env, CPUBreakpoint *breakpoint) argument
1686 QTAILQ_REMOVE(&env->breakpoints, breakpoint, entry);
1688 breakpoint_invalidate(env, breakpoint->pc);
1690 qemu_free(breakpoint);
1633 cpu_breakpoint_insert(CPUState *env, target_ulong pc, int flags, CPUBreakpoint **breakpoint) argument
[all...]

Completed in 39 milliseconds