OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UNCRYPT_STATUS
(Results
1 - 2
of
2
) sorted by null
/bootable/recovery/uncrypt/
uncrypt.cpp
136
static const std::string
UNCRYPT_STATUS
= "/cache/recovery/
uncrypt_status
";
508
"uncrypt_error: %d\n", error_code),
UNCRYPT_STATUS
)) {
509
PLOG(WARNING) << "failed to write to " <<
UNCRYPT_STATUS
;
538
if (!android::base::WriteStringToFile(uncrypt_message,
UNCRYPT_STATUS
)) {
539
PLOG(WARNING) << "failed to write to " <<
UNCRYPT_STATUS
;
546
if (!android::base::WriteStringToFile(uncrypt_message,
UNCRYPT_STATUS
)) {
547
PLOG(WARNING) << "failed to write to " <<
UNCRYPT_STATUS
;
/bootable/recovery/
install.cpp
657
// Skip logging the
uncrypt_status
on devices without /cache.
659
static constexpr const char*
UNCRYPT_STATUS
= "/cache/recovery/
uncrypt_status
";
660
if (ensure_path_mounted(
UNCRYPT_STATUS
) != 0) {
661
LOG(WARNING) << "Can't mount " <<
UNCRYPT_STATUS
;
663
std::string
uncrypt_status
;
local
664
if (!android::base::ReadFileToString(
UNCRYPT_STATUS
, &
uncrypt_status
)) {
666
} else if (!android::base::StartsWith(
uncrypt_status
, "uncrypt_")) {
667
LOG(WARNING) << "corrupted
uncrypt_status
: " << uncrypt_status
[
all
...]
Completed in 486 milliseconds