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

Method ErrorStringPrintf

Bcore/src/main/cpp/dex/dex_file_verifier.cc:2882–2889  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2880}
2881
2882void DexFileVerifier::ErrorStringPrintf(const char* fmt, ...) {
2883 va_list ap;
2884 va_start(ap, fmt);
2885 DCHECK(failure_reason_.empty()) << failure_reason_;
2886 failure_reason_ = StringPrintf("Failure to verify dex file '%s': ", location_);
2887 StringAppendV(&failure_reason_, fmt, ap);
2888 va_end(ap);
2889}
2890
2891// Fields and methods may have only one of public/protected/private.
2892static bool CheckAtMostOneOfPublicProtectedPrivate(uint32_t flags) {

Callers

nothing calls this directly

Calls 3

StringPrintfFunction · 0.85
StringAppendVFunction · 0.85
emptyMethod · 0.45

Tested by

no test coverage detected