Searched defs:arrayId (Results 1 - 2 of 2) sorted by relevance

/dalvik/vm/jdwp/
H A DJdwpHandler.cpp1282 ObjectId arrayId = dvmReadObjectId(&buf); local
1283 ALOGV(" Req for length of array 0x%llx", arrayId);
1285 u4 arrayLength = dvmDbgGetArrayLength(arrayId);
1300 ObjectId arrayId = dvmReadObjectId(&buf); local
1304 u1 tag = dvmDbgGetArrayElementTag(arrayId);
1306 arrayId, firstIndex, length, tag);
1311 if (!dvmDbgOutputArray(arrayId, firstIndex, length, pReply))
1323 ObjectId arrayId = dvmReadObjectId(&buf); local
1328 arrayId, firstIndex, values);
1330 if (!dvmDbgSetArrayElements(arrayId, firstInde
[all...]
/dalvik/vm/
H A DDebugger.cpp902 int dvmDbgGetArrayLength(ObjectId arrayId) argument
904 ArrayObject* arrayObj = (ArrayObject*) objectIdToObject(arrayId);
912 u1 dvmDbgGetArrayElementTag(ObjectId arrayId) argument
914 ArrayObject* arrayObj = (ArrayObject*) objectIdToObject(arrayId);
989 bool dvmDbgOutputArray(ObjectId arrayId, int firstIndex, int count, argument
992 ArrayObject* arrayObj = (ArrayObject*) objectIdToObject(arrayId);
1040 bool dvmDbgSetArrayElements(ObjectId arrayId, int firstIndex, int count, argument
1043 ArrayObject* arrayObj = (ArrayObject*) objectIdToObject(arrayId);

Completed in 29 milliseconds