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

/dalvik/vm/alloc/
H A DAlloc.cpp99 Method* init; local
109 init = dvmFindDirectMethodByDescriptor(clazz, "<init>",
111 if (init == NULL) {
132 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);
720 void init(JNIEnv* env, int flags, const char* functionName, bool hasMethod) { function in class:ScopedCheck
H A DInit.cpp528 * This must only be called from the main thread during zygote init.
1025 /* nothing to do now -- was handled during JNI init */
1389 ALOGV("VM init args (%d):", argc);
1612 * If we get this wrong, we will blow up in the ThreadGroup class init if
1628 JniConstants::init(pEnv);
1752 * Do non-zygote-mode initialization. This is done during VM init for
1793 ALOGD("JDWP init failed; continuing anyway");
H A DJni.cpp180 ALOGD("JNI: bad stack CRC (0x%08x) -- okay during init", stackCrc);
259 if (!gDvm.jniGlobalRefTable.init(kGlobalRefsTableInitialSize,
264 if (!gDvm.jniWeakGlobalRefTable.init(kWeakGlobalRefsTableInitialSize,
959 /* init table on first use */
1214 * We have to use the "no init" version of FindClass here, because we might
1621 * 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 443 milliseconds