Home | History | Annotate | Download | only in back

Lines Matching refs:tagPtr

58     char *tagPtr = strchr(signature, SIGNATURE_END_ARGS);
59 JDI_ASSERT(tagPtr);
60 tagPtr++; /* 1st character after the end of args */
61 return (jbyte)*tagPtr;
67 char *tagPtr = *cursor;
68 jbyte argumentTag = (jbyte)*tagPtr;
70 if (*tagPtr != SIGNATURE_END_ARGS) {
72 while (*tagPtr == JDWP_TAG(ARRAY)) {
73 tagPtr++;
76 if (*tagPtr == JDWP_TAG(OBJECT)) {
77 tagPtr = strchr(tagPtr, SIGNATURE_END_CLASS) + 1;
78 JDI_ASSERT(tagPtr);
81 tagPtr++;
85 *cursor = tagPtr;