Searched defs:init (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/
H A DIndirectRefTable.cpp30 bool IndirectRefTable::init(size_t initialCount, function in class:IndirectRefTable
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 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
/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/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...]

Completed in 524 milliseconds