Searched refs:sCacheFD (Results 1 – 1 of 1) sorted by relevance
/system/bt/btif/co/ |
D | bta_gattc_co.c | 33 static FILE* sCacheFD = 0; variable 43 if (sCacheFD != 0) in cacheClose() 45 fclose(sCacheFD); in cacheClose() 46 sCacheFD = 0; in cacheClose() 56 sCacheFD = fopen(fname, to_save ? "w" : "r"); in cacheOpen() 58 return (sCacheFD != 0); in cacheOpen() 120 if (sCacheFD && (0 == fseek(sCacheFD, start_index * sizeof(tBTA_GATTC_NV_ATTR), SEEK_SET))) in bta_gattc_co_cache_load() 122 num_attr = fread(attr, sizeof(tBTA_GATTC_NV_ATTR), BTA_GATTC_NV_LOAD_MAX, sCacheFD); in bta_gattc_co_cache_load() 127 __FUNCTION__, sCacheFD, start_index, num_attr, status); in bta_gattc_co_cache_load() 153 if (sCacheFD != 0) in bta_gattc_co_cache_save() [all …]
|