OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GcSpec
(Results
1 - 2
of
2
) sorted by null
/dalvik/vm/alloc/
Heap.h
22
struct
GcSpec
{
34
extern const
GcSpec
*GC_FOR_MALLOC;
37
extern const
GcSpec
*GC_CONCURRENT;
40
extern const
GcSpec
*GC_EXPLICIT;
43
extern const
GcSpec
*GC_BEFORE_OOM;
87
void dvmCollectGarbageInternal(const
GcSpec
*spec);
Heap.cpp
34
static const
GcSpec
kGcForMallocSpec = {
41
const
GcSpec
*GC_FOR_MALLOC = &kGcForMallocSpec;
43
static const
GcSpec
kGcConcurrentSpec = {
50
const
GcSpec
*GC_CONCURRENT = &kGcConcurrentSpec;
52
static const
GcSpec
kGcExplicitSpec = {
59
const
GcSpec
*GC_EXPLICIT = &kGcExplicitSpec;
61
static const
GcSpec
kGcBeforeOomSpec = {
68
const
GcSpec
*GC_BEFORE_OOM = &kGcBeforeOomSpec;
172
const
GcSpec
*spec = clearSoftReferences ? GC_BEFORE_OOM : GC_FOR_MALLOC;
456
void dvmCollectGarbageInternal(const
GcSpec
* spec
[
all
...]
Completed in 183 milliseconds