Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp1151 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 …]
/src/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp343 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()
H A DStream.cpp87 std::string format_str = lldb_private::ansi::FormatAnsiTerminalCodes( in PutCStringColorHighlighted() local
93 Printf(format_str.c_str(), match.size(), match.data()); in PutCStringColorHighlighted()
/src/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h224 Status ExtractVariableInfo(llvm::StringRef &format_str,
/src/contrib/llvm-project/lldb/source/Target/
H A DDynamicRegisterInfo.cpp290 llvm::StringRef format_str; in SetRegisterInfo() local
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()
/src/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()
/src/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp3491 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()