MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / StringPrintf

Function StringPrintf

Bcore/src/main/cpp/android-base/stringprintf.cpp:68–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66}
67
68std::string StringPrintf(const char* fmt, ...) {
69 va_list ap;
70 va_start(ap, fmt);
71 std::string result;
72 StringAppendV(&result, fmt, ap);
73 va_end(ap);
74 return result;
75}
76
77void StringAppendF(std::string* dst, const char* format, ...) {
78 va_list ap;

Callers 15

PrettyMethodMethod · 0.85
PrettyFieldMethod · 0.85
PrettyTypeMethod · 0.85
dex_file.ccFile · 0.85
CheckHeaderMethod · 0.85
CheckEncodedArrayMethod · 0.85
ErrorStringPrintfMethod · 0.85
CheckFieldAccessFlagsMethod · 0.85
DumpHexMethod · 0.85
DumpHexLEMethod · 0.85
DumpStringMethod · 0.85

Calls 1

StringAppendVFunction · 0.85

Tested by

no test coverage detected