Home
last modified time | relevance | path

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

/system/core/healthd/api/
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.cpp2141 int cryptfs_enable_internal(int crypt_type, const char* passwd, int no_ui) { in cryptfs_enable_internal() argument
2226 if (!no_ui) { in cryptfs_enable_internal()
2326 if (!no_ui || rebootEncryption) { in cryptfs_enable_internal()
2427 int cryptfs_enable(int type, const char* passwd, int no_ui) { in cryptfs_enable() argument
2428 return cryptfs_enable_internal(type, passwd, no_ui); in cryptfs_enable()
2431 int cryptfs_enable_default(int no_ui) { in cryptfs_enable_default() argument
2432 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()