Lines Matching refs:clazz
77 ClassObject* clazz; in createStockException() local
82 clazz = dvmFindSystemClass(descriptor); in createStockException()
83 if (clazz == NULL) { in createStockException()
88 init = dvmFindDirectMethodByDescriptor(clazz, "<init>", in createStockException()
95 obj = dvmAllocObject(clazz, ALLOC_DEFAULT); in createStockException()
162 Object* dvmAllocObject(ClassObject* clazz, int flags) in dvmAllocObject() argument
166 assert(dvmIsClassInitialized(clazz) || dvmIsClassInitializing(clazz)); in dvmAllocObject()
168 if (IS_CLASS_FLAG_SET(clazz, CLASS_ISFINALIZABLE)) { in dvmAllocObject()
173 newObj = dvmMalloc(clazz->objectSize, flags); in dvmAllocObject()
175 DVM_OBJECT_INIT(newObj, clazz); in dvmAllocObject()
176 LOGVV("AllocObject: %s (%d)\n", clazz->descriptor, in dvmAllocObject()
177 (int) clazz->objectSize); in dvmAllocObject()
181 dvmTrackAllocation(clazz, clazz->objectSize); in dvmAllocObject()
205 assert(obj->clazz != gDvm.classJavaLangClass); in dvmCloneObject()
207 if (IS_CLASS_FLAG_SET(obj->clazz, CLASS_ISFINALIZABLE)) in dvmCloneObject()
220 dvmTrackAllocation(obj->clazz, size); in dvmCloneObject()