Lines Matching refs:newObj
1545 Object* newObj = dvmAllocObject(clazz, ALLOC_DONT_TRACK); in AllocObject() local
1546 return addLocalReference(ts.self(), newObj); in AllocObject()
1561 Object* newObj = dvmAllocObject(clazz, ALLOC_DONT_TRACK); in NewObject() local
1562 jobject result = addLocalReference(ts.self(), newObj); in NewObject()
1563 if (newObj != NULL) { in NewObject()
1567 dvmCallMethodV(ts.self(), (Method*) methodID, newObj, true, &unused, args); in NewObject()
1582 Object* newObj = dvmAllocObject(clazz, ALLOC_DONT_TRACK); in NewObjectV() local
1583 jobject result = addLocalReference(ts.self(), newObj); in NewObjectV()
1584 if (newObj != NULL) { in NewObjectV()
1586 dvmCallMethodV(ts.self(), (Method*) methodID, newObj, true, &unused, args); in NewObjectV()
1600 Object* newObj = dvmAllocObject(clazz, ALLOC_DONT_TRACK); in NewObjectA() local
1601 jobject result = addLocalReference(ts.self(), newObj); in NewObjectA()
1602 if (newObj != NULL) { in NewObjectA()
1604 dvmCallMethodA(ts.self(), (Method*) methodID, newObj, true, &unused, args); in NewObjectA()
2275 ArrayObject* newObj = dvmAllocArrayByClass(arrayClass, length, ALLOC_DEFAULT); in NewObjectArray() local
2276 if (newObj == NULL) { in NewObjectArray()
2280 jobjectArray newArray = (jobjectArray) addLocalReference(ts.self(), (Object*) newObj); in NewObjectArray()
2281 dvmReleaseTrackedAlloc((Object*) newObj, NULL); in NewObjectArray()
2288 Object** arrayData = (Object**) (void*) newObj->contents; in NewObjectArray()
2734 Object* newObj = dvmAllocObject(bufferClazz, ALLOC_DONT_TRACK); in NewDirectByteBuffer() local
2735 if (newObj == NULL) { in NewDirectByteBuffer()
2739 jobject result = addLocalReference(ts.self(), newObj); in NewDirectByteBuffer()
2742 newObj, &unused, (jlong) address, (jint) capacity); in NewDirectByteBuffer()