Home
last modified time | relevance | path

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

/packages/modules/Virtualization/microdroid/payload/
Dmk_payload.cc194 Result<bool> ZeroFiller(const std::string& file_path, const std::string& filler_path) { in ZeroFiller() argument
203 unique_fd fd(TEMP_FAILURE_RETRY(open(filler_path.c_str(), O_CREAT | O_WRONLY | O_TRUNC, 0600))); in ZeroFiller()
205 return ErrnoError() << "open(" << filler_path << ") failed."; in ZeroFiller()
208 return ErrnoError() << "ftruncate(" << filler_path << ") failed."; in ZeroFiller()
221 std::string filler_path = in MakePayload() local
223 if (auto ret = ZeroFiller(file_path, filler_path); !ret.ok()) { in MakePayload()
226 image_files.push_back(filler_path); in MakePayload()