Home
last modified time | relevance | path

Searched refs:JDWP_TAG (Results 1 – 12 of 12) sorted by relevance

/external/oj-libjdwp/src/share/back/
Dinvoker.c72 while (*tagPtr == JDWP_TAG(ARRAY)) { in nextArgumentTypeTag()
76 if (*tagPtr == JDWP_TAG(OBJECT)) { in nextArgumentTypeTag()
148 if ((argumentTag == JDWP_TAG(OBJECT)) || in createGlobalRefs()
149 (argumentTag == JDWP_TAG(ARRAY))) { in createGlobalRefs()
181 if ((argumentTag == JDWP_TAG(OBJECT)) || in createGlobalRefs()
182 (argumentTag == JDWP_TAG(ARRAY))) { in createGlobalRefs()
226 (returnTypeTag(request->methodSignature) == JDWP_TAG(OBJECT)) || in deletePotentiallySavedGlobalRefs()
227 (returnTypeTag(request->methodSignature) == JDWP_TAG(ARRAY))) { in deletePotentiallySavedGlobalRefs()
258 if ((argumentTag == JDWP_TAG(OBJECT)) || in deleteGlobalArgumentRefs()
259 (argumentTag == JDWP_TAG(ARRAY))) { in deleteGlobalArgumentRefs()
[all …]
DClassTypeImpl.c64 case JDWP_TAG(ARRAY): in readStaticFieldValue()
65 case JDWP_TAG(OBJECT): in readStaticFieldValue()
70 case JDWP_TAG(BYTE): in readStaticFieldValue()
75 case JDWP_TAG(CHAR): in readStaticFieldValue()
80 case JDWP_TAG(FLOAT): in readStaticFieldValue()
85 case JDWP_TAG(DOUBLE): in readStaticFieldValue()
90 case JDWP_TAG(INT): in readStaticFieldValue()
95 case JDWP_TAG(LONG): in readStaticFieldValue()
100 case JDWP_TAG(SHORT): in readStaticFieldValue()
105 case JDWP_TAG(BOOLEAN): in readStaticFieldValue()
DArrayTypeImpl.c152 case JDWP_TAG(BYTE): in writeNewPrimitiveArray()
156 case JDWP_TAG(CHAR): in writeNewPrimitiveArray()
160 case JDWP_TAG(FLOAT): in writeNewPrimitiveArray()
164 case JDWP_TAG(DOUBLE): in writeNewPrimitiveArray()
168 case JDWP_TAG(INT): in writeNewPrimitiveArray()
172 case JDWP_TAG(LONG): in writeNewPrimitiveArray()
176 case JDWP_TAG(SHORT): in writeNewPrimitiveArray()
180 case JDWP_TAG(BOOLEAN): in writeNewPrimitiveArray()
232 if ((componentSignature[0] == JDWP_TAG(OBJECT)) || in newInstance()
233 (componentSignature[0] == JDWP_TAG(ARRAY))) { in newInstance()
DStackFrameImpl.c81 case JDWP_TAG(BYTE): { in writeVariableValue()
89 case JDWP_TAG(CHAR): { in writeVariableValue()
97 case JDWP_TAG(FLOAT): in writeVariableValue()
103 case JDWP_TAG(DOUBLE): in writeVariableValue()
109 case JDWP_TAG(INT): in writeVariableValue()
115 case JDWP_TAG(LONG): in writeVariableValue()
121 case JDWP_TAG(SHORT): { in writeVariableValue()
129 case JDWP_TAG(BOOLEAN):{ in writeVariableValue()
161 case JDWP_TAG(BYTE): in readVariableValue()
167 case JDWP_TAG(CHAR): in readVariableValue()
[all …]
DArrayReferenceImpl.c289 case JDWP_TAG(BYTE): in getValues()
293 case JDWP_TAG(CHAR): in getValues()
297 case JDWP_TAG(FLOAT): in getValues()
301 case JDWP_TAG(DOUBLE): in getValues()
305 case JDWP_TAG(INT): in getValues()
309 case JDWP_TAG(LONG): in getValues()
313 case JDWP_TAG(SHORT): in getValues()
317 case JDWP_TAG(BOOLEAN): in getValues()
525 case JDWP_TAG(OBJECT): in setValues()
526 case JDWP_TAG(ARRAY): in setValues()
[all …]
DObjectReferenceImpl.c77 case JDWP_TAG(ARRAY): in readFieldValue()
78 case JDWP_TAG(OBJECT): in readFieldValue()
83 case JDWP_TAG(BYTE): in readFieldValue()
88 case JDWP_TAG(CHAR): in readFieldValue()
93 case JDWP_TAG(FLOAT): in readFieldValue()
98 case JDWP_TAG(DOUBLE): in readFieldValue()
103 case JDWP_TAG(INT): in readFieldValue()
108 case JDWP_TAG(LONG): in readFieldValue()
113 case JDWP_TAG(SHORT): in readFieldValue()
118 case JDWP_TAG(BOOLEAN): in readFieldValue()
DinStream.c429 case JDWP_TAG(BYTE): in inStream_readValue()
433 case JDWP_TAG(CHAR): in inStream_readValue()
437 case JDWP_TAG(FLOAT): in inStream_readValue()
441 case JDWP_TAG(DOUBLE): in inStream_readValue()
445 case JDWP_TAG(INT): in inStream_readValue()
449 case JDWP_TAG(LONG): in inStream_readValue()
453 case JDWP_TAG(SHORT): in inStream_readValue()
457 case JDWP_TAG(BOOLEAN): in inStream_readValue()
DoutStream.c334 if (typeKey == JDWP_TAG(OBJECT)) { in outStream_writeValue()
343 case JDWP_TAG(BYTE): in outStream_writeValue()
346 case JDWP_TAG(CHAR): in outStream_writeValue()
349 case JDWP_TAG(FLOAT): in outStream_writeValue()
352 case JDWP_TAG(DOUBLE): in outStream_writeValue()
355 case JDWP_TAG(INT): in outStream_writeValue()
358 case JDWP_TAG(LONG): in outStream_writeValue()
361 case JDWP_TAG(SHORT): in outStream_writeValue()
364 case JDWP_TAG(BOOLEAN): in outStream_writeValue()
367 case JDWP_TAG(VOID): /* happens with function return values */ in outStream_writeValue()
Dutil.c315 return (tag == JDWP_TAG(OBJECT)) || in isObjectTag()
316 (tag == JDWP_TAG(STRING)) || in isObjectTag()
317 (tag == JDWP_TAG(THREAD)) || in isObjectTag()
318 (tag == JDWP_TAG(THREAD_GROUP)) || in isObjectTag()
319 (tag == JDWP_TAG(CLASS_LOADER)) || in isObjectTag()
320 (tag == JDWP_TAG(CLASS_OBJECT)) || in isObjectTag()
321 (tag == JDWP_TAG(ARRAY)); in isObjectTag()
328 return JDWP_TAG(OBJECT); in specificTypeKey()
330 return JDWP_TAG(STRING); in specificTypeKey()
332 return JDWP_TAG(THREAD); in specificTypeKey()
[all …]
DThreadReferenceImpl.c600 case JDWP_TAG(VOID): in forceEarlyReturn()
604 case JDWP_TAG(BYTE): in forceEarlyReturn()
610 case JDWP_TAG(CHAR): in forceEarlyReturn()
616 case JDWP_TAG(FLOAT): in forceEarlyReturn()
622 case JDWP_TAG(DOUBLE): in forceEarlyReturn()
628 case JDWP_TAG(INT): in forceEarlyReturn()
634 case JDWP_TAG(LONG): in forceEarlyReturn()
640 case JDWP_TAG(SHORT): in forceEarlyReturn()
646 case JDWP_TAG(BOOLEAN): in forceEarlyReturn()
DJDWP.h51 #define JDWP_TAG(name) \ macro
DeventHelper.c804 if ((sig == JDWP_TAG(ARRAY)) || (sig == JDWP_TAG(OBJECT))) { in saveEventInfoRefs()
857 if ((sig == JDWP_TAG(ARRAY)) || (sig == JDWP_TAG(OBJECT))) { in tossEventInfoRefs()