/system/update_engine/ |
D | hardware_android.cc | 30 using android::base::GetBoolProperty; 81 return GetBoolProperty("ro.secure", true); in IsOfficialBuild() 89 return !GetBoolProperty("ro.debuggable", false); in IsNormalBootMode() 204 return GetBoolProperty("ro.ota.allow_downgrade", false) && in AllowDowngrade() 205 GetBoolProperty("ro.debuggable", false); in AllowDowngrade()
|
D | cleanup_previous_update_action.cc | 33 using android::base::GetBoolProperty; 133 !android::base::GetBoolProperty(kBootCompletedProp, false)) { in WaitBootCompletedOrSchedule() 342 if (GetBoolProperty("ro.gsid.image_running", false)) { in InitiateMergeAndWait()
|
/system/core/logd/ |
D | main.cpp | 65 using android::base::GetBoolProperty; 87 if (!GetBoolProperty("ro.debuggable", false)) { in DropPrivs() 119 GetBoolProperty("ro.debuggable", false) && !GetBoolProperty("ro.config.low_ram", false); in GetBoolPropertyEngSvelteDefault() 121 return GetBoolProperty(name, default_value); in GetBoolPropertyEngSvelteDefault() 262 bool auditd = GetBoolProperty("ro.logd.auditd", true); in main() 320 int dmesg_fd = GetBoolProperty("ro.logd.auditd.dmesg", true) ? fdDmesg : -1; in main()
|
/system/core/fs_mgr/libfs_avb/tests/ |
D | fs_avb_device_test.cpp | 63 if (android::base::GetBoolProperty("ro.boot.dynamic_partitions", false) && in TEST() 64 !android::base::GetBoolProperty("ro.boot.dynamic_partitions_retrofit", false)) { in TEST() 102 if (android::base::GetBoolProperty("ro.boot.dynamic_partitions", false) && in TEST() 103 !android::base::GetBoolProperty("ro.boot.dynamic_partitions_retrofit", false)) { in TEST()
|
/system/apex/apexd/ |
D | apexd_prop.cpp | 26 using android::base::GetBoolProperty; 35 while (!GetBoolProperty("sys.boot_completed", false)) { in waitForBootStatus()
|
/system/core/fs_mgr/liblp/include/liblp/ |
D | property_fetcher.h | 28 virtual bool GetBoolProperty(const std::string& key, bool defaultValue) = 0; 38 bool GetBoolProperty(const std::string& key, bool defaultValue) override;
|
D | mock_property_fetcher.h | 30 MOCK_METHOD2(GetBoolProperty, bool(const std::string&, bool)); 39 ON_CALL(*this, GetBoolProperty(_, _)).WillByDefault(Invoke([](const auto&, auto def) { in MockPropertyFetcher()
|
/system/core/fs_mgr/liblp/ |
D | property_fetcher.cpp | 30 bool PropertyFetcher::GetBoolProperty(const std::string& key, bool default_value) { in GetBoolProperty() function in android::fs_mgr::PropertyFetcher 31 return android::base::GetBoolProperty(key, default_value); in GetBoolProperty()
|
D | device_test.cpp | 38 if (!IPropertyFetcher::GetInstance()->GetBoolProperty("ro.boot.dynamic_partitions", in SetUp() 69 if (IPropertyFetcher::GetInstance()->GetBoolProperty("ro.boot.dynamic_partitions_retrofit", in TEST_F()
|
/system/core/liblog/tests/ |
D | log_read_test.cpp | 33 using android::base::GetBoolProperty; 60 if (name == "kernel" && !GetBoolProperty("ro.logd.kernel", false)) { in TEST()
|
/system/libhidl/base/ |
D | HidlInternal.cpp | 69 bool enableCoverage = base::GetBoolProperty(kSysPropHalCoverage, false); in HidlInstrumentor() 76 if (base::GetBoolProperty("ro.vts.coverage", false)) { in HidlInstrumentor() 84 const bool enableCoverage = base::GetBoolProperty(kSysPropHalCoverage, false); in HidlInstrumentor() 113 mEnableInstrumentation = base::GetBoolProperty("hal.instrumentation.enable", false); in configureInstrumentation()
|
/system/core/llkd/tests/ |
D | llkd_test.cpp | 73 android::base::GetBoolProperty("ro.debuggable", false)) { in llkdSleepPeriod() 76 default_enable = android::base::GetBoolProperty(LLK_ENABLE_PROPERTY, default_enable); in llkdSleepPeriod() 112 android::base::GetBoolProperty("ro.debuggable", false)) { in llkdSleepPeriod() 115 default_enable = android::base::GetBoolProperty(LLK_ENABLE_PROPERTY, default_enable); in llkdSleepPeriod() 170 if (android::base::GetBoolProperty(LLK_KILLTEST_PROPERTY, LLK_KILLTEST_DEFAULT)) { in checkKill() 305 if (!android::base::GetBoolProperty("ro.debuggable", false)) { in TEST()
|
/system/vold/fs/ |
D | Ext4.cpp | 175 android::base::GetBoolProperty("external_storage.casefold.enabled", false); in Format() 176 bool needs_projid = android::base::GetBoolProperty("external_storage.projid.enabled", false); in Format() 184 if (android::base::GetBoolProperty("vold.has_quota", false)) { in Format()
|
D | F2fs.cpp | 80 if (android::base::GetBoolProperty("vold.has_quota", false)) { in Format() 88 if (android::base::GetBoolProperty("vold.has_compress", false)) { in Format()
|
/system/core/fs_mgr/libsnapshot/include_test/libsnapshot/ |
D | test_helpers.h | 121 ON_CALL(*this, GetBoolProperty("ro.boot.dynamic_partitions", _)) in SnapshotTestPropertyFetcher() 123 ON_CALL(*this, GetBoolProperty("ro.boot.dynamic_partitions_retrofit", _)) in SnapshotTestPropertyFetcher() 125 ON_CALL(*this, GetBoolProperty("ro.virtual_ab.enabled", _)).WillByDefault(Return(true)); in SnapshotTestPropertyFetcher()
|
/system/core/fs_mgr/ |
D | fs_mgr_format.cpp | 169 needs_casefold = android::base::GetBoolProperty("external_storage.casefold.enabled", false); in fs_mgr_do_format() 170 needs_projid = android::base::GetBoolProperty("external_storage.projid.enabled", false); in fs_mgr_do_format()
|
/system/linkerconfig/contents/common/ |
D | system_links.cc | 45 const bool debuggable = android::base::GetBoolProperty("ro.debuggable", false); in AddStandardSystemLinks()
|
/system/libvintf/ |
D | PropertyFetcher.cpp | 52 return android::base::GetBoolProperty(key, defaultValue); in getBoolProperty()
|
/system/core/init/ |
D | action_parser.cpp | 31 using android::base::GetBoolProperty; 40 static bool enabled = GetBoolProperty("ro.actionable_compatible_property.enabled", false); in IsActionableProperty()
|
/system/core/adb/daemon/ |
D | transport_qemu.cpp | 135 if (android::base::GetBoolProperty("ro.kernel.qemu", false)) { in use_qemu_goldfish()
|
D | main.cpp | 76 bool ro_secure = android::base::GetBoolProperty("ro.secure", true); in should_drop_privileges() 209 auth_required = android::base::GetBoolProperty("ro.adb.secure", false); in adbd_main()
|
/system/security/fsverity_init/ |
D | fsverity_init.cpp | 78 if (!android::base::GetBoolProperty("ro.debuggable", false)) { in main()
|
/system/iorap/src/iorapd/ |
D | main.cc | 52 if (android::base::GetBoolProperty("iorapd.log.verbose", iorap::kIsDebugBuild)) { in main()
|
/system/vold/ |
D | main.cpp | 100 if (android::base::GetBoolProperty("vold.debug", false)) { in main() 265 android::base::GetBoolProperty("vold.debug.default_primary", false)) { in process_config()
|
/system/libbase/include/android-base/ |
D | properties.h | 37 bool GetBoolProperty(const std::string& key, bool default_value);
|