Searched refs:zip_path (Results 1 – 1 of 1) sorted by relevance
/packages/services/Car/car-bugreportd/ |
D | main.cpp | 198 bool copyFile(const std::string& zip_path, int output_socket) { in copyFile() argument 199 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(zip_path.c_str(), O_RDONLY))); in copyFile() 201 ALOGE("Failed to open zip file %s.", zip_path.c_str()); in copyFile() 211 ALOGE("Failed to copy zip file %s to the output_socket.", zip_path.c_str()); in copyFile() 220 bool doBugreport(int progress_socket, size_t* out_bytes_written, std::string* zip_path) { in doBugreport() argument 259 processLine(line, zip_path, &last_nonempty_line); in doBugreport() 269 processLine(line, zip_path, &last_nonempty_line); in doBugreport() 271 if (zip_path->empty()) { in doBugreport() 441 void cleanupBugreportFile(const std::string& zip_path) { in cleanupBugreportFile() argument 442 if (unlink(zip_path.c_str()) != 0) { in cleanupBugreportFile() [all …]
|