Lines Matching defs:m_options

255     m_all_options.Append(&m_options);
566 else if (m_options.m_line_num != 0)
568 else if (m_options.m_load_addr != LLDB_INVALID_ADDRESS)
570 else if (!m_options.m_func_names.empty())
572 else if (!m_options.m_func_regexp.empty())
574 else if (!m_options.m_source_text_regexp.empty())
576 else if (m_options.m_exception_language != eLanguageTypeUnknown)
585 if (m_options.m_offset_addr != 0 &&
586 m_options.m_skip_prologue == eLazyBoolCalculate)
587 m_options.m_skip_prologue = eLazyBoolNo;
593 const size_t num_files = m_options.m_filenames.GetSize();
604 file = m_options.m_filenames.GetFileSpecAtIndex(0);
610 &(m_options.m_modules), file, m_options.m_line_num,
611 m_options.m_column, m_options.m_offset_addr, check_inlines,
612 m_options.m_skip_prologue, internal, m_options.m_hardware,
613 m_options.m_move_to_nearest_code);
621 size_t num_modules_specified = m_options.m_modules.GetSize();
624 m_options.m_modules.GetFileSpecAtIndex(0);
626 m_options.m_load_addr, internal, file_spec, m_options.m_hardware);
628 bp_sp = target.CreateBreakpoint(m_options.m_load_addr, internal,
629 m_options.m_hardware);
639 FunctionNameType name_type_mask = m_options.m_func_name_type_mask;
645 &(m_options.m_modules), &(m_options.m_filenames),
646 m_options.m_func_names, name_type_mask, m_options.m_language,
647 m_options.m_offset_addr, m_options.m_skip_prologue, internal,
648 m_options.m_hardware);
654 RegularExpression regexp(m_options.m_func_regexp);
661 if (!m_options.m_func_regexp.empty()) {
662 if (m_options.m_func_regexp[0] == '*' ||
663 m_options.m_func_regexp[0] == '?')
671 &(m_options.m_modules), &(m_options.m_filenames), std::move(regexp),
672 m_options.m_language, m_options.m_skip_prologue, internal,
673 m_options.m_hardware);
677 const size_t num_files = m_options.m_filenames.GetSize();
679 if (num_files == 0 && !m_options.m_all_files) {
686 m_options.m_filenames.Append(file);
690 RegularExpression regexp(m_options.m_source_text_regexp);
698 &(m_options.m_modules), &(m_options.m_filenames),
699 m_options.m_source_regex_func_names, std::move(regexp), internal,
700 m_options.m_hardware, m_options.m_move_to_nearest_code);
705 m_options.m_exception_language, m_options.m_catch_bp,
706 m_options.m_throw_bp, internal, &m_options.m_exception_extra_args,
720 m_python_class_options.GetName().c_str(), &(m_options.m_modules),
721 &(m_options.m_filenames), false, m_options.m_hardware,
738 if (!m_options.m_breakpoint_names.empty()) {
740 for (auto name : m_options.m_breakpoint_names) {
813 CommandOptions m_options;
833 m_options.Append(&m_bp_opts,
836 m_options.Append(&m_dummy_opts, LLDB_OPT_SET_1, LLDB_OPT_SET_ALL);
837 m_options.Finalize();
849 Options *GetOptions() override { return &m_options; }
890 OptionGroupOptions m_options;
1106 Options *GetOptions() override { return &m_options; }
1162 Target &target = m_options.m_use_dummy ? GetDummyTarget() : GetTarget();
1165 target.GetBreakpointList(m_options.m_internal);
1167 target.GetBreakpointList(m_options.m_internal).GetListMutex(lock);
1186 m_options.m_level);
1202 m_options.m_level);
1212 CommandOptions m_options;
1235 Options *GetOptions() override { return &m_options; }
1289 if (m_options.m_line_num != 0)
1316 const ConstString filename(m_options.m_filename.c_str());
1322 if (bp->GetMatchingFileLine(filename, m_options.m_line_num, loc_coll)) {
1351 CommandOptions m_options;
1379 Options *GetOptions() override { return &m_options; }
1430 Target &target = m_options.m_use_dummy ? GetDummyTarget() : GetTarget();
1446 if (command.empty() && !m_options.m_delete_disabled) {
1447 if (!m_options.m_force &&
1467 if (m_options.m_delete_disabled) {
1528 CommandOptions m_options;
2104 Options *GetOptions() override { return &m_options; }
2233 FileSpec input_spec(m_options.m_filename);
2237 m_options.m_names, new_bps);
2265 CommandOptions m_options;
2294 Options *GetOptions() override { return &m_options; }
2354 FileSpec file_spec(m_options.m_filename);
2357 m_options.m_append);
2365 CommandOptions m_options;