| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | ThreadPlanRunToAddress.cpp | 65 Breakpoint *breakpoint; in SetInitialBreakpoints() local 66 breakpoint = in SetInitialBreakpoints() 68 if (breakpoint != nullptr) { in SetInitialBreakpoints() 69 if (breakpoint->IsHardware() && !breakpoint->HasResolvedLocations()) in SetInitialBreakpoints() 71 m_break_ids[i] = breakpoint->GetID(); in SetInitialBreakpoints() 72 breakpoint->SetThreadID(m_tid); in SetInitialBreakpoints() 73 breakpoint->SetBreakpointKind("run-to-address"); in SetInitialBreakpoints() 121 Breakpoint *breakpoint = in GetDescription() local 123 if (breakpoint) in GetDescription() 124 breakpoint->Dump(s); in GetDescription()
|
| H A D | LanguageRuntime.cpp | 155 BreakpointResolverSP CopyForBreakpoint(BreakpointSP &breakpoint) override { in CopyForBreakpoint() argument 158 ret_sp->SetBreakpoint(breakpoint); in CopyForBreakpoint()
|
| /freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverAddress.cpp | 121 Breakpoint &breakpoint = *breakpoint_sp; in SearchCallback() local 124 if (breakpoint.GetNumLocations() == 0) { in SearchCallback() 129 Target &target = breakpoint.GetTarget(); in SearchCallback() 139 m_resolved_addr = m_addr.GetLoadAddress(&breakpoint.GetTarget()); in SearchCallback() 141 if (bp_loc_sp && !breakpoint.IsInternal()) { in SearchCallback() 147 BreakpointLocationSP loc_sp = breakpoint.GetLocationAtIndex(0); in SearchCallback() 149 m_addr.GetLoadAddress(&breakpoint.GetTarget()); in SearchCallback() 176 BreakpointResolverAddress::CopyForBreakpoint(BreakpointSP &breakpoint) { in CopyForBreakpoint() argument 178 new BreakpointResolverAddress(breakpoint, m_addr)); in CopyForBreakpoint()
|
| H A D | BreakpointIDList.cpp | 205 Breakpoint *breakpoint = breakpoints.GetBreakpointAtIndex(j).get(); in FindAndReplaceIDRanges() local 206 break_id_t cur_bp_id = breakpoint->GetID(); in FindAndReplaceIDRanges() 211 const size_t num_locations = breakpoint->GetNumLocations(); in FindAndReplaceIDRanges() 216 BreakpointLocation *bp_loc = breakpoint->GetLocationAtIndex(k).get(); in FindAndReplaceIDRanges() 228 BreakpointLocation *bp_loc = breakpoint->GetLocationAtIndex(k).get(); in FindAndReplaceIDRanges()
|
| H A D | BreakpointResolverName.cpp | 330 Breakpoint &breakpoint = *breakpoint_sp; in SearchCallback() local 350 sc.symbol->ResolveReExportedSymbol(breakpoint.GetTarget()); in SearchCallback() 365 breakpoint.GetTarget().GetArchitecturePlugin(); in SearchCallback() 381 if (bp_loc_sp && new_location && !breakpoint.IsInternal()) { in SearchCallback() 421 BreakpointResolverName::CopyForBreakpoint(BreakpointSP &breakpoint) { in CopyForBreakpoint() argument 423 ret_sp->SetBreakpoint(breakpoint); in CopyForBreakpoint()
|
| H A D | BreakpointResolverScripted.cpp | 149 BreakpointResolverScripted::CopyForBreakpoint(BreakpointSP &breakpoint) { in CopyForBreakpoint() argument 150 return std::make_shared<BreakpointResolverScripted>(breakpoint, m_class_name, in CopyForBreakpoint()
|
| H A D | BreakpointResolverFileRegex.cpp | 162 BreakpointResolverFileRegex::CopyForBreakpoint(BreakpointSP &breakpoint) { in CopyForBreakpoint() argument 164 breakpoint, m_regex, m_function_names, m_exact_match)); in CopyForBreakpoint()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/ |
| H A D | InstrumentationRuntimeASanLibsanitizers.cpp | 93 Breakpoint *breakpoint = ReportRetriever::SetupBreakpoint( in Activate() local 96 if (!breakpoint) in Activate() 101 breakpoint->SetCallback( in Activate() 103 breakpoint->SetBreakpointKind("address-sanitizer-report"); in Activate() 104 SetBreakpointID(breakpoint->GetID()); in Activate()
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | Options.td | 59 let Command = "breakpoint list" in { 65 Desc<"Give a brief description of the breakpoint (no location info).">; 67 Desc<"Give a full description of the breakpoint and its locations.">; 69 Desc<"Explain everything we know about the breakpoint (for debugging " 76 let Command = "breakpoint modify" in { 79 Desc<"Set the number of times this breakpoint is skipped before stopping.">; 82 Desc<"The breakpoint is deleted the first time it stop causes a stop.">; 84 Arg<"ThreadIndex">, Desc<"The breakpoint stops only for the thread whose " 87 Arg<"ThreadID">, Desc<"The breakpoint stops only for the thread whose TID " 90 Arg<"ThreadName">, Desc<"The breakpoint stops only for the thread whose " [all …]
|
| H A D | CommandObjectBreakpoint.cpp | 969 Breakpoint *breakpoint = in DoExecute() local 973 breakpoint->FindLocationByID(cur_bp_id.GetLocationID()).get(); in DoExecute() 982 breakpoint->SetEnabled(true); in DoExecute() 1078 Breakpoint *breakpoint = in DoExecute() local 1082 breakpoint->FindLocationByID(cur_bp_id.GetLocationID()).get(); in DoExecute() 1091 breakpoint->SetEnabled(false); in DoExecute() 1204 Breakpoint *breakpoint = breakpoints.GetBreakpointAtIndex(i).get(); in DoExecute() local 1205 if (breakpoint->AllowList()) in DoExecute() 1206 AddBreakpointDescription(&output_stream, breakpoint, in DoExecute() 1220 Breakpoint *breakpoint = in DoExecute() local [all …]
|
| H A D | CommandObjectBreakpointCommand.cpp | 127 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information in CommandObjectBreakpointCommandAdd() 129 print("Hit this breakpoint!") in CommandObjectBreakpointCommandAdd() 154 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information in CommandObjectBreakpointCommandAdd() 158 print("Hit this breakpoint " + repr(bp_count) + " times!") in CommandObjectBreakpointCommandAdd()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/ |
| H A D | InstrumentationRuntimeASan.cpp | 87 Breakpoint *breakpoint = ReportRetriever::SetupBreakpoint( 90 if (!breakpoint) 95 breakpoint->SetCallback(InstrumentationRuntimeASan::NotifyBreakpointHit, this, 97 breakpoint->SetBreakpointKind("address-sanitizer-report"); 98 SetBreakpointID(breakpoint->GetID()); 306 Breakpoint *breakpoint = Activate() local
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
| H A D | InstrumentationRuntimeMainThreadChecker.cpp | 213 Breakpoint *breakpoint = in Activate() local 219 breakpoint->SetCallback( in Activate() 221 breakpoint->SetBreakpointKind("main-thread-checker-report"); in Activate() 222 SetBreakpointID(breakpoint->GetID()); in Activate()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
| H A D | InstrumentationRuntimeUBSan.cpp | 271 Breakpoint *breakpoint = in Activate() local 277 breakpoint->SetCallback(InstrumentationRuntimeUBSan::NotifyBreakpointHit, in Activate() 279 breakpoint->SetBreakpointKind("undefined-behavior-sanitizer-report"); in Activate() 280 SetBreakpointID(breakpoint->GetID()); in Activate()
|
| /freebsd/sys/arm/include/ |
| H A D | cpufunc.h | 53 breakpoint(void) in breakpoint() function 184 breakpoint(void) in breakpoint() function
|
| /freebsd/sys/powerpc/include/ |
| H A D | cpufunc.h | 42 void breakpoint(void); 45 breakpoint(void) in breakpoint() function
|
| /freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/ |
| H A D | err.D_PROTO_LEN.badbreakpoint.d | 40 breakpoint(1, 2);
|
| /freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/ |
| H A D | err.D_AGG_FUNC.bad.d | 42 @counts["xyz"] = breakpoint();
|
| /freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/ |
| H A D | err.D_ACT_SPEC.SpeculateWithBreakPoint.d | 51 breakpoint();
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/ |
| H A D | ReportRetriever.cpp | 248 Breakpoint *breakpoint = process_sp->GetTarget() in SetupBreakpoint() local 252 return breakpoint; in SetupBreakpoint()
|
| /freebsd/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBBreakpointLocationExtensions.i | 13 …breakpoint = property(GetBreakpoint, doc='A read only property that returns the parent breakpoint …
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointResolverAddress.h | 19 /// on a given Address. This breakpoint only takes once, and then it won't 61 CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override; 67 // address for this breakpoint,
|
| H A D | BreakpointResolverFileRegex.h | 59 CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override;
|
| H A D | BreakpointResolverScripted.h | 56 CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override;
|
| H A D | BreakpointResolverFileLine.h | 57 CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override;
|