Home
last modified time | relevance | path

Searched refs:format_str (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp1299 bool FormatEntity::FormatStringRef(const llvm::StringRef &format_str, Stream &s, in FormatStringRef() argument
1305 if (!format_str.empty()) { in FormatStringRef()
1307 Status error = FormatEntity::Parse(format_str, root); in FormatStringRef()
2047 static Status ParseEntry(const llvm::StringRef &format_str, in ParseEntry() argument
2051 const size_t sep_pos = format_str.find_first_of(".[:"); in ParseEntry()
2053 (sep_pos == llvm::StringRef::npos) ? '\0' : format_str[sep_pos]; in ParseEntry()
2054 llvm::StringRef key = format_str.substr(0, sep_pos); in ParseEntry()
2063 format_str.substr(sep_pos + (entry_def->keep_separator ? 0 : 1)); in ParseEntry()
2066 entry.string = format_str.str(); in ParseEntry()
2133 static const Definition *FindEntry(const llvm::StringRef &format_str, in FindEntry() argument
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp355 llvm::SmallString<12> format_str; in WriteHeader() local
356 llvm::raw_svector_ostream format_os(format_str); in WriteHeader()
358 OS << llvm::formatv(format_str.c_str(), thread_name); in WriteHeader()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h240 Status ExtractVariableInfo(llvm::StringRef &format_str,
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DDynamicRegisterInfo.cpp288 llvm::StringRef format_str; in SetRegisterInfo() local
289 if (reg_info_dict->GetValueForKeyAsString("format", format_str, nullptr)) { in SetRegisterInfo()
290 if (OptionArgParser::ToFormat(format_str.str().c_str(), reg_info.format, in SetRegisterInfo()
/freebsd/sbin/camcontrol/
H A Dcamcontrol.c4309 const char *format_str; in readdefects() local
4311 format_str = scsi_nv_to_str(defect_list_type_map, in readdefects()
4316 format_str ? format_str : "unknown"); in readdefects()
4318 format_str = scsi_nv_to_str(defect_list_type_map, in readdefects()
4321 if (format_str != NULL) { in readdefects()
4323 format_str); in readdefects()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp3620 const char *format_str = DEBUGSERVER_BASENAME " died with signal {0}"; in MonitorDebugserverProcess() local
3622 stream.Format(format_str, signal_name); in MonitorDebugserverProcess()
3624 stream.Format(format_str, signo); in MonitorDebugserverProcess()