Home
last modified time | relevance | path

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

/bootable/recovery/otafault/
Dota_io.cpp77 FILE* fh = fopen(path, mode); in ota_fopen() local
79 filename_cache[(intptr_t)fh] = path; in ota_fopen()
80 return fh; in ota_fopen()
98 static int __ota_fclose(FILE* fh) { in __ota_fclose() argument
100 filename_cache.erase(reinterpret_cast<intptr_t>(fh)); in __ota_fclose()
101 return fclose(fh); in __ota_fclose()
108 int ota_fclose(unique_file& fh) { in ota_fclose() argument
109 return __ota_fclose(fh.release()); in ota_fclose()
/bootable/recovery/otafault/include/otafault/
Dota_io.h68 int ota_fclose(unique_file& fh);