Home
last modified time | relevance | path

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

/packages/services/Car/cpp/bugreport/
Dmain.cpp199 bool copyFile(const std::string& zip_path, int output_socket) { in copyFile() argument
200 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(zip_path.c_str(), O_RDONLY | O_NOFOLLOW))); in copyFile()
202 ALOGE("Failed to open zip file %s.", zip_path.c_str()); in copyFile()
212 ALOGE("Failed to copy zip file %s to the output_socket.", zip_path.c_str()); in copyFile()
221 bool doBugreport(int progress_socket, size_t* out_bytes_written, std::string* zip_path) { in doBugreport() argument
260 processLine(line, zip_path, &last_nonempty_line); in doBugreport()
270 processLine(line, zip_path, &last_nonempty_line); in doBugreport()
272 if (zip_path->empty()) { in doBugreport()
442 void cleanupBugreportFile(const std::string& zip_path) { in cleanupBugreportFile() argument
443 if (unlink(zip_path.c_str()) != 0) { in cleanupBugreportFile()
[all …]
/packages/modules/Virtualization/zipfuse/src/
Dmain.rs387 fn start_fuse(zip_path: &Path, mnt_path: &Path) { in start_fuse()
388 let zip_path = PathBuf::from(zip_path); in start_fuse() localVariable
391 crate::run_fuse(&zip_path, &mnt_path).unwrap(); in start_fuse()
396 fn start_fuse(zip_path: &Path, mnt_path: &Path) { in start_fuse()
402 .arg(format!("/data/local/tmp/zipfuse {} {}", zip_path.display(), mnt_path.display())) in start_fuse()
430 let zip_path = test_dir.path().join("test.zip"); in run_test() localVariable
431 let zip = File::create(&zip_path); in run_test()
444 start_fuse(&zip_path, &mnt_path); in run_test()