Lines Matching refs:fp
1557 FILE *fp; in find_tags() local
1618 FILE *fp; in find_tags() member
1819 fp = NULL; // avoid GCC warning in find_tags()
1878 if ((fp = mch_fopen((char *)tag_fname, "r")) == NULL) in find_tags()
1947 rewind(fp); in find_tags()
1960 vim_fseek(fp, search_info.curr_offset, SEEK_SET); in find_tags()
1961 eof = vim_fgets(lbuf, lbuf_size, fp); in find_tags()
1966 search_info.curr_offset = vim_ftell(fp); in find_tags()
1970 vim_fseek(fp, search_info.low_offset, SEEK_SET); in find_tags()
1973 eof = vim_fgets(lbuf, lbuf_size, fp); in find_tags()
1978 search_info.curr_offset = vim_ftell(fp); in find_tags()
1979 eof = vim_fgets(lbuf, lbuf_size, fp); in find_tags()
1985 search_info.match_offset = vim_ftell(fp); in find_tags()
2005 eof = vim_fgets(lbuf, lbuf_size, fp); in find_tags()
2014 fclose(fp); // end of this file ... in find_tags()
2015 fp = incstack[incstack_idx].fp; in find_tags()
2070 if (!vim_fgets(ebuf, LSIZE, fp)) in find_tags()
2089 incstack[incstack_idx].fp = fp; in find_tags()
2090 fp = NULL; in find_tags()
2098 fp = mch_fopen((char *)fullpath_ebuf, "r"); in find_tags()
2099 if (fp != NULL) in find_tags()
2110 if (fp == NULL) in find_tags()
2114 fp = incstack[incstack_idx].fp; in find_tags()
2207 if (vim_fseek(fp, 0L, SEEK_END) != 0) in find_tags()
2215 filesize = vim_ftell(fp); in find_tags()
2216 vim_fseek(fp, 0L, SEEK_SET); in find_tags()
2331 search_info.curr_offset = vim_ftell(fp); in find_tags()
2372 if ((off_T)vim_ftell(fp) > search_info.match_offset) in find_tags()
2694 semsg(_("Before byte %ld"), (long)vim_ftell(fp)); in find_tags()
2702 fclose(fp); in find_tags()
2707 fclose(incstack[incstack_idx].fp); in find_tags()