OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InitiatingLoaderList
(Results
1 - 3
of
3
) sorted by null
/dalvik/vm/oo/
Object.h
29
struct
InitiatingLoaderList
;
283
*
InitiatingLoaderList
is kept in gDvm. Later classes use the structure in
286
struct
InitiatingLoaderList
{
402
InitiatingLoaderList
initiatingLoaderList
;
Class.cpp
438
* If it's NULL, we just fall back to the
InitiatingLoaderList
in the
441
gDvm.
initiatingLoaderList
= (
InitiatingLoaderList
*)
442
calloc(ZYGOTE_CLASS_CUTOFF, sizeof(
InitiatingLoaderList
));
491
free(gDvm.
initiatingLoaderList
);
942
static
InitiatingLoaderList
*dvmGetInitiatingLoaderList(ClassObject* clazz)
946
if (gDvm.
initiatingLoaderList
!= NULL &&
948
return &(gDvm.
initiatingLoaderList
[classIndex]);
950
return &(clazz->
initiatingLoaderList
);
979
const
InitiatingLoaderList
*loaderList
[
all
...]
/dalvik/vm/
Globals.h
202
* their
InitiatingLoaderList
is not used, to promote sharing. The list is
205
InitiatingLoaderList
*
initiatingLoaderList
;
[
all
...]
Completed in 279 milliseconds