Home
last modified time | relevance | path

Searched refs:no_ui (Results 1 – 6 of 6) sorted by relevance

/system/core/healthd/api/
Dcharger_sysprop-current.txt25 api_name: "no_ui"
27 prop_name: "ro.charger.no_ui"
Dcharger_sysprop-latest.txt25 api_name: "no_ui"
27 prop_name: "ro.charger.no_ui"
/system/vold/
Dcryptfs.h65 int cryptfs_enable(int type, const char* passwd, int no_ui);
67 int cryptfs_enable_default(int no_ui);
Dcryptfs.cpp2116 int cryptfs_enable_internal(int crypt_type, const char* passwd, int no_ui) { in cryptfs_enable_internal() argument
2213 if (!no_ui) { in cryptfs_enable_internal()
2313 if (!no_ui || rebootEncryption) { in cryptfs_enable_internal()
2445 int cryptfs_enable(int type, const char* passwd, int no_ui) { in cryptfs_enable() argument
2446 return cryptfs_enable_internal(type, passwd, no_ui); in cryptfs_enable()
2449 int cryptfs_enable_default(int no_ui) { in cryptfs_enable_default() argument
2450 return cryptfs_enable_internal(CRYPT_TYPE_DEFAULT, DEFAULT_PASSWORD, no_ui); in cryptfs_enable_default()
/system/core/healthd/
Dcharger.sysprop33 api_name: "no_ui"
35 prop_name: "ro.charger.no_ui"
Dcharger.cpp29 if (CHARGER_FORCE_NO_UI || android::sysprop::ChargerProperties::no_ui().value_or(false)) { in main()