current_srcfile    42 scripts/dtc/srcpos.c struct srcfile_state *current_srcfile; /* = NULL */
current_srcfile   135 scripts/dtc/srcpos.c 	if (current_srcfile)
current_srcfile   136 scripts/dtc/srcpos.c 		cur_dir = current_srcfile->dir;
current_srcfile   183 scripts/dtc/srcpos.c 	srcfile->prev = current_srcfile;
current_srcfile   188 scripts/dtc/srcpos.c 	current_srcfile = srcfile;
current_srcfile   196 scripts/dtc/srcpos.c 	struct srcfile_state *srcfile = current_srcfile;
current_srcfile   200 scripts/dtc/srcpos.c 	current_srcfile = srcfile->prev;
current_srcfile   212 scripts/dtc/srcpos.c 	return current_srcfile ? true : false;
current_srcfile   236 scripts/dtc/srcpos.c 	pos->file = current_srcfile;
current_srcfile   238 scripts/dtc/srcpos.c 	pos->first_line = current_srcfile->lineno;
current_srcfile   239 scripts/dtc/srcpos.c 	pos->first_column = current_srcfile->colno;
current_srcfile   243 scripts/dtc/srcpos.c 			current_srcfile->lineno++;
current_srcfile   244 scripts/dtc/srcpos.c 			current_srcfile->colno = 1;
current_srcfile   246 scripts/dtc/srcpos.c 			current_srcfile->colno++;
current_srcfile   249 scripts/dtc/srcpos.c 	pos->last_line = current_srcfile->lineno;
current_srcfile   250 scripts/dtc/srcpos.c 	pos->last_column = current_srcfile->colno;
current_srcfile   399 scripts/dtc/srcpos.c 	current_srcfile->name = f;
current_srcfile   400 scripts/dtc/srcpos.c 	current_srcfile->lineno = l;
current_srcfile    22 scripts/dtc/srcpos.h extern struct srcfile_state *current_srcfile; /* = NULL */
current_srcfile    22 scripts/dtc/treesource.c 	yyin = current_srcfile->f;
current_srcfile    23 scripts/dtc/treesource.c 	yylloc.file = current_srcfile;