/art/runtime/gc/space/ |
dlmalloc_space.h | 40 bool can_move_objects); 47 size_t capacity, byte* requested_begin, bool can_move_objects); 112 bool can_move_objects); 132 byte* limit, size_t growth_limit, bool can_move_objects, size_t starting_size,
|
dlmalloc_space.cc | 40 bool can_move_objects, size_t starting_size, 42 : MallocSpace(name, mem_map, begin, end, limit, growth_limit, true, can_move_objects, 51 bool can_move_objects) { 70 can_move_objects, starting_size); 73 can_move_objects, starting_size, initial_size); 79 bool can_move_objects) { 103 growth_limit, capacity, can_move_objects); 154 bool can_move_objects) { 156 can_move_objects, starting_size_, initial_size_);
|
rosalloc_space.cc | 46 byte* limit, size_t growth_limit, bool can_move_objects, 48 : MallocSpace(name, mem_map, begin, end, limit, growth_limit, true, can_move_objects, 57 bool low_memory_mode, bool can_move_objects) { 80 can_move_objects, starting_size, initial_size, low_memory_mode); 90 bool low_memory_mode, bool can_move_objects) { 116 can_move_objects); 168 bool can_move_objects) { 170 begin, end, limit, growth_limit, can_move_objects, starting_size_,
|
rosalloc_space.h | 43 bool can_move_objects); 47 bool low_memory_mode, bool can_move_objects); 97 bool can_move_objects) OVERRIDE; 129 byte* begin, byte* end, byte* limit, size_t growth_limit, bool can_move_objects,
|
valgrind_malloc_space.h | 51 size_t initial_size, bool can_move_objects, size_t starting_size);
|
malloc_space.h | 119 bool can_move_objects) = 0; 142 byte* limit, size_t growth_limit, bool create_bitmaps, bool can_move_objects,
|
valgrind_malloc_space-inl.h | 99 bool can_move_objects, size_t starting_size) : 100 S(name, mem_map, allocator, begin, end, limit, growth_limit, can_move_objects, starting_size,
|
malloc_space.cc | 40 bool create_bitmaps, bool can_move_objects, size_t starting_size, 44 growth_limit_(growth_limit), can_move_objects_(can_move_objects),
|
/art/runtime/gc/ |
heap.cc | 469 const char* name, bool can_move_objects) { 475 low_memory_mode_, can_move_objects); 479 can_move_objects); 495 bool can_move_objects = IsMovingGc(background_collector_type_) != local 501 if (kCompactZygote && Runtime::Current()->IsZygote() && !can_move_objects) { 505 can_move_objects = !have_zygote_space_ && foreground_collector_type_ != kCollectorTypeGSS; 512 can_move_objects); [all...] |
heap.h | 740 const char* name, bool can_move_objects); [all...] |