Searched defs:shorty (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/arch/generic/
H A DCall.cpp76 const u4* argv, const char* shorty, void* func, JValue* pReturn)
103 retType = getFfiType(*shorty);
104 while ((sigByte = *++shorty) != '\0') {
75 dvmPlatformInvoke(void* pEnv, ClassObject* clazz, int argInfo, int argc, const u4* argv, const char* shorty, void* func, JValue* pReturn) argument
/dalvik/libdex/
H A DDexProto.cpp227 const char* shorty = dexProtoGetShorty(pProto); local
231 shorty++;
234 switch (*(shorty++)) {
H A DDexSwapVerify.cpp625 /* Helper for crossVerifyProtoIdItem(), which checks a shorty character
628 static bool shortyDescMatch(char shorty, const char* descriptor, bool argument
630 switch (shorty) {
646 if ((descriptor[0] != shorty) || (descriptor[1] != '\0')) {
648 shorty, descriptor);
656 shorty, descriptor);
662 ALOGE("Bogus shorty: '%c'", shorty);
673 const char* shorty = local
681 if (!shortyDescMatch(*shorty,
[all...]
/dalvik/vm/oo/
H A DObject.h528 const char* shorty; member in struct:Method
560 * bridge avoid scanning the shorty for direct pointers that need to be
/dalvik/vm/
H A DJni.cpp807 const char* cp = method->shorty;
888 const char* desc = &method->shorty[1];
919 char returnType = method->shorty[0];
1082 if (method->shorty[0] == 'L' && !dvmCheckException(self) && pResult->l != NULL) {
1098 // method->clazz->descriptor, method->name, method->shorty);
1117 const char* shorty = &method->shorty[1]; /* skip return type */ local
1118 while (*shorty != '\0') {
1119 switch (*shorty++) {
1154 method->jniArgInfo, method->insSize, modArgs, method->shorty,
[all...]

Completed in 122 milliseconds