Searched refs:yyin (Results 1 - 25 of 68) sorted by relevance

123

/freebsd-10.3-release/contrib/binutils/binutils/
H A Ddlltool.h41 extern FILE *yyin;
/freebsd-10.3-release/contrib/ipfilter/tools/
H A Dlex_var.h23 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
27 if ( c == EOF && ferror( yyin ) ) \
32 else if ( ((result = fread( buf, 1, 1, yyin )) == 0) \
33 && ferror( yyin ) ) \
41 getc(yyin)) == 10 ? (pos++, yylineno++, yytchar) : \
50 getc(yyin)) == 10 ? (pos++, yylineno++, yytchar) : \
H A Dlexer.h33 extern FILE *yyin;
H A Dlexer.c27 FILE *yyin; variable
82 c = fgetc(yyin);
84 c = fgetc(yyin);
87 c = fgetc(yyin);
729 yyin = stdin;
/freebsd-10.3-release/contrib/one-true-awk/
H A Dmain.c46 extern FILE *yyin; /* lex input file */
79 yyin = NULL;
194 if (yyin == NULL) {
198 yyin = stdin;
199 else if ((yyin = fopen(pfile[curpfile], "r")) == NULL)
203 if ((c = getc(yyin)) != EOF)
205 if (yyin != stdin)
206 fclose(yyin);
207 yyin = NULL;
/freebsd-10.3-release/usr.sbin/kbdcontrol/
H A Dlex.h70 extern FILE *yyin;
/freebsd-10.3-release/crypto/heimdal/lib/asn1/
H A Dmain.c40 extern FILE *yyin;
117 yyin = stdin;
120 yyin = fopen (file, "r");
121 if (yyin == NULL)
195 fclose(yyin);
H A Dlex.c137 #define YY_NEW_FILE yyrestart(yyin )
162 extern FILE *yyin, *yyout;
244 * just pointing yyin at a new input file.
282 * instead of setting up a fresh yyin. A bit of a hack ...
315 yy_create_buffer(yyin,YY_BUF_SIZE ); \
325 yy_create_buffer(yyin,YY_BUF_SIZE ); \
336 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; variable
952 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
956 if ( c == EOF && ferror( yyin ) ) \
963 while ( (result = fread(buf, 1, max_size, yyin))
[all...]
/freebsd-10.3-release/usr.sbin/autofs/
H A Dcommon.c67 extern FILE *yyin;
308 yyin = auto_popen(AUTO_INCLUDE_PATH, n->n_key + 1, NULL);
309 assert(yyin != NULL);
317 error = auto_pclose(yyin);
318 yyin = NULL;
912 linelen = getline(&line, &linecap, yyin);
971 yyin = auto_popen(path, key, NULL);
972 assert(yyin != NULL);
980 error = auto_pclose(yyin);
981 yyin
[all...]
/freebsd-10.3-release/contrib/ncurses/ncurses/tinfo/
H A Dcomp_scan.c110 static FILE *yyin; /* scanner's input file descriptor */ variable
126 yyin = fp;
171 if (!yyin) {
211 _nc_curr_file_pos = ftell(yyin);
213 if (fgets(result + used, (int) (allocated - used), yyin) != 0) {
278 return (yyin ? ftell(yyin) : (bufptr ? bufptr - bufstart : 0));
285 return ((yyin ? feof(yyin) : (bufptr && *bufptr == '\0'))
380 yyin
[all...]
/freebsd-10.3-release/crypto/heimdal/lib/com_err/
H A Dlex.c137 #define YY_NEW_FILE yyrestart(yyin )
162 extern FILE *yyin, *yyout;
244 * just pointing yyin at a new input file.
282 * instead of setting up a fresh yyin. A bit of a hack ...
315 yy_create_buffer(yyin,YY_BUF_SIZE ); \
325 yy_create_buffer(yyin,YY_BUF_SIZE ); \
336 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; variable
629 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
633 if ( c == EOF && ferror( yyin ) ) \
640 while ( (result = fread(buf, 1, max_size, yyin))
[all...]
H A Dcompile_et.c46 extern FILE *yyin;
220 yyin = fopen(filename, "r");
221 if(yyin == NULL)
/freebsd-10.3-release/crypto/heimdal/lib/sl/
H A Dslc-lex.c137 #define YY_NEW_FILE yyrestart(yyin )
162 extern FILE *yyin, *yyout;
244 * just pointing yyin at a new input file.
282 * instead of setting up a fresh yyin. A bit of a hack ...
315 yy_create_buffer(yyin,YY_BUF_SIZE ); \
325 yy_create_buffer(yyin,YY_BUF_SIZE ); \
336 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; variable
608 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
612 if ( c == EOF && ferror( yyin ) ) \
619 while ( (result = fread(buf, 1, max_size, yyin))
[all...]
/freebsd-10.3-release/usr.bin/csup/
H A Dlex.rcs.c128 #define yyin yyg->yyin_r macro
154 #define YY_NEW_FILE rcsrestart(yyin ,yyscanner )
257 * just pointing yyin at a new input file.
308 rcs_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
318 rcs_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
706 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
710 if ( c == EOF && ferror( yyin ) ) \
717 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
725 clearerr(yyin); \
[all...]
/freebsd-10.3-release/usr.bin/iscsictl/
H A Dparse.y45 extern FILE *yyin;
319 yyin = fopen(path, "r");
320 if (yyin == NULL)
324 yyrestart(yyin);
327 fclose(yyin);
/freebsd-10.3-release/contrib/com_err/
H A Dcompile_et.c46 extern FILE *yyin;
220 yyin = fopen(filename, "r");
221 if(yyin == NULL)
/freebsd-10.3-release/contrib/dtc/
H A Ddtc-lexer.l270 yyin = current_srcfile->f;
274 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
289 yyin = current_srcfile->f;
/freebsd-10.3-release/contrib/ofed/libsdp/src/
H A Dconfig_scanner.c11 #define yyin libsdp_yyin macro
110 #define YY_NEW_FILE yyrestart( yyin )
120 extern FILE *yyin, *yyout;
223 * just pointing yyin at a new input file.
251 * instead of setting up a fresh yyin. A bit of a hack ...
278 yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
285 yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
292 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; variable
641 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
645 if ( c == EOF && ferror( yyin ) ) \
[all...]
/freebsd-10.3-release/contrib/unbound/util/
H A Dconfigyyrename.h43 #define yyin ub_c_in macro
/freebsd-10.3-release/usr.bin/lex/
H A Dinitscan.c150 #define YY_NEW_FILE yyrestart(yyin )
175 extern FILE *yyin, *yyout;
257 * just pointing yyin at a new input file.
296 * instead of setting up a fresh yyin. A bit of a hack ...
329 yy_create_buffer(yyin,YY_BUF_SIZE ); \
339 yy_create_buffer(yyin,YY_BUF_SIZE ); \
350 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; variable
2125 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
2129 if ( c == EOF && ferror( yyin ) ) \
2136 while ( (result = fread(buf, 1, max_size, yyin))
[all...]
/freebsd-10.3-release/sys/contrib/dev/acpica/compiler/
H A Daslsupport.l209 fclose (yyin);
260 Fnode->File = yyin;
286 yyin = InputFile;
/freebsd-10.3-release/usr.bin/xlint/lint1/
H A Dmain1.c188 if ((yyin = fopen(argv[0], "r")) == NULL)
/freebsd-10.3-release/usr.sbin/bluetooth/bthidd/
H A Dparser.y70 extern FILE *yyin;
240 if ((yyin = fopen(config_file, "r")) == NULL) {
254 fclose(yyin);
255 yyin = NULL;
/freebsd-10.3-release/usr.sbin/bluetooth/hcsecd/
H A Dparser.y198 extern FILE *yyin;
205 if ((yyin = fopen(config_file, "r")) == NULL) {
217 fclose(yyin);
218 yyin = NULL;
/freebsd-10.3-release/contrib/netbsd-tests/lib/libcurses/director/
H A Ddirector.c125 extern FILE *yyin;
267 if ((yyin = fopen(argv[0], "r")) == NULL)
276 fclose(yyin);

Completed in 300 milliseconds

123