Home
last modified time | relevance | path

Searched refs:prop_name (Results 1 – 25 of 46) sorted by relevance

12

/system/libsysprop/srcs/api/
DPlatformProperties-current.txt7 prop_name: "ro.adb.secure"
16 prop_name: "ro.apk_verity.mode"
26 prop_name: "android.car.systemuser.bootuseroverrideid"
32 prop_name: "android.car.systemuser.headless"
39 prop_name: "android.car.number_pre_created_guests"
46 prop_name: "android.car.number_pre_created_users"
52 prop_name: "ro.android.car.trusteddevice.device_name_prefix"
60 prop_name: "sync.contacts.aggregate"
65 prop_name: "debug.cp2.scan_all_packages"
71 prop_name: "contacts.display_photo_size"
[all …]
DPlatformProperties-latest.txt7 prop_name: "ro.adb.secure"
17 prop_name: "android.car.systemuser.bootuseroverrideid"
23 prop_name: "android.car.systemuser.headless"
29 prop_name: "ro.android.car.trusteddevice.device_name_prefix"
37 prop_name: "sync.contacts.aggregate"
42 prop_name: "debug.cp2.scan_all_packages"
48 prop_name: "contacts.display_photo_size"
53 prop_name: "debug.contacts.ksad"
59 prop_name: "contacts.thumbnail_size"
68 prop_name: "ro.crypto.state"
[all …]
/system/libsysprop/srcs/android/sysprop/
DTelephonyProperties.sysprop22 prop_name: "persist.radio.airplane_mode_on"
41 prop_name: "gsm.version.baseband"
50 prop_name: "gsm.version.ril-impl"
66 prop_name: "gsm.operator.alpha"
79 prop_name: "gsm.operator.numeric"
92 prop_name: "operator.ismanual"
106 prop_name: "gsm.operator.isroaming"
121 prop_name: "gsm.operator.iso-country"
134 prop_name: "telephony.lteOnCdmaProductType"
148 prop_name: "telephony.lteOnCdmaDevice"
[all …]
DHdmiProperties.sysprop25 prop_name: "ro.hdmi.device_type"
36 prop_name: "ro.hdmi.cec_device_types"
46 prop_name: "ro.hdmi.cec.source.set_menu_language.enabled"
55 prop_name: "ro.hdmi.cec.audio.arc_port.config"
65 prop_name: "ro.hdmi.cec.audio.system_audio_mode_muting.enabled"
75 prop_name: "ro.hdmi.cec.audio.forward_volume_keys_when_system_audio_mode_off.enabled"
85 prop_name: "ro.hdmi.cec.source.is_switch.enabled."
DCarProperties.sysprop23 prop_name: "android.car.systemuser.headless"
31 prop_name: "android.car.systemuser.bootuseroverrideid"
41 prop_name: "ro.android.car.trusteddevice.device_name_prefix"
50 prop_name: "android.car.number_pre_created_users"
59 prop_name: "android.car.number_pre_created_guests"
DDisplayProperties.sysprop23 prop_name: "debug.egl.force_msaa"
31 prop_name: "debug.egl.trace"
40 prop_name: "debug.force_rtl"
49 prop_name: "debug.layout"
DContactsProperties.sysprop23 prop_name: "sync.contacts.aggregate"
31 prop_name: "debug.cp2.scan_all_packages"
40 prop_name: "contacts.display_photo_size"
57 prop_name: "debug.contacts.ksad"
66 prop_name: "contacts.thumbnail_size"
DVoldProperties.sysprop22 prop_name: "vold.decrypt"
29 prop_name: "vold.encrypt_progress"
36 prop_name: "vold.encrypt_time_remaining"
DTraceProperties.sysprop23 prop_name: "debug.atrace.user_initiated"
32 prop_name: "persist.traced.enable"
DVndkProperties.sysprop24 prop_name: "ro.vndk.version"
33 prop_name: "ro.product.vndk.version"
DCryptoProperties.sysprop25 prop_name: "ro.crypto.type"
35 prop_name: "ro.crypto.state"
DSetupWizardProperties.sysprop22 prop_name: "setupwizard.theme"
31 prop_name: "ro.setupwizard.esim_cid_ignore"
/system/core/healthd/api/
Dcharger_sysprop-current.txt6 prop_name: "ro.charger.disable_init_blank"
12 prop_name: "ro.charger.draw_split_offset"
17 prop_name: "ro.charger.draw_split_screen"
22 prop_name: "ro.charger.enable_suspend"
27 prop_name: "ro.charger.no_ui"
Dcharger_sysprop-latest.txt6 prop_name: "ro.charger.disable_init_blank"
12 prop_name: "ro.charger.draw_split_offset"
17 prop_name: "ro.charger.draw_split_screen"
22 prop_name: "ro.charger.enable_suspend"
27 prop_name: "ro.charger.no_ui"
/system/core/healthd/
Dcharger.sysprop7 prop_name: "ro.charger.draw_split_screen"
14 prop_name: "ro.charger.draw_split_offset"
21 prop_name: "ro.charger.disable_init_blank"
28 prop_name: "ro.charger.enable_suspend"
35 prop_name: "ro.charger.no_ui"
/system/tools/sysprop/
DCommon.cpp137 std::string prop_name = prop.prop_name(); in ValidateProp() local
138 if (prop_name.empty()) prop_name = GenerateDefaultPropName(props, prop); in ValidateProp()
140 if (!IsCorrectPropertyName(prop_name)) { in ValidateProp()
141 return Errorf("Invalid prop name \"{}\"", prop.prop_name()); in ValidateProp()
151 prop.prop_name()); in ValidateProp()
162 if (std::regex_match(prop_name, vendor_regex) || in ValidateProp()
163 std::regex_match(prop_name, odm_regex)) { in ValidateProp()
167 prop_name); in ValidateProp()
171 if (!std::regex_match(prop_name, vendor_regex)) { in ValidateProp()
174 prop_name); in ValidateProp()
[all …]
DTypeChecker.cpp99 std::vector<std::string> prop_names{prop.prop_name()}; in CheckPropertyTypes()
103 for (auto& prop_name : prop_names) { in CheckPropertyTypes() local
105 auto itr = types.find(prop_name); in CheckPropertyTypes()
110 err += "Type of prop '" + prop_name + in CheckPropertyTypes()
DApiChecker.cpp59 auto legacy_itr = legacy_props.find(latest_prop.prop_name()); in CompareProps()
93 if (latest_prop.prop_name() != current_prop.prop_name()) { in CompareProps()
/system/core/init/
Daction_parser.cpp39 bool IsActionableProperty(Subcontext* subcontext, const std::string& prop_name) { in IsActionableProperty() argument
53 if (android::base::StartsWith(prop_name, prefix)) { in IsActionableProperty()
58 return CanReadProperty(subcontext->context(), prop_name); in IsActionableProperty()
64 std::string prop_name(trigger.substr(prop_str.length())); in ParsePropertyTrigger() local
65 size_t equal_pos = prop_name.find('='); in ParsePropertyTrigger()
70 std::string prop_value(prop_name.substr(equal_pos + 1)); in ParsePropertyTrigger()
71 prop_name.erase(equal_pos); in ParsePropertyTrigger()
73 if (!IsActionableProperty(subcontext, prop_name)) { in ParsePropertyTrigger()
74 return Error() << "unexported property trigger found: " << prop_name; in ParsePropertyTrigger()
77 if (auto [it, inserted] = property_triggers->emplace(prop_name, prop_value); !inserted) { in ParsePropertyTrigger()
Dutil.cpp311 std::string prop_name; in ExpandProps() local
320 prop_name = std::string(c, end); in ExpandProps()
322 size_t def = prop_name.find(":-"); in ExpandProps()
323 if (def < prop_name.size()) { in ExpandProps()
324 def_val = prop_name.substr(def + 2); in ExpandProps()
325 prop_name = prop_name.substr(0, def); in ExpandProps()
328 prop_name = c; in ExpandProps()
336 c += prop_name.size(); in ExpandProps()
339 if (prop_name.empty()) { in ExpandProps()
343 std::string prop_val = android::base::GetProperty(prop_name, ""); in ExpandProps()
[all …]
/system/extras/simpleperf/
Dmain.cpp41 std::string prop_name = "security.perf_harden"; in AndroidSecurityCheck() local
42 if (android::base::GetProperty(prop_name, "") != "0") { in AndroidSecurityCheck()
43 if (!android::base::SetProperty(prop_name, "0")) { in AndroidSecurityCheck()
/system/core/init/sysprop/api/
Dcom.android.sysprop.init-current.txt5 prop_name: "init.userspace_reboot.is_supported"
11 prop_name: "sys.init.userspace_reboot.in_progress"
/system/apex/apexd/sysprop/api/
Dcom.android.sysprop.apex-current.txt6 prop_name: "ro.apex.updatable"
Dcom.android.sysprop.apex-latest.txt6 prop_name: "ro.apex.updatable"
/system/core/init/sysprop/
DInitProperties.sysprop24 prop_name: "sys.init.userspace_reboot.in_progress"
34 prop_name: "init.userspace_reboot.is_supported"

12