Searched refs:enabled (Results 1 - 18 of 18) sorted by relevance

/art/libartbase/base/
H A Druntime_debug.cc52 void SetRuntimeDebugFlagsEnabledImpl(bool enabled) { argument
53 gSlowEnabled = enabled;
55 *flag_ptr = enabled;
68 void SetRuntimeDebugFlagsEnabled(bool enabled) { argument
70 SetRuntimeDebugFlagsEnabledImpl(enabled);
H A Druntime_debug.h48 static_assert(!C::x, "Unexpected enabled flag in release build");
57 void SetRuntimeDebugFlagsEnabled(bool enabled);
/art/runtime/jit/
H A Dprofile_saver_options.h49 bool enabled,
61 : enabled_(enabled),
77 void SetEnabled(bool enabled) { argument
78 enabled_ = enabled;
48 ProfileSaverOptions( bool enabled, uint32_t min_save_period_ms, uint32_t save_resolved_classes_delay_ms, uint32_t hot_startup_method_samples, uint32_t min_methods_to_save, uint32_t min_classes_to_save, uint32_t min_notification_before_wake, uint32_t max_notification_before_wake, const std::string& profile_path, bool profile_boot_class_path, bool profile_aot_code = false, bool wait_for_jit_notifications_to_save = true) argument
/art/runtime/
H A Djni_env_ext.cc117 void JNIEnvExt::SetCheckJniEnabled(bool enabled) { argument
118 check_jni_ = enabled;
120 functions = GetFunctionTable(enabled);
122 if (enabled && JNIEnvExt::table_override_ != nullptr) {
H A Djava_vm_ext.h88 // If both "-Xcheck:jni" and "-Xjnitrace:" are enabled, we print trace messages
129 bool SetCheckJniEnabled(bool enabled);
246 // read barrier enabled.
H A Djni_env_ext.h56 void SetCheckJniEnabled(bool enabled) REQUIRES(!Locks::jni_function_table_lock_);
H A Dthread.h958 void SetWeakRefAccessEnabled(bool enabled) { argument
960 tls32_.weak_ref_access_enabled = enabled;
1777 bool enabled = true)
1779 : enabled_(enabled) {
H A Djava_vm_ext.cc561 // Fast where no tracing is enabled.
698 bool JavaVMExt::SetCheckJniEnabled(bool enabled) { argument
700 check_jni_ = enabled;
701 functions = enabled ? GetCheckJniInvokeInterface() : unchecked_functions_;
H A Ddebugger.h679 static void SetAllocTrackingEnabled(bool enabled) REQUIRES(!Locks::alloc_tracker_lock_);
/art/test/913-heaps/src/art/
H A DTest913.java665 HashSet<String> enabled = new HashSet<>();
667 enabled.add(additionalEnabledReferrer);
670 enabled.add("0@0");
677 enabled.add(referree);
679 // Check that the referrer is enabled (may be visited).
680 if (!enabled.contains(referrer)) {
681 System.out.println("Referrer " + referrer + " not enabled: " + l);
685 enabled.add(referree);
/art/dexlayout/
H A Dcompact_dex_writer.h40 // if not enabled, Dedupe will always return kDidNotDedupe.
41 explicit Deduper(bool enabled, DexContainer::Section* section);
H A Dcompact_dex_writer.cc213 CompactDexWriter::Deduper::Deduper(bool enabled, DexContainer::Section* section) argument
214 : enabled_(enabled),
/art/compiler/debug/dwarf/
H A Ddebug_frame_opcode_writer.h300 explicit DebugFrameOpCodeWriter(bool enabled = true,
309 SetEnabled(enabled);
/art/test/
H A DAndroid.run-test.mk30 # Add d8 dependency, if enabled.
/art/runtime/gc/
H A Dallocation_record.h211 // Caller needs to check that it is enabled before calling since we read the stack trace before
212 // checking the enabled boolean.
219 static void SetAllocTrackingEnabled(bool enabled) REQUIRES(!Locks::alloc_tracker_lock_);
251 // Allocation tracking could be enabled by user in between DisallowNewAllocationRecords() and
H A Dheap.h145 // Whether or not parallel GC is enabled. If not, then we never create the thread pool.
454 // Returns true if low memory mode is enabled.
781 void SetAllocTrackingEnabled(bool enabled) REQUIRES(Locks::alloc_tracker_lock_) {
782 alloc_tracking_enabled_.StoreRelaxed(enabled);
1105 // A space where non-movable objects are allocated, when compaction is enabled it contains
1344 // The current state of heap verification, may be enabled or disabled.
/art/runtime/mirror/
H A Dclass-inl.h939 inline void Class::SetSlowPath(bool enabled) { argument
940 SetFieldBoolean<false, false>(GetSlowPathFlagOffset(), enabled); local
H A Dclass.h1219 void SetSlowPath(bool enabled) REQUIRES_SHARED(Locks::mutator_lock_);

Completed in 427 milliseconds