Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file_verifier.h60 bool CheckShortyDescriptorMatch(char shorty_char, const char* descriptor, bool is_return_type);
Ddex_file_verifier.cc241 bool DexFileVerifier::CheckShortyDescriptorMatch(char shorty_char, const char* descriptor, in CheckShortyDescriptorMatch() argument
243 switch (shorty_char) { in CheckShortyDescriptorMatch()
258 if (UNLIKELY((descriptor[0] != shorty_char) || (descriptor[1] != '\0'))) { in CheckShortyDescriptorMatch()
260 shorty_char, descriptor); in CheckShortyDescriptorMatch()
266 ErrorStringPrintf("Shorty vs. type mismatch: '%c', '%s'", shorty_char, descriptor); in CheckShortyDescriptorMatch()
271 ErrorStringPrintf("Bad shorty character: '%c'", shorty_char); in CheckShortyDescriptorMatch()