Searched refs:dest_fp (Results 1 – 2 of 2) sorted by relevance
/bootable/recovery/ |
D | recovery-persist.cpp | 63 FILE* dest_fp = fopen(destination, "we"); in copy_file() local 64 if (dest_fp == nullptr) { in copy_file() 72 fwrite(buf, 1, bytes, dest_fp); in copy_file() 76 check_and_fclose(dest_fp, destination); in copy_file()
|
/bootable/recovery/recovery_utils/ |
D | logging.cpp | 182 FILE* dest_fp = fopen_path(destination, append ? "ae" : "we", logging_sehandle); in copy_log_file() local 183 if (dest_fp == nullptr) { in copy_log_file() 194 fwrite(buf, 1, bytes, dest_fp); in copy_log_file() 201 check_and_fclose(dest_fp, destination); in copy_log_file()
|