Lines Matching refs:current_srcfile
42 struct srcfile_state *current_srcfile; /* = NULL */
135 if (current_srcfile)
136 cur_dir = current_srcfile->dir;
183 srcfile->prev = current_srcfile;
188 current_srcfile = srcfile;
196 struct srcfile_state *srcfile = current_srcfile;
200 current_srcfile = srcfile->prev;
212 return current_srcfile ? true : false;
236 pos->file = current_srcfile;
238 pos->first_line = current_srcfile->lineno;
239 pos->first_column = current_srcfile->colno;
243 current_srcfile->lineno++;
244 current_srcfile->colno = 1;
246 current_srcfile->colno++;
249 pos->last_line = current_srcfile->lineno;
250 pos->last_column = current_srcfile->colno;
399 current_srcfile->name = f;
400 current_srcfile->lineno = l;