/art/runtime/gc/space/ |
D | dlmalloc_space.cc | 39 size_t growth_limit, bool can_move_objects, size_t starting_size) in DlMallocSpace() argument 40 : MallocSpace(name, mem_map, begin, end, limit, growth_limit, true, can_move_objects, in DlMallocSpace() 49 bool can_move_objects) { in CreateFromMemMap() argument 68 can_move_objects, starting_size); in CreateFromMemMap() 71 growth_limit, can_move_objects, starting_size); in CreateFromMemMap() 77 bool can_move_objects) { in Create() argument 101 growth_limit, capacity, can_move_objects); in Create() 154 bool can_move_objects) { in CreateInstance() argument 158 can_move_objects, starting_size_); in CreateInstance() 161 growth_limit, can_move_objects, starting_size_); in CreateInstance()
|
D | rosalloc_space.cc | 50 uint8_t* limit, size_t growth_limit, bool can_move_objects, in RosAllocSpace() argument 52 : MallocSpace(name, mem_map, begin, end, limit, growth_limit, true, can_move_objects, in RosAllocSpace() 61 bool low_memory_mode, bool can_move_objects) { in CreateFromMemMap() argument 86 can_move_objects, starting_size, low_memory_mode); in CreateFromMemMap() 89 growth_limit, can_move_objects, starting_size, low_memory_mode); in CreateFromMemMap() 99 bool low_memory_mode, bool can_move_objects) { in Create() argument 125 can_move_objects); in Create() 182 bool can_move_objects) { in CreateInstance() argument 186 limit, growth_limit, can_move_objects, starting_size_, low_memory_mode_); in CreateInstance() 190 growth_limit, can_move_objects, starting_size_, low_memory_mode_); in CreateInstance()
|
D | dlmalloc_space.h | 40 bool can_move_objects); 47 size_t capacity, uint8_t* requested_begin, bool can_move_objects); 123 bool can_move_objects); 144 bool can_move_objects, size_t starting_size);
|
D | rosalloc_space.h | 43 bool can_move_objects); 47 bool low_memory_mode, bool can_move_objects); 116 bool can_move_objects) OVERRIDE; 150 size_t growth_limit, bool can_move_objects, size_t starting_size,
|
D | malloc_space.h | 129 size_t growth_limit, bool can_move_objects) = 0; 152 uint8_t* limit, size_t growth_limit, bool create_bitmaps, bool can_move_objects,
|
D | malloc_space.cc | 40 bool create_bitmaps, bool can_move_objects, size_t starting_size, in MallocSpace() argument 44 growth_limit_(growth_limit), can_move_objects_(can_move_objects), in MallocSpace()
|
/art/runtime/gc/ |
D | heap.cc | 548 const char* name, bool can_move_objects) { in CreateMallocSpaceFromMemMap() argument 554 low_memory_mode_, can_move_objects); in CreateMallocSpaceFromMemMap() 558 can_move_objects); in CreateMallocSpaceFromMemMap() 574 bool can_move_objects = IsMovingGc(background_collector_type_) != in CreateMainMallocSpace() local 580 if (kCompactZygote && Runtime::Current()->IsZygote() && !can_move_objects) { in CreateMainMallocSpace() 584 can_move_objects = !HasZygoteSpace() && foreground_collector_type_ != kCollectorTypeGSS; in CreateMainMallocSpace() 591 can_move_objects); in CreateMainMallocSpace()
|
D | heap.h | 836 const char* name, bool can_move_objects);
|