Searched refs:breakpoint (Results 26 - 49 of 49) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverFileRegex.cpp160 BreakpointResolverFileRegex::CopyForBreakpoint(BreakpointSP &breakpoint) { argument
162 breakpoint, m_regex, m_function_names, m_exact_match));
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DLanguageRuntime.cpp156 BreakpointResolverSP CopyForBreakpoint(BreakpointSP &breakpoint) override {
159 ret_sp->SetBreakpoint(breakpoint);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.cpp63 "Add LLDB commands to a breakpoint, to be executed "
64 "whenever the breakpoint is hit."
65 " If no breakpoint is specified, adds the "
66 "commands to the last created breakpoint.",
70 m_options(), m_func_options("breakpoint command", false, 'F') {
73 General information about entering breakpoint commands
78 breakpoint is hit. Each command is typed on its own line following the '> ' \
84 malformed commands can silently fail when executed. If your breakpoint commands \
94 Special information about PYTHON breakpoint commands
100 the code executes. Single line breakpoint command
[all...]
/freebsd-13-stable/usr.sbin/bhyve/
H A Dgdb.c96 struct breakpoint { struct
99 TAILQ_ENTRY(breakpoint) link;
118 * When a vCPU hits a breakpoint set by the debug server,
131 static TAILQ_HEAD(, breakpoint) breakpoints;
656 * to an event triggered on a specific vCPU such as a breakpoint or
757 debug("$vCPU %d enabled breakpoint exits\n", vcpu);
852 static struct breakpoint *
855 struct breakpoint *bp;
867 struct breakpoint *bp;
885 debug("$vCPU %d reporting breakpoint a
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp868 s.Printf("ThreadSanitizer report breakpoint hit. Use 'thread "
917 Breakpoint *breakpoint = local
921 breakpoint->SetCallback(InstrumentationRuntimeTSan::NotifyBreakpointHit, this,
923 breakpoint->SetBreakpointKind("thread-sanitizer-report");
924 SetBreakpointID(breakpoint->GetID());
/freebsd-13-stable/sys/mips/include/
H A Dcpufunc.h112 breakpoint(void) function
/freebsd-13-stable/lib/msun/src/
H A Dmath_private.h693 #define breakpoint() asm("int $3") macro
697 #define breakpoint() raise(SIGTRAP) macro
/freebsd-13-stable/sys/i386/include/
H A Dcpufunc.h60 breakpoint(void) function
756 int breakpoint(void);
/freebsd-13-stable/sys/amd64/include/
H A Dcpufunc.h63 breakpoint(void) function
946 int breakpoint(void);
/freebsd-13-stable/sys/kern/
H A Dsubr_kdb.c492 * it is entered by using breakpoint(), which enters the debugger through
505 breakpoint();
H A Dkern_fail.c607 breakpoint();
/freebsd-13-stable/lib/msun/ld128/
H A Ds_logl.c559 breakpoint();
668 breakpoint();
/freebsd-13-stable/lib/msun/ld80/
H A Ds_logl.c547 breakpoint();
657 breakpoint();
/freebsd-13-stable/sys/powerpc/aim/
H A Dtrap_subr32.S833 .globl CNAME(breakpoint)
834 CNAME(breakpoint):
H A Dtrap_subr64.S898 ASENTRY_NOPROF(breakpoint)
960 ASEND(breakpoint)
/freebsd-13-stable/sys/powerpc/booke/
H A Dtrap_subr.S1052 /* .globl CNAME(breakpoint)*/
1053 ASENTRY_NOPROF(breakpoint)
1100 ASEND(breakpoint)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1225 // // Don't do anything about these events, since the breakpoint
1234 BreakpointSP breakpoint = local
1238 output_sp->Printf("%d location%s added to breakpoint %d\n",
1240 breakpoint->GetID());
/freebsd-13-stable/sys/mips/mips/
H A Dsupport.S834 LEAF(breakpoint)
838 END(breakpoint)
/freebsd-13-stable/sys/x86/x86/
H A Dcpu_machdep.c407 breakpoint();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp791 // kernel name. The breakpoint address is finally set using the address of this
804 // Attempt to set a breakpoint on the kernel name symbol within the module
806 // set a breakpoint on <name>.expand.
879 LLDB_LOGF(log, "%s: %s reduction breakpoint on %s in %s",
904 Breakpoint& breakpoint = *breakpoint_sp; local
905 breakpoint.GetNames(names);
921 LLDB_LOGF(log, "%s: Adding breakpoint for %s", __FUNCTION__,
945 breakpoint.AddLocation(address, &new_bp);
950 // exit after placing the first breakpoint if we do not intend to stop on
1259 LLDB_LOGF(log, "Found breakpoint wit
[all...]
/freebsd-13-stable/tests/sys/kern/
H A Dptrace_test.c57 * Architectures with a user-visible breakpoint().
66 * Adjust PC to skip over a breakpoint when stopped for a breakpoint trap.
1822 * process exit when stopped due to a breakpoint trap.
1833 breakpoint();
1846 /* The second wait() should report hitting the breakpoint. */
3599 * for a breakpoint trap.
3611 breakpoint();
3624 /* The second wait() should report hitting the breakpoint. */
3704 breakpoint();
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp428 cmd_obj_sp = GetCommandSPExact("breakpoint set", false);
470 m_command_dict["breakpoint"] =
515 "breakpoint set --file '%1' --line %2 --column %3"},
517 "breakpoint set --file '%1' --line %2"},
518 {"^/([^/]+)/$", "breakpoint set --source-pattern-regexp '%1'"},
519 {"^([[:digit:]]+)[[:space:]]*$", "breakpoint set --line %1"},
520 {"^\\*?(0x[[:xdigit:]]+)[[:space:]]*$", "breakpoint set --address %1"},
522 "breakpoint set --name '%1'"},
523 {"^(-.*)$", "breakpoint set %1"},
525 "breakpoint se
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp562 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information
612 error_sp->Printf("Warning: No command attached to breakpoint.\n");
634 error_sp->Printf("Warning: No command attached to breakpoint.\n");
1259 // Set a Python one-liner as the callback for the breakpoint.
/freebsd-13-stable/sys/dev/bce/
H A Dif_bce.c9486 "breakpoint", CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
9488 bce_sysctl_breakpoint, "I", "Driver breakpoint");
11411 breakpoint();

Completed in 500 milliseconds

12