Searched refs:init (Results 1 - 16 of 16) sorted by relevance

/dalvik/vm/alloc/
H A DAlloc.cpp96 Method* init; local
106 init = dvmFindDirectMethodByDescriptor(clazz, "<init>",
108 if (init == NULL) {
129 dvmCallMethod(self, init, obj, &unused, msgStr);
/dalvik/vm/
H A DIndirectRefTable.h309 bool init(size_t initialCount, size_t maxCount, IndirectRefKind kind);
H A DThread.cpp450 u8 startWhen = 0; // init req'd to placate gcc
688 Method* init; local
733 init = dvmFindDirectMethodByDescriptor(gDvm.classJavaLangThread, "<init>",
735 assert(init != NULL);
736 dvmCallMethod(thread, init, threadObj, &unused, groupObj, threadNameStr,
753 init = dvmFindDirectMethodByDescriptor(gDvm.classJavaLangVMThread, "<init>",
755 dvmCallMethod(thread, init, vmThreadObj, &unused, threadObj);
927 * structure but don't call the init functio
[all...]
H A DIndirectRefTable.cpp30 bool IndirectRefTable::init(size_t initialCount, function in class:IndirectRefTable
H A DCheckJni.cpp209 init(env, flags, functionName, true);
215 init(NULL, kFlag_Invocation, functionName, hasMethod);
717 void init(JNIEnv* env, int flags, const char* functionName, bool hasMethod) { function in class:ScopedCheck
H A DJni.cpp174 ALOGD("JNI: bad stack CRC (0x%08x) -- okay during init", stackCrc);
255 if (!gDvm.jniGlobalRefTable.init(kGlobalRefsTableInitialSize,
260 if (!gDvm.jniWeakGlobalRefTable.init(kWeakGlobalRefsTableInitialSize,
955 /* init table on first use */
1210 * We have to use the "no init" version of FindClass here, because we might
1617 * JNI defines <init> as an instance method, but Dalvik considers it a
/dalvik/vm/native/
H A Djava_lang_Class.cpp27 * Determine the class-init-time assertion status of a class. This is
496 Method* init; local
513 ALOGW("Class init failed in newInstance call (%s)",
521 init = dvmFindDirectMethodByDescriptor(clazz, "<init>", "()V");
522 if (init == NULL) {
524 ALOGD("newInstance failed: no <init>()");
547 if (!dvmCheckMethodAccess(callerClass, init)) {
548 ALOGD("newInstance failed: %s.<init>() not accessible to %s",
558 dvmCallMethod(self, init, newOb
[all...]
/dalvik/vm/mterp/x86/
H A DOP_NEW_INSTANCE.S87 jmp common_exceptionThrown # go deal with init exception
/dalvik/vm/test/
H A DTestIndirectRefTable.cpp76 if (!irt.init(kTableMax/2, kTableMax, kIndirectKindGlobal)) {
360 if (!irt.init(kTableMax, kTableMax, kIndirectKindGlobal)) {
/dalvik/vm/arch/arm/
H A DCallEABI.S316 mov r2, #0 @ r2<- word count, init to zero
/dalvik/vm/mterp/out/
H A DInterpAsm-armv5te-vfp.S936 EXPORT_PC() @ req'd for init, resolve, alloc
942 bne .LOP_NEW_INSTANCE_needinit @ no, init class now
7361 * Invoke Object.<init> on an object. In practice we know that
7931 b common_exceptionThrown @ failed, deal with init exception
H A DInterpAsm-armv7-a-neon.S946 EXPORT_PC() @ req'd for init, resolve, alloc
952 bne .LOP_NEW_INSTANCE_needinit @ no, init class now
7319 * Invoke Object.<init> on an object. In practice we know that
7885 b common_exceptionThrown @ failed, deal with init exception
H A DInterpAsm-armv7-a.S946 EXPORT_PC() @ req'd for init, resolve, alloc
952 bne .LOP_NEW_INSTANCE_needinit @ no, init class now
7319 * Invoke Object.<init> on an object. In practice we know that
7885 b common_exceptionThrown @ failed, deal with init exception
H A DInterpAsm-armv5te.S936 EXPORT_PC() @ req'd for init, resolve, alloc
942 bne .LOP_NEW_INSTANCE_needinit @ no, init class now
7683 * Invoke Object.<init> on an object. In practice we know that
8253 b common_exceptionThrown @ failed, deal with init exception
H A DInterpAsm-mips.S1169 EXPORT_PC() # req'd for init, resolve, alloc
1177 bne a1, t0, .LOP_NEW_INSTANCE_needinit # no, init class now
8808 * Invoke Object.<init> on an object. In practice we know that
9321 b common_exceptionThrown # failed, deal with init exception
H A DInterpAsm-x86.S1098 jmp common_exceptionThrown # go deal with init exception

Completed in 2391 milliseconds