Home
last modified time | relevance | path

Searched refs:can_move_objects (Results 1 – 8 of 8) sorted by relevance

/art/runtime/gc/space/
Ddlmalloc_space.cc39 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()
Drosalloc_space.cc50 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()
Ddlmalloc_space.h40 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);
Drosalloc_space.h43 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,
Dmalloc_space.h129 size_t growth_limit, bool can_move_objects) = 0;
152 uint8_t* limit, size_t growth_limit, bool create_bitmaps, bool can_move_objects,
Dmalloc_space.cc40 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/
Dheap.cc548 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()
Dheap.h836 const char* name, bool can_move_objects);