Lines Matching defs:fp
674 FILE *fp;
679 fp = fopen(fname, "r");
681 if (!fp) {
685 scanRes = fscanf(fp, "%lld", bytes);
687 fclose(fp);
725 FILE *fp;
729 fp = fopen(fname, "w");
731 if (!fp) {
735 fprintf(fp, "%lld\n", bytes);
736 fclose(fp);
991 int BandwidthController::parseForwardChainStats(TetherStats &stats, FILE *fp,
1002 while (NULL != (buffPtr = fgets(lineBuffer, MAX_IPT_OUTPUT_LINE_LEN, fp))) {