OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ObjectBytePair
(Results
1 - 10
of
10
) sorted by null
/art/runtime/gc/collector/
garbage_collector.h
37
struct
ObjectBytePair
{
38
ObjectBytePair
(uint64_t num_objects = 0, int64_t num_bytes = 0)
40
void Add(const
ObjectBytePair
& other) {
107
ObjectBytePair
freed_;
108
ObjectBytePair
freed_los_;
170
void RecordFree(const
ObjectBytePair
& freed);
172
void RecordFreeLOS(const
ObjectBytePair
& freed);
garbage_collector.cc
51
freed_ =
ObjectBytePair
();
52
freed_los_ =
ObjectBytePair
();
178
void GarbageCollector::RecordFree(const
ObjectBytePair
& freed) {
182
void GarbageCollector::RecordFreeLOS(const
ObjectBytePair
& freed) {
mark_compact.cc
427
RecordFree(
ObjectBytePair
(objects_freed, bytes_freed));
mark_sweep.cc
[
all
...]
semi_space.cc
254
RecordFree(
ObjectBytePair
(from_objects - to_objects, from_bytes - to_bytes));
[
all
...]
concurrent_copying.cc
[
all
...]
/art/runtime/gc/space/
space.cc
89
collector::
ObjectBytePair
ContinuousMemMapAllocSpace::Sweep(bool swap_bitmaps) {
94
return collector::
ObjectBytePair
(0, 0);
space.h
255
collector::
ObjectBytePair
freed;
441
collector::
ObjectBytePair
Sweep(bool swap_bitmaps);
large_object_space.h
77
collector::
ObjectBytePair
Sweep(bool swap_bitmaps);
large_object_space.cc
593
collector::
ObjectBytePair
LargeObjectSpace::Sweep(bool swap_bitmaps) {
595
return collector::
ObjectBytePair
(0, 0);
Completed in 1163 milliseconds