Searched refs:format_str (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | FormatEntity.cpp | 1151 bool FormatEntity::FormatStringRef(const llvm::StringRef &format_str, Stream &s, in FormatStringRef() argument 1157 if (!format_str.empty()) { in FormatStringRef() 1159 Status error = FormatEntity::Parse(format_str, root); in FormatStringRef() 1175 llvm::StringRef format_str(format); in FormatCString() local 1176 Status error = FormatEntity::Parse(format_str, root); in FormatCString() 1919 static Status ParseEntry(const llvm::StringRef &format_str, in ParseEntry() argument 1923 const size_t sep_pos = format_str.find_first_of(".[:"); in ParseEntry() 1925 (sep_pos == llvm::StringRef::npos) ? '\0' : format_str[sep_pos]; in ParseEntry() 1926 llvm::StringRef key = format_str.substr(0, sep_pos); in ParseEntry() 1935 format_str.substr(sep_pos + (entry_def->keep_separator ? 0 : 1)); in ParseEntry() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Log.cpp | 343 llvm::SmallString<12> format_str; in WriteHeader() local 344 llvm::raw_svector_ostream format_os(format_str); in WriteHeader() 346 OS << llvm::formatv(format_str.c_str(), thread_name); in WriteHeader()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | DynamicRegisterInfo.cpp | 290 llvm::StringRef format_str; in SetRegisterInfo() 291 if (reg_info_dict->GetValueForKeyAsString("format", format_str, nullptr)) { in SetRegisterInfo() 292 if (OptionArgParser::ToFormat(format_str.str().c_str(), reg_info.format, in SetRegisterInfo() 286 llvm::StringRef format_str; SetRegisterInfo() local
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | FormatEntity.h | 224 Status ExtractVariableInfo(llvm::StringRef &format_str,
|
/freebsd/sbin/camcontrol/ |
H A D | camcontrol.c | 4278 const char *format_str; in readdefects() 4280 format_str = scsi_nv_to_str(defect_list_type_map, in readdefects() 4285 format_str ? format_str : "unknown"); in readdefects() 4287 format_str = scsi_nv_to_str(defect_list_type_map, in readdefects() 4290 if (format_str != NULL) { in readdefects() 4292 format_str); in readdefects() 4288 const char *format_str; readdefects() local
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | ProcessGDBRemote.cpp | 3491 const char *format_str = DEBUGSERVER_BASENAME " died with signal {0}"; in MonitorDebugserverProcess() local 3493 stream.Format(format_str, signal_name); in MonitorDebugserverProcess() 3495 stream.Format(format_str, signo); in MonitorDebugserverProcess()
|