Home
last modified time | relevance | path

Searched refs:func_names (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/source_regexp/
H A DTestSourceRegexBreakpoints.py34 func_names = lldb.SBStringList()
35 func_names.AppendString("a_func")
39 source_regex, lldb.SBFileSpecList(), target_files, func_names)
92 func_names = lldb.SBStringList()
93 func_names.AppendString("main_func")
95 source_regex, lldb.SBFileSpecList(), target_files, func_names)
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointResolverFileRegex.cpp24 const std::unordered_set<std::string> &func_names, bool exact_match) in BreakpointResolverFileRegex() argument
27 m_function_names(func_names) {} in BreakpointResolverFileRegex()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBTarget.h645 const SBFileSpecList &source_file, const SBStringList &func_names);
/llvm-project-15.0.7/lldb/source/API/
H A DSBTarget.cpp992 const SBStringList &func_names) { in BreakpointCreateBySourceRegex() argument
994 func_names); in BreakpointCreateBySourceRegex()
1004 for (size_t i = 0; i < func_names.GetSize(); i++) { in BreakpointCreateBySourceRegex()
1005 func_names_set.insert(func_names.GetStringAtIndex(i)); in BreakpointCreateBySourceRegex()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DTarget.h708 const FileSpecList *containingSourceFiles, const char *func_names[],
716 const std::vector<std::string> &func_names,
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBTarget.i664 const SBStringList &func_names);
/llvm-project-15.0.7/lldb/source/Target/
H A DTarget.cpp473 const std::vector<std::string> &func_names, in CreateBreakpoint() argument
478 size_t num_names = func_names.size(); in CreateBreakpoint()
489 new BreakpointResolverName(nullptr, func_names, func_name_type_mask, in CreateBreakpoint()
499 const char *func_names[], size_t num_names, in CreateBreakpoint() argument
518 nullptr, func_names, num_names, func_name_type_mask, language, offset, in CreateBreakpoint()