Searched refs:dest_fp (Results 1 – 2 of 2) sorted by relevance
/bootable/recovery/ |
D | recovery-persist.cpp | 65 FILE* dest_fp = fopen(destination, "we"); in copy_file() local 66 if (dest_fp == nullptr) { in copy_file() 74 fwrite(buf, 1, bytes, dest_fp); in copy_file() 78 check_and_fclose(dest_fp, destination); in copy_file()
|
/bootable/recovery/otautil/ |
D | logging.cpp | 183 FILE* dest_fp = fopen_path(destination, append ? "ae" : "we", sehandle); in copy_log_file() local 184 if (dest_fp == nullptr) { in copy_log_file() 195 fwrite(buf, 1, bytes, dest_fp); in copy_log_file() 202 check_and_fclose(dest_fp, destination); in copy_log_file()
|