Lines Matching refs:m_options

72         m_options (interpreter)
83 return &m_options;
377 if (m_options.m_line_num != 0)
379 else if (m_options.m_load_addr != LLDB_INVALID_ADDRESS)
381 else if (!m_options.m_func_names.empty())
383 else if (!m_options.m_func_regexp.empty())
385 else if (!m_options.m_source_text_regexp.empty())
387 else if (m_options.m_language != eLanguageTypeUnknown)
399 const size_t num_files = m_options.m_filenames.GetSize();
416 file = m_options.m_filenames.GetFileSpecAtIndex(0);
421 bp = target->CreateBreakpoint (&(m_options.m_modules),
423 m_options.m_line_num,
425 m_options.m_skip_prologue,
431 bp = target->CreateBreakpoint (m_options.m_load_addr, false).get();
436 uint32_t name_type_mask = m_options.m_func_name_type_mask;
441 bp = target->CreateBreakpoint (&(m_options.m_modules),
442 &(m_options.m_filenames),
443 m_options.m_func_names,
445 m_options.m_skip_prologue,
452 RegularExpression regexp(m_options.m_func_regexp.c_str());
463 bp = target->CreateFuncRegexBreakpoint (&(m_options.m_modules),
464 &(m_options.m_filenames),
466 m_options.m_skip_prologue,
472 const size_t num_files = m_options.m_filenames.GetSize();
485 m_options.m_filenames.Append (file);
489 RegularExpression regexp(m_options.m_source_text_regexp.c_str());
499 bp = target->CreateSourceRegexBreakpoint (&(m_options.m_modules), &(m_options.m_filenames), regexp).get();
504 bp = target->CreateExceptionBreakpoint (m_options.m_language, m_options.m_catch_bp, m_options.m_throw_bp).get();
514 if (m_options.m_thread_id != LLDB_INVALID_THREAD_ID)
515 bp->SetThreadID (m_options.m_thread_id);
517 if (m_options.m_thread_index != UINT32_MAX)
518 bp->GetOptions()->GetThreadSpec()->SetIndex(m_options.m_thread_index);
520 if (!m_options.m_thread_name.empty())
521 bp->GetOptions()->GetThreadSpec()->SetName(m_options.m_thread_name.c_str());
523 if (!m_options.m_queue_name.empty())
524 bp->GetOptions()->GetThreadSpec()->SetQueueName(m_options.m_queue_name.c_str());
526 if (m_options.m_ignore_count != 0)
527 bp->GetOptions()->SetIgnoreCount(m_options.m_ignore_count);
529 if (!m_options.m_condition.empty())
530 bp->GetOptions()->SetCondition(m_options.m_condition.c_str());
532 bp->SetOneShot (m_options.m_one_shot);
595 CommandOptions m_options;
705 m_options (interpreter)
720 return &m_options;
932 if (m_options.m_thread_id_passed)
933 location->SetThreadID (m_options.m_thread_id);
935 if (m_options.m_thread_index_passed)
936 location->SetThreadIndex(m_options.m_thread_index);
938 if (m_options.m_name_passed)
939 location->SetThreadName(m_options.m_thread_name.c_str());
941 if (m_options.m_queue_passed)
942 location->SetQueueName(m_options.m_queue_name.c_str());
944 if (m_options.m_ignore_count != 0)
945 location->SetIgnoreCount(m_options.m_ignore_count);
947 if (m_options.m_enable_passed)
948 location->SetEnabled (m_options.m_enable_value);
950 if (m_options.m_condition_passed)
951 location->SetCondition (m_options.m_condition.c_str());
956 if (m_options.m_thread_id_passed)
957 bp->SetThreadID (m_options.m_thread_id);
959 if (m_options.m_thread_index_passed)
960 bp->SetThreadIndex(m_options.m_thread_index);
962 if (m_options.m_name_passed)
963 bp->SetThreadName(m_options.m_thread_name.c_str());
965 if (m_options.m_queue_passed)
966 bp->SetQueueName(m_options.m_queue_name.c_str());
968 if (m_options.m_ignore_count != 0)
969 bp->SetIgnoreCount(m_options.m_ignore_count);
971 if (m_options.m_enable_passed)
972 bp->SetEnabled (m_options.m_enable_value);
974 if (m_options.m_condition_passed)
975 bp->SetCondition (m_options.m_condition.c_str());
985 CommandOptions m_options;
1238 m_options (interpreter)
1261 return &m_options;
1341 const BreakpointList &breakpoints = target->GetBreakpointList(m_options.m_internal);
1343 target->GetBreakpointList(m_options.m_internal).GetListMutex(locker);
1363 AddBreakpointDescription (&output_stream, breakpoint, m_options.m_level);
1379 AddBreakpointDescription (&output_stream, breakpoint, m_options.m_level);
1394 CommandOptions m_options;
1438 m_options (interpreter)
1448 return &m_options;
1530 if (m_options.m_line_num != 0)
1560 const ConstString filename(m_options.m_filename.c_str());
1567 if (bp->GetMatchingFileLine(filename, m_options.m_line_num, loc_coll))
1604 CommandOptions m_options;