Searched refs:can_move_objects (Results 1 – 8 of 8) sorted by relevance
/art/runtime/gc/space/ |
D | dlmalloc_space.cc | 41 size_t growth_limit, bool can_move_objects, size_t starting_size) in DlMallocSpace() argument 42 : MallocSpace(name, mem_map, begin, end, limit, growth_limit, true, can_move_objects, in DlMallocSpace() 51 bool can_move_objects) { in CreateFromMemMap() argument 70 can_move_objects, starting_size); in CreateFromMemMap() 73 growth_limit, can_move_objects, starting_size); in CreateFromMemMap() 79 bool can_move_objects) { in Create() argument 103 growth_limit, capacity, can_move_objects); in Create() 156 bool can_move_objects) { in CreateInstance() argument 160 can_move_objects, starting_size_); in CreateInstance() 163 growth_limit, can_move_objects, starting_size_); in CreateInstance()
|
D | rosalloc_space.cc | 47 uint8_t* limit, size_t growth_limit, bool can_move_objects, in RosAllocSpace() argument 49 : MallocSpace(name, mem_map, begin, end, limit, growth_limit, true, can_move_objects, in RosAllocSpace() 58 bool low_memory_mode, bool can_move_objects) { in CreateFromMemMap() argument 83 can_move_objects, starting_size, low_memory_mode); in CreateFromMemMap() 86 growth_limit, can_move_objects, starting_size, low_memory_mode); in CreateFromMemMap() 96 bool low_memory_mode, bool can_move_objects) { in Create() argument 122 can_move_objects); in Create() 179 bool can_move_objects) { in CreateInstance() argument 183 limit, growth_limit, can_move_objects, starting_size_, low_memory_mode_); in CreateInstance() 187 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; 152 size_t growth_limit, bool can_move_objects, size_t starting_size,
|
D | malloc_space.h | 128 size_t growth_limit, bool can_move_objects) = 0; 151 uint8_t* limit, size_t growth_limit, bool create_bitmaps, bool can_move_objects,
|
D | malloc_space.cc | 44 bool create_bitmaps, bool can_move_objects, size_t starting_size, in MallocSpace() argument 48 growth_limit_(growth_limit), can_move_objects_(can_move_objects), in MallocSpace()
|
/art/runtime/gc/ |
D | heap.cc | 663 bool can_move_objects) { in CreateMallocSpaceFromMemMap() argument 669 low_memory_mode_, can_move_objects); in CreateMallocSpaceFromMemMap() 673 can_move_objects); in CreateMallocSpaceFromMemMap() 689 bool can_move_objects = IsMovingGc(background_collector_type_) != in CreateMainMallocSpace() local 695 if (kCompactZygote && Runtime::Current()->IsZygote() && !can_move_objects) { in CreateMainMallocSpace() 699 can_move_objects = !HasZygoteSpace() && foreground_collector_type_ != kCollectorTypeGSS; in CreateMainMallocSpace() 706 can_move_objects); in CreateMainMallocSpace()
|
D | heap.h | 1000 bool can_move_objects);
|