MCPcopy Create free account
hub / github.com/apache/impala / StringPrintf

Function StringPrintf

be/src/gutil/stringprintf.cc:74–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72
73
74string StringPrintf(const char* format, ...) {
75 va_list ap;
76 va_start(ap, format);
77 string result;
78 StringAppendV(&result, format, ap);
79 va_end(ap);
80 return result;
81}
82
83const string& SStringPrintf(string* dst, const char* format, ...) {
84 va_list ap;

Callers 15

ParseMessageFunction · 0.85
ValidateConnHeaderFunction · 0.85
StateNameMethod · 0.85
ReactorMethod · 0.85
BuildMetricsStringMethod · 0.85
ToStringMethod · 0.85
TEST_PFunction · 0.85
FindBestOpMethod · 0.85
DoEncryptVFunction · 0.85
DoDecryptVFunction · 0.85
FormatTimestampForLogFunction · 0.85

Calls 1

StringAppendVFunction · 0.85

Tested by 5

BuildMetricsStringMethod · 0.68
SubscribersHandlerMethod · 0.68