Lines Matching refs:shorty
628 static bool shortyDescMatch(char shorty, const char* descriptor, bool in shortyDescMatch() argument
630 switch (shorty) { in shortyDescMatch()
646 if ((descriptor[0] != shorty) || (descriptor[1] != '\0')) { in shortyDescMatch()
648 shorty, descriptor); in shortyDescMatch()
656 shorty, descriptor); in shortyDescMatch()
662 ALOGE("Bogus shorty: '%c'", shorty); in shortyDescMatch()
673 const char* shorty = in crossVerifyProtoIdItem() local
681 if (!shortyDescMatch(*shorty, in crossVerifyProtoIdItem()
692 shorty++; // Skip the return type. in crossVerifyProtoIdItem()
701 if (*shorty == '\0') { in crossVerifyProtoIdItem()
706 if (!shortyDescMatch(*shorty, desc, false)) { in crossVerifyProtoIdItem()
710 shorty++; in crossVerifyProtoIdItem()
713 if (*shorty != '\0') { in crossVerifyProtoIdItem()