Searched refs:read_bool (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/libauto-186/
H A DEnvironment.cpp90 // read_bool
99 bool Environment::read_bool(const char *var, bool default_value, const char *msg) { function in class:Auto::Environment
135 clear_all_new = read_bool("AUTO_CLEAR_ALL_NEW", false);
136 dirty_all_new = read_bool("AUTO_DIRTY_ALL_NEW", false);
137 print_stats = read_bool("AUTO_PRINT_STATS", false);
138 print_scan_stats = read_bool("AUTO_SCAN_PRINT_STATS", false);
139 unscanned_store_warning = read_bool("AUTO_UNSCANNED_STORE_WARNING", false, "Unscanned store warnings enabled.");
141 guard_pages = read_bool("AUTO_USE_GUARDS", false, "Guard pages are enabled. Application will be slower and use more memory. Buffer overruns in the Auto zone will be caught.");
142 dirty_all_deleted = read_bool("AUTO_DIRTY_ALL_DELETED", false, "Deleted objects will be dirtied by the collector (similar to MallocScribble).") || read_long("MallocScribble", false, "Deleted objects will be dirtied by the collector.");
143 thread_collections = read_bool("AUTO_USE_TL
[all...]
H A DEnvironment.h89 // read_bool
98 static bool read_bool(const char *var, bool default_value = false, const char *msg = NULL);
H A Dauto_zone.cpp771 azone->control.disable_generational = Environment::read_bool("AUTO_DISABLE_GENERATIONAL", false);
774 if (Environment::read_bool("AUTO_LOG_TIMINGS")) azone->control.log |= AUTO_LOG_TIMINGS;
775 if (Environment::read_bool("AUTO_LOG_ALL")) azone->control.log |= AUTO_LOG_ALL;
776 if (Environment::read_bool("AUTO_LOG_COLLECTIONS")) azone->control.log |= AUTO_LOG_COLLECTIONS;
777 if (Environment::read_bool("AUTO_LOG_REGIONS")) azone->control.log |= AUTO_LOG_REGIONS;
778 if (Environment::read_bool("AUTO_LOG_UNUSUAL")) azone->control.log |= AUTO_LOG_UNUSUAL;
779 if (Environment::read_bool("AUTO_LOG_WEAK")) azone->control.log |= AUTO_LOG_WEAK;

Completed in 120 milliseconds