OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CollectorType
(Results
1 - 13
of
13
) sorted by null
/art/runtime/gc/
collector_type.h
26
enum
CollectorType
{
55
std::ostream& operator<<(std::ostream& os, const
CollectorType
& collector_type);
57
static constexpr
CollectorType
kCollectorTypeDefault =
scoped_gc_critical_section.h
35
ScopedGCCriticalSection(Thread* self, GcCause cause,
CollectorType
collector_type)
scoped_gc_critical_section.cc
29
CollectorType
collector_type)
heap.h
167
CollectorType
foreground_collector_type,
168
CollectorType
background_collector_type,
253
void TransitionCollector(
CollectorType
collector_type) REQUIRES(!*gc_complete_lock_);
256
void ChangeCollector(
CollectorType
collector_type)
701
CollectorType
CurrentCollectorType() {
728
bool MayUseCollector(
CollectorType
type) const;
799
void StartGC(Thread* self, GcCause cause,
CollectorType
collector_type)
824
static bool IsMovingGc(
CollectorType
collector_type) {
[
all
...]
heap.cc
138
CollectorType
foreground_collector_type,
139
CollectorType
background_collector_type,
651
bool Heap::MayUseCollector(
CollectorType
type) const {
[
all
...]
/art/cmdline/
cmdline_types.h
444
static gc::
CollectorType
ParseCollectorType(const std::string& option) {
465
gc::
CollectorType
collector_type_ = kUseReadBarrier ?
487
gc::
CollectorType
collector_type = ParseCollectorType(gc_option);
539
gc::
CollectorType
background_collector_type_;
541
BackgroundGcOption(gc::
CollectorType
background_collector_type) // NOLINT [runtime/explicit] [5]
551
operator gc::
CollectorType
() const { return background_collector_type_; }
562
gc::
CollectorType
collector_type = ParseCollectorType(substring);
cmdline_parser_test.cc
315
option_all_true.collector_type_ = gc::
CollectorType
::kCollectorTypeCMS;
332
option_all_false.collector_type_ = gc::
CollectorType
::kCollectorTypeMS;
/art/runtime/gc/collector/
garbage_collector.h
143
virtual
CollectorType
GetCollectorType() const = 0;
mark_compact.h
77
virtual
CollectorType
GetCollectorType() const OVERRIDE {
semi_space.h
79
virtual
CollectorType
GetCollectorType() const OVERRIDE {
concurrent_copying.h
77
virtual
CollectorType
GetCollectorType() const OVERRIDE {
mark_sweep.h
80
virtual
CollectorType
GetCollectorType() const OVERRIDE {
/art/runtime/
parsed_options.cc
518
gc::
CollectorType
background_collector_type_;
519
gc::
CollectorType
collector_type_ = (XGcOption{}).collector_type_; // NOLINT [whitespace/braces] [5]
Completed in 3241 milliseconds