HomeSort by relevance Sort by last modified time
    Searched refs:initiatingLoaderList (Results 1 - 3 of 3) sorted by null

  /dalvik/vm/
Globals.h 177 * their InitiatingLoaderList is not used, to promote sharing. The list is
180 InitiatingLoaderList* initiatingLoaderList;
  /dalvik/vm/oo/
Object.h 30 struct InitiatingLoaderList;
42 typedef struct InitiatingLoaderList InitiatingLoaderList;
317 * InitiatingLoaderList is kept in gDvm. Later classes use the structure in
320 struct InitiatingLoaderList {
443 InitiatingLoaderList initiatingLoaderList;
Class.c 337 * If it's NULL, we just fall back to the InitiatingLoaderList in the
340 gDvm.initiatingLoaderList =
341 calloc(ZYGOTE_CLASS_CUTOFF, sizeof(InitiatingLoaderList));
381 free(gDvm.initiatingLoaderList);
834 static InitiatingLoaderList *dvmGetInitiatingLoaderList(ClassObject* clazz)
838 if (gDvm.initiatingLoaderList != NULL &&
840 return &(gDvm.initiatingLoaderList[classIndex]);
842 return &(clazz->initiatingLoaderList);
871 const InitiatingLoaderList *loaderList =
920 InitiatingLoaderList *loaderList = dvmGetInitiatingLoaderList(clazz)
    [all...]

Completed in 20 milliseconds