Lines Matching defs:fp
49 FILE *fp = fopen(pathBuf, "r");
50 if (fp == NULL) {
54 if (fseek(fp, 0, SEEK_END) != HDF_SUCCESS) {
56 (void)fclose(fp);
59 int32_t jsonStrSize = ftell(fp);
62 (void)fclose(fp);
65 rewind(fp);
68 (void)fclose(fp);
74 (void)fclose(fp);
77 if (fread(pJsonStr, jsonStrSize, 1, fp) != 1) {
80 (void)fclose(fp);
83 (void)fclose(fp);