Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lldb/include/lldb/Core/ModuleList.h
Original file line number Diff line number Diff line change
Expand Up @@ -326,11 +326,11 @@ class ModuleList {
void FindGlobalVariables(const RegularExpression &regex, size_t max_matches,
VariableList &variable_list) const;

/// Finds the first module whose file specification matches \a file_spec.
/// Finds modules whose file specification matches \a module_spec.
///
/// \param[in] module_spec
/// A file specification object to match against the Module's
/// file specifications. If \a file_spec does not have
/// file specifications. If \a module_spec does not have
/// directory information, matches will occur by matching only
/// the basename of any modules in this list. If this value is
/// NULL, then file specifications won't be compared when
Expand All @@ -351,6 +351,7 @@ class ModuleList {
// UUID values is very efficient and accurate.
lldb::ModuleSP FindModule(const UUID &uuid) const;

/// Finds the first module whose file specification matches \a module_spec.
lldb::ModuleSP FindFirstModule(const ModuleSpec &module_spec) const;

void FindSymbolsWithNameAndType(ConstString name,
Expand Down