Lines Matching refs:package
232 int SetUpAbUpdateCommands(const std::string& package, ZipArchiveHandle zip, int status_fd, in SetUpAbUpdateCommands() argument
264 "--payload=file://" + package, in SetUpAbUpdateCommands()
272 int SetUpNonAbUpdateCommands(const std::string& package, ZipArchiveHandle zip, int retry_count, in SetUpNonAbUpdateCommands() argument
309 package, in SetUpNonAbUpdateCommands()
328 static int try_update_binary(const std::string& package, ZipArchiveHandle zip, bool* wipe_cache, in try_update_binary() argument
390 is_ab ? SetUpAbUpdateCommands(package, zip, pipe_write.get(), &args) in try_update_binary()
391 : SetUpNonAbUpdateCommands(package, zip, retry_count, pipe_write.get(), &args); in try_update_binary()
493 LOG(ERROR) << "Error in " << package << " (status " << WEXITSTATUS(status) << ")"; in try_update_binary()
497 LOG(ERROR) << "Error in " << package << " (killed by signal " << WTERMSIG(status) << ")"; in try_update_binary()
595 auto package = Package::CreateMemoryPackage( in really_install_package() local
597 if (!package) { in really_install_package()
603 if (!verify_package(package.get(), ui)) { in really_install_package()
609 ZipArchiveHandle zip = package->GetZipArchiveHandle(); in really_install_package()
717 bool verify_package(Package* package, RecoveryUI* ui) { in verify_package() argument
729 int err = verify_file(package, loaded_keys); in verify_package()