Searched refs:input_path (Results 1 – 2 of 2) sorted by relevance
/bootable/recovery/otautil/ |
D | DirUtil.cpp | 49 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()
|
/bootable/recovery/uncrypt/ |
D | uncrypt.cpp | 465 static int uncrypt(const char* input_path, const char* map_file, const int socket) { in uncrypt() argument 466 LOG(INFO) << "update package is \"" << input_path << "\""; in uncrypt() 471 if (realpath(input_path, path) == nullptr) { in uncrypt() 472 PLOG(ERROR) << "failed to convert \"" << input_path << "\" to absolute path"; in uncrypt() 513 static bool uncrypt_wrapper(const char* input_path, const char* map_file, const int socket) { in uncrypt_wrapper() argument 518 if (input_path == nullptr) { in uncrypt_wrapper() 525 input_path = package.c_str(); in uncrypt_wrapper() 530 int status = uncrypt(input_path, map_file, socket); in uncrypt_wrapper() 622 const char* input_path = nullptr; in main() local 632 input_path = argv[1]; in main() [all …]
|