OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LargeObjectBitmap
(Results
1 - 12
of
12
) sorted by null
/art/runtime/gc/accounting/
heap_bitmap.h
49
LargeObjectBitmap
* GetLargeObjectBitmap(const mirror::Object* obj) const;
64
void ReplaceLargeObjectBitmap(
LargeObjectBitmap
* old_bitmap,
LargeObjectBitmap
* new_bitmap)
74
void AddLargeObjectBitmap(
LargeObjectBitmap
* bitmap);
75
void RemoveLargeObjectBitmap(
LargeObjectBitmap
* bitmap);
83
std::vector<
LargeObjectBitmap
*,
84
TrackingAllocator<
LargeObjectBitmap
*, kAllocatorTagHeapBitmapLOS>>
heap_bitmap.cc
35
void HeapBitmap::ReplaceLargeObjectBitmap(
LargeObjectBitmap
* old_bitmap,
36
LargeObjectBitmap
* new_bitmap) {
62
void HeapBitmap::AddLargeObjectBitmap(
LargeObjectBitmap
* bitmap) {
67
void HeapBitmap::RemoveLargeObjectBitmap(
LargeObjectBitmap
* bitmap) {
heap_bitmap-inl.h
108
inline
LargeObjectBitmap
* HeapBitmap::GetLargeObjectBitmap(const mirror::Object* obj) const {
space_bitmap.h
232
typedef SpaceBitmap<kLargeObjectAlignment>
LargeObjectBitmap
;
/art/runtime/gc/space/
space.h
348
accounting::
LargeObjectBitmap
* GetLiveBitmap() const {
352
accounting::
LargeObjectBitmap
* GetMarkBitmap() const {
365
std::unique_ptr<accounting::
LargeObjectBitmap
> live_bitmap_;
366
std::unique_ptr<accounting::
LargeObjectBitmap
> mark_bitmap_;
space.cc
81
live_bitmap_.reset(accounting::
LargeObjectBitmap
::Create("large live objects", nullptr,
84
mark_bitmap_.reset(accounting::
LargeObjectBitmap
::Create("large marked objects", nullptr,
large_object_space.cc
589
accounting::
LargeObjectBitmap
* bitmap = space->GetLiveBitmap();
602
accounting::
LargeObjectBitmap
* live_bitmap = GetLiveBitmap();
603
accounting::
LargeObjectBitmap
* mark_bitmap = GetMarkBitmap();
608
accounting::
LargeObjectBitmap
::SweepWalk(*live_bitmap, *mark_bitmap,
/art/runtime/gc/collector/
garbage_collector.cc
133
accounting::
LargeObjectBitmap
* live_set = space->GetLiveBitmap();
134
accounting::
LargeObjectBitmap
* mark_set = space->GetMarkBitmap();
concurrent_copying.cc
[
all
...]
mark_sweep.cc
[
all
...]
semi_space.cc
407
accounting::
LargeObjectBitmap
* large_live_bitmap = los->GetLiveBitmap();
[
all
...]
/art/runtime/gc/
heap.cc
[
all
...]
Completed in 426 milliseconds