Searched refs:filler_path (Results 1 – 1 of 1) sorted by relevance
194 Result<bool> ZeroFiller(const std::string& file_path, const std::string& filler_path) { in ZeroFiller() argument203 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() local223 if (auto ret = ZeroFiller(file_path, filler_path); !ret.ok()) { in MakePayload()226 image_files.push_back(filler_path); in MakePayload()