Home
last modified time | relevance | path

Searched refs:shorty_char (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Ddex_file_verifier.h44 bool CheckShortyDescriptorMatch(char shorty_char, const char* descriptor, bool is_return_type);
Ddex_file_verifier.cc137 bool DexFileVerifier::CheckShortyDescriptorMatch(char shorty_char, const char* descriptor, in CheckShortyDescriptorMatch() argument
139 switch (shorty_char) { in CheckShortyDescriptorMatch()
154 if (UNLIKELY((descriptor[0] != shorty_char) || (descriptor[1] != '\0'))) { in CheckShortyDescriptorMatch()
156 shorty_char, descriptor); in CheckShortyDescriptorMatch()
162 ErrorStringPrintf("Shorty vs. type mismatch: '%c', '%s'", shorty_char, descriptor); in CheckShortyDescriptorMatch()
167 ErrorStringPrintf("Bad shorty character: '%c'", shorty_char); in CheckShortyDescriptorMatch()