Searched refs:fh (Results 1 – 2 of 2) sorted by relevance
77 FILE* fh = fopen(path, mode); in ota_fopen() local79 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() argument100 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() argument109 return __ota_fclose(fh.release()); in ota_fclose()
68 int ota_fclose(unique_file& fh);