MCPcopy Create free account
hub / github.com/apache/brpc / string_vprintf

Function string_vprintf

src/butil/string_printf.cpp:146–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144};
145
146int string_vprintf(std::string* output, const char* format, va_list args) {
147 output->clear();
148 const int rc = string_printf_impl(*output, format, args);
149 if (rc != 0) {
150 output->clear();
151 }
152 return rc;
153};
154
155} // namespace butil

Callers 4

SetFailedMethod · 0.85
StatusMethod · 0.85
set_valueMethod · 0.85
string_printfFunction · 0.85

Calls 2

string_printf_implFunction · 0.85
clearMethod · 0.45

Tested by

no test coverage detected