| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBBreakpointName.cpp | 224 bp_name->GetOptions().SetEnabled(enable); in SetEnabled() 248 return bp_name->GetOptions().IsEnabled(); in IsEnabled() 261 bp_name->GetOptions().SetOneShot(one_shot); in SetOneShot() 275 return bp_name->GetOptions().IsOneShot(); in IsOneShot() 288 bp_name->GetOptions().SetIgnoreCount(count); in SetIgnoreCount() 302 return bp_name->GetOptions().GetIgnoreCount(); in GetIgnoreCount() 316 bp_name->GetOptions().SetCondition(condition); in SetCondition() 330 return bp_name->GetOptions().GetConditionText(); in GetCondition() 344 bp_name->GetOptions().SetAutoContinue(auto_continue); in SetAutoContinue() 358 return bp_name->GetOptions().IsAutoContinue(); in GetAutoContinue() [all …]
|
| H A D | SBTypeFormat.cpp | 72 uint32_t SBTypeFormat::GetOptions() { in GetOptions() function in SBTypeFormat 73 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBTypeFormat, GetOptions); in GetOptions() 76 return m_opaque_sp->GetOptions(); in GetOptions() 143 return GetOptions() == rhs.GetOptions(); in IsEqualTo() 187 TypeFormatImplSP(new TypeFormatImpl_Format(GetFormat(), GetOptions()))); in CopyOnWrite_Impl() 190 new TypeFormatImpl_EnumType(ConstString(GetTypeName()), GetOptions()))); in CopyOnWrite_Impl() 208 LLDB_REGISTER_METHOD(uint32_t, SBTypeFormat, GetOptions, ()); in RegisterMethods()
|
| H A D | SBTypeSummary.cpp | 260 uint32_t SBTypeSummary::GetOptions() { in GetOptions() function in SBTypeSummary 261 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBTypeSummary, GetOptions); in GetOptions() 265 return m_opaque_sp->GetOptions(); in GetOptions() 388 return GetOptions() == rhs.GetOptions(); in IsEqualTo() 392 return GetOptions() == rhs.GetOptions(); in IsEqualTo() 430 GetOptions(), current_summary_ptr->m_impl, in CopyOnWrite_Impl() 435 GetOptions(), current_summary_ptr->GetFunctionName(), in CopyOnWrite_Impl() 440 GetOptions(), current_summary_ptr->GetSummaryString())); in CopyOnWrite_Impl() 459 new_sp = TypeSummaryImplSP(new StringSummaryFormat(GetOptions(), "")); in ChangeSummaryType() 468 new_sp = TypeSummaryImplSP(new StringSummaryFormat(GetOptions(), "")); in ChangeSummaryType() [all …]
|
| H A D | SBTypeFilter.cpp | 45 uint32_t SBTypeFilter::GetOptions() { in GetOptions() function in SBTypeFilter 46 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBTypeFilter, GetOptions); in GetOptions() 49 return m_opaque_sp->GetOptions(); in GetOptions() 156 return GetOptions() == rhs.GetOptions(); in IsEqualTo() 184 TypeFilterImplSP new_sp(new TypeFilterImpl(GetOptions())); in CopyOnWrite_Impl() 204 LLDB_REGISTER_METHOD(uint32_t, SBTypeFilter, GetOptions, ()); in RegisterMethods()
|
| H A D | SBTypeSynthetic.cpp | 107 uint32_t SBTypeSynthetic::GetOptions() { in GetOptions() function in SBTypeSynthetic 108 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBTypeSynthetic, GetOptions); in GetOptions() 112 return m_opaque_sp->GetOptions(); in GetOptions() 173 return GetOptions() == rhs.GetOptions(); in IsEqualTo() 205 m_opaque_sp->GetOptions(), m_opaque_sp->GetPythonClassName(), in CopyOnWrite_Impl() 231 LLDB_REGISTER_METHOD(uint32_t, SBTypeSynthetic, GetOptions, ()); in RegisterMethods()
|
| H A D | SBBreakpoint.cpp | 387 bkpt_sp->GetOptions().GetThreadSpec()->SetIndex(index); in SetThreadIndex() 400 bkpt_sp->GetOptions().GetThreadSpecNoCreate(); in GetThreadIndex() 417 bkpt_sp->GetOptions().GetThreadSpec()->SetName(thread_name); in SetThreadName() 430 bkpt_sp->GetOptions().GetThreadSpecNoCreate(); in GetThreadName() 446 bkpt_sp->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName() 459 bkpt_sp->GetOptions().GetThreadSpecNoCreate(); in GetQueueName() 509 bkpt_sp->GetOptions().SetCommandDataCallback(cmd_data_up); in SetCommandLineCommands() 521 bkpt_sp->GetOptions().GetCommandLineCallbacks(command_list); in GetCommandLineCommands() 639 BreakpointOptions &bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackFunction() 664 BreakpointOptions &bp_options = bkpt_sp->GetOptions(); in SetScriptCallbackBody()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointName.cpp | 33 m_name(name), m_options(bkpt.GetOptions()) in BreakpointName() 61 if (GetOptions().AnySet()) in GetDescription() 66 GetOptions().GetDescription(s, level); in GetDescription() 84 bp_sp->GetOptions().CopyOverSetOptions(GetOptions()); in ConfigureBreakpoint()
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBTypeFilter.i | 50 GetOptions(); 68 options = property(GetOptions, SetOptions)
|
| H A D | SBTypeFormat.i | 43 GetOptions(); 69 options = property(GetOptions, SetOptions)
|
| H A D | SBTypeSynthetic.i | 51 GetOptions (); 70 options = property(GetOptions, SetOptions)
|
| H A D | SBTypeSummary.i | 89 GetOptions (); 108 options = property(GetOptions, SetOptions)
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | File.h | 311 virtual llvm::Expected<OpenOptions> GetOptions() const; 314 auto opts = GetOptions(); in GetOpenMode() 404 llvm::Expected<OpenOptions> GetOptions() const override;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
| H A D | CommandObjectTraceStartIntelPT.h | 54 Options *GetOptions() override { return &m_options; } in GetOptions() function 98 Options *GetOptions() override { return &m_options; } in GetOptions() function
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandObject.cpp | 64 if (!IsDashDashCommand() && GetOptions() != nullptr) in GetSyntax() 70 if (!IsDashDashCommand() && WantsRawCommandString() && GetOptions() && in GetSyntax() 71 GetOptions()->NumCommandOptions()) in GetSyntax() 98 Options *CommandObject::GetOptions() { in GetOptions() function in CommandObject 106 Options *options = GetOptions(); in ParseOptions() 287 Options *cur_options = GetOptions(); in HandleCompletion() 326 if (!found_word && search_options && GetOptions() != nullptr) { in HelpTextContainsWord() 328 GetOptions()->GenerateOptionUsage( in HelpTextContainsWord() 860 Options *options = GetOptions(); in GenerateHelpText()
|
| H A D | CommandAlias.cpp | 37 Options *options = cmd_obj_sp->GetOptions(); in ProcessAliasOptionsArgs() 130 Options *CommandAlias::GetOptions() { in GetOptions() function in CommandAlias 132 return m_underlying_command_sp->GetOptions(); in GetOptions()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | OptionValueString.h | 83 Flags &GetOptions() { return m_options; } in GetOptions() function 85 const Flags &GetOptions() const { return m_options; } in GetOptions() function
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectTrace.cpp | 82 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectTraceLoad 181 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectTraceDump 248 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectTraceSchema
|
| H A D | CommandObjectPlatform.cpp | 163 Options *GetOptions() override { return &m_option_group; } in GetOptions() function in CommandObjectPlatformSelect 306 Options *GetOptions() override { in GetOptions() function in CommandObjectPlatformConnect 407 Options *GetOptions() override { in GetOptions() function in CommandObjectPlatformSettings 454 Options *GetOptions() override { in GetOptions() function in CommandObjectPlatformMkDir 516 Options *GetOptions() override { in GetOptions() function in CommandObjectPlatformFOpen 603 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectPlatformFRead 692 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectPlatformFWrite 985 Options *GetOptions() override { return &m_all_options; } in GetOptions() function in CommandObjectPlatformProcessLaunch 1075 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectPlatformProcessList 1501 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectPlatformProcessAttach [all …]
|
| H A D | CommandObjectBreakpointCommand.cpp | 234 Options *GetOptions() override { return &m_all_options; } in GetOptions() function in CommandObjectBreakpointCommandAdd 402 m_bp_options_vec.push_back(bp->GetOptions()); in DoExecute() 501 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectBreakpointCommandDelete 672 baton = bp->GetOptions().GetBaton(); in DoExecute()
|
| H A D | CommandObjectBreakpoint.cpp | 240 Options *GetOptions() override { return &m_all_options; } in GetOptions() function in CommandObjectBreakpointSet 826 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectBreakpointModify 856 bp->GetOptions().CopyOverSetOptions( in DoExecute() 1110 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectBreakpointList 1242 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectBreakpointClear 1395 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectBreakpointDelete 1708 Options *GetOptions() override { return &m_option_group; } in GetOptions() function in CommandObjectBreakpointNameConfigure 1803 Options *GetOptions() override { return &m_option_group; } in GetOptions() function in CommandObjectBreakpointNameAdd 1888 Options *GetOptions() override { return &m_option_group; } in GetOptions() function in CommandObjectBreakpointNameDelete 2059 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectBreakpointRead [all …]
|
| H A D | CommandObjectProcess.cpp | 147 Options *GetOptions() override { return &m_all_options; } in GetOptions() function in CommandObjectProcessLaunch 352 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectProcessAttach 613 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectProcessContinue 680 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectProcessDetach 763 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectProcessConnect 900 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectProcessLoad 1190 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectProcessSaveCore 1288 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectProcessStatus 1461 Options *GetOptions() override { return &m_options; } in GetOptions() function in CommandObjectProcessHandle
|
| H A D | CommandObjectScript.h | 20 Options *GetOptions() override { return &m_options; } in GetOptions() function
|
| H A D | CommandObjectMultiword.cpp | 262 Options *CommandObjectProxy::GetOptions() { in GetOptions() function in CommandObjectProxy 265 return proxy_command->GetOptions(); in GetOptions() 266 return CommandObject::GetOptions(); in GetOptions()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointName.h | 163 BreakpointOptions &GetOptions() { return m_options; } in GetOptions() function 164 const BreakpointOptions &GetOptions() const { return m_options; } in GetOptions() function
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Log.cpp | 110 const Flags Log::GetOptions() const { in GetOptions() function in Log 282 Flags options = GetOptions(); in WriteHeader() 329 Flags options = GetOptions(); in WriteMessage()
|