Home
last modified time | relevance | path

Searched refs:stream (Results 1 – 25 of 37) sorted by relevance

12

/original-bsd/contrib/bib/src/
H A Dstreams.c21 FILE *stream; in getword()
31 do{ c= getc(stream);
75 FILE *stream; in recsize()
82 c= getc(stream);
107 FILE *stream; in nextrecord()
117 { if (c == '\n') { start= ftell(stream); c= getc(stream); }
137 FILE *stream; in nextline()
147 printline(stream) in printline() argument
148 FILE *stream; in printline()
158 getline(stream,p) in getline() argument
[all …]
H A Dalpha.seek.c18 int alpha_seek(stream, word, s_size, fold) in alpha_seek() argument
19 FILE *stream; in alpha_seek()
30 pos(low); getline(stream, line);
40 mid= nextline(stream, nexttry );
42 { getline(stream,line);
46 mid= nextline(stream, nexttry );
50 low= nextline(stream,low);
54 getline(stream,line);
59 low= ftell(stream);
H A Dlocate.c220 int fetchref(stream, oldfile, ref) in fetchref() argument
221 FILE *stream; in fetchref()
226 fscanf(stream, "%c", &cntl);
228 if (cntl==':') fscanf(stream, "%s", oldfile);
230 fscanf(stream, "%D/%D", &ref->start, &ref->length);
H A Dstreams.h7 # define pos(x) fseek(stream,x,0)
/original-bsd/etc/
H A Dinetd.conf6 ftp stream tcp nowait root /usr/libexec/ftpd ftpd -ll
7 telnet stream tcp nowait root /usr/libexec/telnetd telnetd
8 shell stream tcp nowait root /usr/libexec/rshd rshd
9 login stream tcp nowait root /usr/libexec/rlogind rlogind
10 exec stream tcp nowait root /usr/libexec/rexecd rexecd
18 tcpmux stream tcp nowait root internal
19 echo stream tcp nowait root internal
20 discard stream tcp nowait root internal
21 chargen stream tcp nowait root internal
22 daytime stream tcp nowait root internal
[all …]
/original-bsd/contrib/gdb-4.7.LBL/gdb/
H A Dutils.c817 FILE *stream;
907 FILE *stream; in instream_cleanup()
909 instream = stream;
999 FILE *stream;
1007 if (stream != stdout
1106 FILE *stream;
1194 FILE *stream; in vfprintf_filtered()
1223 FILE *stream; in fprintf_filtered() local
1246 FILE *stream; in fprintfi_filtered() local
1336 FILE *stream;
[all …]
H A Dmain.c495 source_cleanup (stream) in source_cleanup() argument
496 FILE *stream; in source_cleanup()
499 instream = stream;
504 read_command_file (stream) in read_command_file() argument
505 FILE *stream; in read_command_file()
510 instream = stream;
2009 FILE *stream; local
2019 stream = fopen (file, "r");
2020 if (stream == 0) {
2025 stream = fopen(cp, "r");
[all …]
H A Ddefs.h661 fclose PARAMS ((FILE *stream)); /* 4.9.5.1 */
/original-bsd/contrib/gcc-2.3.3/config/
H A Dm68k.c82 output_function_prologue (stream, size) in output_function_prologue() argument
83 FILE *stream; in output_function_prologue()
102 asm_fprintf (stream, "\tlink %s,%0I%d\n",
112 asm_fprintf (stream, "\tlink %s,%0I%d\n",
200 asm_fprintf (stream,
263 output_function_epilogue (stream, size) in output_function_epilogue() argument
264 FILE *stream; in output_function_epilogue()
283 asm_fprintf (stream, "\tnop\n");
288 FUNCTION_EXTRA_EPILOGUE (stream, size);
495 fprintf (stream, "\tunlk %s\n",
[all …]
H A Dmips.c3425 FILE *stream; in make_temp_file() local
3452 if (!stream) in make_temp_file()
3456 return stream; in make_temp_file()
3466 FILE *stream; in mips_output_filename()
3521 FILE *stream; in mips_output_lineno()
3607 mips_asm_file_start (stream) in mips_asm_file_start() argument
3608 FILE *stream; in mips_asm_file_start()
3635 print_options (stream);
3700 FILE *stream; in mips_declare_object()
3723 FILE *stream; in mips_output_double()
[all …]
/original-bsd/usr.bin/colrm/
H A Dcolrm.c98 check(stream) in check() argument
99 FILE *stream; in check()
101 if (feof(stream))
103 if (ferror(stream))
105 stream == stdin ? "stdin" : "stdout", strerror(errno));
/original-bsd/contrib/gas-1.38/
H A Dinput-scrub.c391 as_howmuch (stream) in as_howmuch() argument
392 FILE * stream; /* Opened for write please. */ in as_howmuch()
405 as_1_char (*p, stream);
410 as_1_char (c,stream) in as_1_char() argument
412 FILE * stream;
416 (void)putc( '%', stream);
421 (void)putc( '^', stream);
424 (void)putc( c, stream);
H A Dinput-file.c43 #define setbuffer(stream, buf, size) setvbuf((stream), (buf), _IOFBF, (size)) argument
/original-bsd/local/ditroff/ditroff.old.okeeffe/gremlin.aed/gremlin/
H A Dgraphics1.c339 GRInit(stream, invert) in GRInit() argument
340 FILE *stream; /* A pointer to the graphics display in GRInit()
378 (void) ioctl(fileno(stream), TIOCSETD, (char *) &ldisc);
379 (void) ioctl(fileno(stream), TIOCLGET, (char *) &localmode);
381 (void) ioctl(fileno(stream), TIOCLBIS, (char *) &litout);
383 (void) gtty(fileno(stream), &sgttyb);
391 (void) stty(fileno(stream), &sgttyb);
392 (void) ioctl(fileno(stream), TIOCEXCL, (char *) &sgttyb);
399 display = stream;
H A Dgraphics3.c74 GRGetButton(stream, px, py) in GRGetButton() argument
75 FILE *stream; /* File from which AED chars. can be read */ in GRGetButton()
118 button = 1 << fileno(stream);
122 if (fgets(line1, 99, stream) == NULL) return -1;
125 if (fgets(line1, 99, stream) == NULL) return -2;
127 if (fgets(line1, 99, stream) == NULL) return -3;
/original-bsd/usr.bin/mail/
H A Ddef.h247 #define trunc(stream) { \ argument
248 (void)fflush(stream); \
249 (void)ftruncate(fileno(stream), (long)ftell(stream)); \
/original-bsd/usr.bin/make/
H A Dmain.c692 FILE *stream; local
699 if ((stream = fopen(fname, "r")) != NULL)
704 if ((stream = fopen(path, "r")) != NULL) {
713 if (!name || !(stream = fopen(name, "r")))
722 Parse_File(fname, stream);
723 (void)fclose(stream);
H A Dparse.c2380 Parse_File(name, stream) in Parse_File() argument
2382 FILE * stream; /* Stream open to makefile to parse */
2389 curFILE = stream;
/original-bsd/local/ditroff/ditroff.old.okeeffe/driver/
H A Dx2ch.c229 bitset(stream, bit) in bitset() argument
230 char *stream; in bitset()
235 p = stream + (bit >> 3);
/original-bsd/games/adventure/
H A Dhdr.h120 enter, stream, pour, member
/original-bsd/contrib/libg++-2.3/
H A DMakefile.BSD13 indstream.o PlotFile.o SFile.o fstream.o parsestream.o stream.o makebuf.o \
/original-bsd/contrib/xns/examples/gap/
H A Dgap2d.c627 changeSPPopts(s, stream, eom) in changeSPPopts() argument
629 u_char stream; /* datastream type */
632 our_sphdr.sp_dt = stream;
/original-bsd/local/toolchest/ksh/
H A Dksh.mk153 -o '(' -f /usr/include/sys/stream.h \
H A Dmakefile153 -o '(' -f /usr/include/sys/stream.h \
/original-bsd/usr.bin/tn3270/distribution/
H A DREADME50 codes, 3270 data stream, 3270 display codes,

12