Searched refs:no_ui (Results 1 – 3 of 3) sorted by relevance
/system/vold/ |
D | CryptCommandListener.cpp | 149 static int do_enablecrypto(char* arg2, char* arg4, int type, bool no_ui) { in do_enablecrypto() argument 154 rc = cryptfs_enable_default(arg2, no_ui); in do_enablecrypto() 156 rc = cryptfs_enable(arg2, type, arg4, no_ui); in do_enablecrypto() 210 bool no_ui = false; in runCommand() local 238 no_ui = true; in runCommand() 259 std::thread(&do_enablecrypto, arg2, arg4, type, no_ui).detach(); in runCommand()
|
D | cryptfs.h | 234 int cryptfs_enable(char *flag, int type, char *passwd, int no_ui); 236 int cryptfs_enable_default(char *flag, int no_ui);
|
D | cryptfs.cpp | 2681 int no_ui) in cryptfs_enable_internal() argument 2796 if (!no_ui) { in cryptfs_enable_internal() 2897 if (how == CRYPTO_ENABLE_INPLACE && (!no_ui || rebootEncryption)) { in cryptfs_enable_internal() 3041 int cryptfs_enable(char *howarg, int type, char *passwd, int no_ui) in cryptfs_enable() argument 3043 return cryptfs_enable_internal(howarg, type, passwd, no_ui); in cryptfs_enable() 3046 int cryptfs_enable_default(char *howarg, int no_ui) in cryptfs_enable_default() argument 3049 DEFAULT_PASSWORD, no_ui); in cryptfs_enable_default()
|