Home | History | Annotate | Download | only in reflect

Lines Matching refs:pSignature

68  * Find the named class object.  We have to trim "*pSignature" down to just
74 static ClassObject* convertSignaturePartToClass(char** pSignature,
78 char* signature = *pSignature;
94 clazz = dvmFindArrayClass(*pSignature, defClass->classLoader);
103 clazz = dvmFindClassNoInit(*pSignature, defClass->classLoader);
110 ALOGW("Unable to match class for part: '%s'", *pSignature);
112 *pSignature = signature;
119 * The tokenization process may mangle "*pSignature". On return, it will
125 static ArrayObject* convertSignatureToClassArray(char** pSignature,
128 char* signature = *pSignature;
149 LOGVV("REFLECT found %d parameters in '%s'", count, *pSignature);
169 *pSignature = cp;