Lines Matching refs:ArrayObject
41 ArrayObject* dvmAllocArray(ClassObject* arrayClass, size_t length, in dvmAllocArray()
44 ArrayObject* newArray; in dvmAllocArray()
56 size = offsetof(ArrayObject, contents); in dvmAllocArray()
81 ArrayObject* dvmAllocArrayByClass(ClassObject* arrayClass, in dvmAllocArrayByClass()
137 ArrayObject* dvmAllocObjectArray(ClassObject* elemClassObj, size_t length, in dvmAllocObjectArray()
141 ArrayObject* newArray = NULL; in dvmAllocObjectArray()
162 ArrayObject* dvmAllocPrimitiveArray(char type, size_t length, int allocFlags) in dvmAllocPrimitiveArray()
164 ArrayObject* newArray; in dvmAllocPrimitiveArray()
233 ArrayObject* dvmAllocMultiArray(ClassObject* arrayClass, int curDim, in dvmAllocMultiArray()
236 ArrayObject* newArray; in dvmAllocMultiArray()
282 ArrayObject* newSubArray; in dvmAllocMultiArray()
675 bool dvmCopyObjectArray(ArrayObject* dstArray, const ArrayObject* srcArray, in dvmCopyObjectArray()