Lines Matching refs:clazz
77 ClassObject* clazz; in createStockException() local
81 clazz = dvmFindSystemClass(descriptor); in createStockException()
82 if (clazz == NULL) { in createStockException()
87 init = dvmFindDirectMethodByDescriptor(clazz, "<init>", "()V"); in createStockException()
93 obj = dvmAllocObject(clazz, ALLOC_DEFAULT); in createStockException()
134 Object* dvmAllocObject(ClassObject* clazz, int flags) in dvmAllocObject() argument
138 assert(dvmIsClassInitialized(clazz) || dvmIsClassInitializing(clazz)); in dvmAllocObject()
140 if (IS_CLASS_FLAG_SET(clazz, CLASS_ISFINALIZABLE)) { in dvmAllocObject()
145 newObj = dvmMalloc(clazz->objectSize, flags); in dvmAllocObject()
147 DVM_OBJECT_INIT(newObj, clazz); in dvmAllocObject()
148 LOGVV("AllocObject: %s (%d)\n", clazz->descriptor, in dvmAllocObject()
149 (int) clazz->objectSize); in dvmAllocObject()
153 dvmTrackAllocation(clazz, clazz->objectSize); in dvmAllocObject()
177 assert(obj->clazz != gDvm.classJavaLangClass); in dvmCloneObject()
179 if (IS_CLASS_FLAG_SET(obj->clazz, CLASS_ISFINALIZABLE)) in dvmCloneObject()
192 dvmTrackAllocation(obj->clazz, size); in dvmCloneObject()