Lines Matching refs:file
130 /* Returned upon end-of-file. */
156 /* Special action meaning "start processing a new file". */
272 * just pointing zconfin at a new input file.
316 YY_BUFFER_STATE zconf_create_buffer (FILE *file,int size );
324 static void zconf_init_buffer (YY_BUFFER_STATE b,FILE *file );
794 struct file *file;
1044 while ( 1 ) /* loops until end-of-file is reached */
1105 current_pos.file = current_file;
1362 /* We're scanning a new file or input source. It's
1485 * EOB_ACT_END_OF_FILE - end of file
1824 * @param file A readable stream.
1829 YY_BUFFER_STATE zconf_create_buffer (FILE * file, int size )
1848 zconf_init_buffer(b,file );
1876 static void zconf_init_buffer (YY_BUFFER_STATE b, FILE * file )
1883 b->yy_input_file = file;
2330 * Try to open specified file with following names:
2335 * Return NULL if file is not found.
2357 printf("can't find file %s\n", name);
2370 struct file *iter;
2371 struct file *file = file_lookup(name);
2376 zconfin = zconf_fopen(file->name);
2378 printf("%s:%d: can't open file \"%s\"\n",
2379 zconf_curname(), zconf_lineno(), file->name);
2389 "Inclusion path:\n current file : '%s'\n",
2405 file->lineno = 1;
2406 file->parent = current_file;
2407 current_file = file;
2433 return current_pos.file ? current_pos.file->name : "<none>";