Home
last modified time | relevance | path

Searched refs:input_path (Results 1 – 2 of 2) sorted by relevance

/bootable/recovery/uncrypt/
Duncrypt.cpp469 static int Uncrypt(const std::string& input_path, const std::string& map_file, int socket) { in Uncrypt() argument
470 LOG(INFO) << "update package is \"" << input_path << "\""; in Uncrypt()
475 if (!android::base::Realpath(input_path, &path)) { in Uncrypt()
476 PLOG(ERROR) << "Failed to convert \"" << input_path << "\" to absolute path"; in Uncrypt()
514 static bool uncrypt_wrapper(const char* input_path, const char* map_file, const int socket) { in uncrypt_wrapper() argument
519 if (input_path == nullptr) { in uncrypt_wrapper()
526 input_path = package.c_str(); in uncrypt_wrapper()
531 int status = Uncrypt(input_path, map_file, socket); in uncrypt_wrapper()
623 const char* input_path = nullptr; in main() local
633 input_path = argv[1]; in main()
[all …]
/bootable/recovery/otautil/
Ddirutil.cpp49 int mkdir_recursively(const std::string& input_path, mode_t mode, bool strip_filename, in mkdir_recursively() argument
52 if (input_path.empty()) { in mkdir_recursively()
58 std::string path = input_path; in mkdir_recursively()