Lines Matching defs:m_options
140 Options *GetOptions() override { return &m_options; }
208 if (ext_thread_sp->GetStatus(strm, m_options.m_start,
209 m_options.m_count,
211 !m_options.m_filtered_backtrace)) {
239 if (!thread->GetStatus(strm, m_options.m_start, m_options.m_count,
241 !m_options.m_filtered_backtrace, only_stacks)) {
247 if (m_options.m_extended_backtrace) {
257 CommandOptions m_options;
398 m_all_options.Append(&m_options);
461 if (m_options.m_end_line != LLDB_INVALID_LINE_NUMBER &&
469 const lldb::RunMode stop_other_threads = m_options.m_run_mode;
474 if (m_options.m_run_mode == eAllThreads)
476 else if (m_options.m_run_mode == eOnlyDuringStepping)
491 if (m_options.m_end_line != LLDB_INVALID_LINE_NUMBER) {
493 sc.GetAddressRangeFromHereToEndLine(m_options.m_end_line, range);
499 } else if (m_options.m_end_line_is_block_end) {
528 m_options.m_step_in_target.c_str(), stop_other_threads,
529 new_plan_status, m_options.m_step_in_avoid_no_debug,
530 m_options.m_step_out_avoid_no_debug);
532 if (new_plan_sp && !m_options.m_avoid_regexp.empty()) {
535 step_in_range_plan->SetAvoidRegexp(m_options.m_avoid_regexp.c_str());
549 m_options.m_step_out_avoid_no_debug);
564 new_plan_status, m_options.m_step_out_avoid_no_debug);
583 if (m_options.m_step_count > 1) {
584 if (!new_plan_sp->SetIterationCount(m_options.m_step_count)) {
630 ThreadStepScopeOptionGroup m_options;
884 Options *GetOptions() override { return &m_options; }
910 } else if (m_options.m_until_addrs.empty()) {
916 if (m_options.m_thread_idx == LLDB_INVALID_THREAD_ID) {
920 .FindThreadByIndexID(m_options.m_thread_idx)
928 m_options.m_thread_idx, num_threads);
935 thread->GetStackFrameAtIndex(m_options.m_frame_idx).get();
939 m_options.m_frame_idx, thread->GetID());
957 m_options.m_frame_idx, thread->GetID());
1019 for (lldb::addr_t address : m_options.m_until_addrs) {
1039 m_options.m_stop_others, m_options.m_frame_idx, new_plan_status);
1055 m_options.m_frame_idx, thread->GetID());
1094 CommandOptions m_options;
1163 m_option_group.Append(&m_options, LLDB_OPT_SET_ALL, LLDB_OPT_SET_2);
1188 } else if (m_options.m_thread_id == LLDB_INVALID_THREAD_ID &&
1195 } else if (m_options.m_thread_id != LLDB_INVALID_THREAD_ID &&
1219 process->GetThreadList().FindThreadByID(m_options.m_thread_id).get();
1222 m_options.m_thread_id);
1231 OptionGroupThreadSelect m_options;
1333 Options *GetOptions() override { return &m_options; }
1348 m_options.m_json_thread,
1349 m_options.m_json_stopinfo)) {
1357 CommandOptions m_options;
1533 Options *GetOptions() override { return &m_options; }
1613 CommandOptions m_options;
1690 Options *GetOptions() override { return &m_options; }
1701 if (m_options.m_load_addr != LLDB_INVALID_ADDRESS) {
1703 Address dest = Address(m_options.m_load_addr);
1718 int32_t line = (int32_t)m_options.m_line_num;
1720 line = sym_ctx.line_entry.line + m_options.m_line_offset;
1724 if (m_options.m_filenames.GetSize() == 1)
1725 file = m_options.m_filenames.GetFileSpecAtIndex(0);
1734 Status err = thread->JumpToLine(file, line, m_options.m_force, &warnings);
1748 CommandOptions m_options;
1828 Options *GetOptions() override { return &m_options; }
1832 if (command.GetArgumentCount() == 0 && m_options.m_tids.empty()) {
1834 DescriptionLevel desc_level = m_options.m_verbose
1838 strm, desc_level, m_options.m_internal, true, m_options.m_unreported);
1844 if (!m_options.m_tids.empty()) {
1847 for (lldb::tid_t tid : m_options.m_tids) {
1849 tmp_strm, tid, eDescriptionLevelFull, m_options.m_internal,
1850 true /* condense_trivial */, m_options.m_unreported);
1868 if (llvm::is_contained(m_options.m_tids, tid))
1875 if (m_options.m_verbose)
1878 process->DumpThreadPlansForTID(strm, tid, desc_level, m_options.m_internal,
1880 m_options.m_unreported);
1884 CommandOptions m_options;
2182 Options *GetOptions() override { return &m_options; }
2202 if (m_options.m_output_file) {
2203 out_file.emplace(m_options.m_output_file->GetPath().c_str(),
2208 m_options.m_dumper_options.forwards = true;
2212 m_options.m_dumper_options);
2217 CommandOptions m_options;
2355 Options *GetOptions() override { return &m_options; }
2374 if (m_options.m_continue && m_last_id) {
2377 m_options.m_dumper_options.skip = 1;
2378 m_options.m_dumper_options.id = m_last_id;
2390 if (m_options.m_dumper_options.id &&
2391 !cursor_sp->HasId(*m_options.m_dumper_options.id)) {
2397 if (m_options.m_output_file) {
2398 out_file.emplace(m_options.m_output_file->GetPath().c_str(),
2403 if (m_options.m_continue && !m_last_id) {
2412 m_options.m_dumper_options);
2414 m_last_id = dumper.DumpInstructions(m_options.m_count);
2417 CommandOptions m_options;
2482 Options *GetOptions() override { return &m_options; }
2490 m_options.m_verbose, m_options.m_json);
2494 CommandOptions m_options;