Lines Matching refs:sb_file_spec

687 SBTarget::BreakpointCreateByLocation(const SBFileSpec &sb_file_spec,  in BreakpointCreateByLocation()  argument
689 LLDB_INSTRUMENT_VA(this, sb_file_spec, line); in BreakpointCreateByLocation()
691 return BreakpointCreateByLocation(sb_file_spec, line, 0); in BreakpointCreateByLocation()
695 SBTarget::BreakpointCreateByLocation(const SBFileSpec &sb_file_spec, in BreakpointCreateByLocation() argument
697 LLDB_INSTRUMENT_VA(this, sb_file_spec, line, offset); in BreakpointCreateByLocation()
700 return BreakpointCreateByLocation(sb_file_spec, line, offset, empty_list); in BreakpointCreateByLocation()
704 SBTarget::BreakpointCreateByLocation(const SBFileSpec &sb_file_spec, in BreakpointCreateByLocation() argument
707 LLDB_INSTRUMENT_VA(this, sb_file_spec, line, offset, sb_module_list); in BreakpointCreateByLocation()
709 return BreakpointCreateByLocation(sb_file_spec, line, 0, offset, in BreakpointCreateByLocation()
714 const SBFileSpec &sb_file_spec, uint32_t line, uint32_t column, in BreakpointCreateByLocation() argument
716 LLDB_INSTRUMENT_VA(this, sb_file_spec, line, column, offset, sb_module_list); in BreakpointCreateByLocation()
733 module_list, *sb_file_spec, line, column, offset, check_inlines, in BreakpointCreateByLocation()
741 const SBFileSpec &sb_file_spec, uint32_t line, uint32_t column, in BreakpointCreateByLocation() argument
744 LLDB_INSTRUMENT_VA(this, sb_file_spec, line, column, offset, sb_module_list, in BreakpointCreateByLocation()
761 module_list, *sb_file_spec, line, column, offset, check_inlines, in BreakpointCreateByLocation()
1584 SBModule SBTarget::FindModule(const SBFileSpec &sb_file_spec) { in FindModule() argument
1585 LLDB_INSTRUMENT_VA(this, sb_file_spec); in FindModule()
1589 if (target_sp && sb_file_spec.IsValid()) { in FindModule()
1590 ModuleSpec module_spec(*sb_file_spec); in FindModule()
1597 SBSymbolContextList SBTarget::FindCompileUnits(const SBFileSpec &sb_file_spec) { in FindCompileUnits() argument
1598 LLDB_INSTRUMENT_VA(this, sb_file_spec); in FindCompileUnits()
1602 if (target_sp && sb_file_spec.IsValid()) in FindCompileUnits()
1603 target_sp->GetImages().FindCompileUnits(*sb_file_spec, *sb_sc_list); in FindCompileUnits()