Home
last modified time | relevance | path

Searched refs:NameMatch (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DNameMatches.cpp15 bool lldb_private::NameMatches(llvm::StringRef name, NameMatch match_type, in NameMatches()
18 case NameMatch::Ignore: in NameMatches()
20 case NameMatch::Equals: in NameMatches()
22 case NameMatch::Contains: in NameMatches()
24 case NameMatch::StartsWith: in NameMatches()
26 case NameMatch::EndsWith: in NameMatches()
28 case NameMatch::RegularExpression: { in NameMatches()
H A DProcessInfo.cpp260 if (m_name_match_type == NameMatch::Ignore) in NameMatches()
308 if (m_name_match_type != NameMatch::Ignore) in MatchAllProcesses()
340 m_name_match_type = NameMatch::Ignore; in Clear()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DNameMatches.h15 enum class NameMatch { enum
24 bool NameMatches(llvm::StringRef name, NameMatch match_type,
H A DProcessInfo.h302 NameMatch process_name_match_type) in ProcessInstanceInfoMatch()
316 NameMatch GetNameMatchType() const { return m_name_match_type; } in GetNameMatchType()
318 void SetNameMatchType(NameMatch name_match_type) { in SetNameMatchType()
343 NameMatch m_name_match_type = NameMatch::Ignore;
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp1260 case NameMatch::Ignore: in DoExecute()
1262 case NameMatch::Equals: in DoExecute()
1265 case NameMatch::Contains: in DoExecute()
1268 case NameMatch::StartsWith: in DoExecute()
1271 case NameMatch::EndsWith: in DoExecute()
1274 case NameMatch::RegularExpression: in DoExecute()
1391 match_info.SetNameMatchType(NameMatch::Equals); in SetOptionValue()
1397 match_info.SetNameMatchType(NameMatch::EndsWith); in SetOptionValue()
1403 match_info.SetNameMatchType(NameMatch::StartsWith); in SetOptionValue()
1409 match_info.SetNameMatchType(NameMatch::Contains); in SetOptionValue()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp350 NameMatch name_match = llvm::StringSwitch<NameMatch>(value) in Handle_qfProcessInfo()
351 .Case("equals", NameMatch::Equals) in Handle_qfProcessInfo()
352 .Case("starts_with", NameMatch::StartsWith) in Handle_qfProcessInfo()
353 .Case("ends_with", NameMatch::EndsWith) in Handle_qfProcessInfo()
354 .Case("contains", NameMatch::Contains) in Handle_qfProcessInfo()
355 .Case("regex", NameMatch::RegularExpression) in Handle_qfProcessInfo()
356 .Default(NameMatch::Ignore); in Handle_qfProcessInfo()
358 if (name_match == NameMatch::Ignore) in Handle_qfProcessInfo()
H A DGDBRemoteCommunicationClient.cpp2299 NameMatch name_match_type = match_info.GetNameMatchType(); in FindProcesses()
2301 case NameMatch::Ignore: in FindProcesses()
2305 case NameMatch::Equals: in FindProcesses()
2309 case NameMatch::Contains: in FindProcesses()
2313 case NameMatch::StartsWith: in FindProcesses()
2317 case NameMatch::EndsWith: in FindProcesses()
2321 case NameMatch::RegularExpression: in FindProcesses()
H A DGDBRemoteCommunicationServerLLGS.cpp402 match_info.SetNameMatchType(NameMatch::Equals); in AttachWaitProcess()
/freebsd/contrib/llvm-project/lldb/source/Host/freebsd/
H A DHost.cpp180 match_info_noname.SetNameMatchType(NameMatch::Ignore); in FindProcessesImpl()
/freebsd/contrib/llvm-project/lldb/source/Host/netbsd/
H A DHostNetBSD.cpp206 match_info_noname.SetNameMatchType(NameMatch::Ignore); in FindProcessesImpl()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp3025 match_info.SetNameMatchType(NameMatch::Equals); in Attach()