Home | History | Annotate | Download | only in vm

Lines Matching defs:init

450     u8 startWhen = 0;       // init req'd to placate gcc
688 Method* init;
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 function (which allocs storage).
929 if (!thread->jniLocalRefTable.init(kJniLocalRefMin,
1701 /* thread could be in any state now (except early init states) */
1781 Method* init;
1878 init = dvmFindDirectMethodByDescriptor(gDvm.classJavaLangThread, "<init>",
1880 if (init == NULL) {
1897 dvmCallMethod(self, init, threadObj, &unused, (Object*)pArgs->group,
2438 u8 startWhen = 0; // init req'd to placate gcc