Home
last modified time | relevance | path

Searched refs:path_ (Results 1 – 4 of 4) sorted by relevance

/bootable/recovery/install/
Dpackage.cpp54 return path_; in GetPath()
74 std::string path_; member in MemoryPackage
102 return path_; in GetPath()
115 std::string path_; // The physical path to the package. member in FilePackage
155 : map_(std::move(map)), path_(path), zip_handle_(nullptr) { in MemoryPackage()
205 if (auto err = OpenArchiveFromMemory(const_cast<uint8_t*>(addr_), package_size_, path_.c_str(), in GetZipArchiveHandle()
208 LOG(ERROR) << "Can't open package" << path_ << " : " << ErrorCodeString(err); in GetZipArchiveHandle()
217 : fd_(std::move(fd)), package_size_(file_size), path_(path), zip_handle_(nullptr) { in FilePackage()
272 if (auto err = OpenArchiveFd(fd_.get(), path_.c_str(), &zip_handle_, false); err != 0) { in GetZipArchiveHandle()
273 LOG(ERROR) << "Can't open package" << path_ << " : " << ErrorCodeString(err); in GetZipArchiveHandle()
/bootable/recovery/otautil/include/otautil/
Dsysutil.h44 return !path_.empty();
48 return path_; in path()
65 : path_(path), in BlockMapData()
70 std::string path_; variable
/bootable/recovery/updater/
Dtarget_files.cpp109 std::string entry_path = path_ + "/" + std::string(name); in EntryExists()
124 std::string entry_path = path_ + "/" + std::string(name); in ReadEntryToString()
161 std::string entry_path = path_ + "/" + std::string(name); in ExtractEntryToTempFile()
182 if (auto ret = OpenArchive(path_.c_str(), &handle_); ret != 0) { in Open()
183 LOG(ERROR) << "failed to open source target file " << path_ << ": " << ErrorCodeString(ret); in Open()
/bootable/recovery/updater/include/updater/
Dtarget_files.h45 : path_(std::move(path)), extracted_input_(extracted_input) {} in TargetFile()
65 std::string path_; // Path to the zipped target-file or an extracted directory. variable