Home
last modified time | relevance | path

Searched refs:outf (Results 1 – 25 of 66) sorted by path

123

/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioLib.cc75 AudioFile* outf; in Audio_WriteOutputFile() local
79 outf = new AudioFile(path, (FileAccess)WriteOnly); in Audio_WriteOutputFile()
80 if (outf == 0) in Audio_WriteOutputFile()
84 if ((err = outf->SetHeader(hdr)) || (err = outf->Create())) { in Audio_WriteOutputFile()
85 delete outf; in Audio_WriteOutputFile()
90 err = AudioCopy(input, outf); in Audio_WriteOutputFile()
93 delete outf; in Audio_WriteOutputFile()
/illumos-gate/usr/src/cmd/dtrace/test/tst/i86xpv/xdt/
H A Dtst.schedargs.ksh44 outf=/tmp/sched.args.$$
48 $dtrace -c '/usr/bin/sleep 10' -o $outf -qs /dev/stdin <<EOF
109 ' $outf
120 rm $outf
/illumos-gate/usr/src/cmd/refer/
H A Dinv2.c22 newkeys(FILE *outf, FILE *inf, FILE *recf, int nhash, FILE *fd, int *iflong) in newkeys() argument
69 fprintf(outf, "%04d %06ld\n", hash(keyv[i])%nhash, lp); in newkeys()
86 fprintf(outf, "%04d %06ld\n", in newkeys()
/illumos-gate/usr/src/cmd/tcopy/
H A Dtcopy.c57 char *inf, *outf; variable
76 outf = argv[2]; in main()
84 if ((outp = open(outf, O_WRONLY, 0666)) < 0) { in main()
85 (void) fprintf(stderr, "Can't open %s\n", outf); in main()
/illumos-gate/usr/src/cmd/vi/misc/
H A Dctags.c145 *outf; /* ioptr for tags file */ variable
273 outf = fopen(outfile, aflag ? "a" : "w"); in main()
274 if (outf == NULL) { in main()
279 (void) fclose(outf); in main()
1015 (void) fprintf(outf, "%s\t%s\t%c^",
1019 (void) fprintf(outf, "\\\\");
1023 (void) putc(*sp, outf);
1038 (void) fprintf(outf, "%s\t%s\t%c^",
1042 (void) fprintf(outf, "\\\\");
1046 (void) putc(*sp, outf);
[all …]
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dcbreak.c88 if (outf) in cbreak()
89 fprintf(outf, "cbreak(), file %x, flags %x\n", in cbreak()
92 if (outf) in cbreak()
93 fprintf(outf, "cbreak(), file %x, flags %x\n", in cbreak()
H A Dchkinput.c126 if (outf) { in _chkinput()
127 (void) fprintf(outf, "Found a character on the input " in _chkinput()
137 if (outf) { in _chkinput()
138 (void) fprintf(outf, "Reading ahead\n"); in _chkinput()
147 if (outf) in _chkinput()
156 if (outf) in _chkinput()
157 (void) fprintf(outf, "No input waiting\n"); in _chkinput()
179 if (outf) in _print_queue()
181 (void) fprintf(outf, "inputQ[%d] = %c\n", i, inputQ[i]); in _print_queue()
H A Dcopywin.c67 if (outf) in copywin()
68 fprintf(outf, "copywin(%0.2o, %0.2o);\n", Srcwin, Dstwin); in copywin()
H A Dcurses.c73 FILE *outf = stderr; /* debug output file */ variable
H A Dcurshdr.h161 #ifndef outf
162 extern FILE *outf;
H A Ddelscreen.c51 if (outf) in delscreen()
52 fprintf(outf, "delscreen: screen %x\n", screen); in delscreen()
H A Ddraino.c78 if (outf) in draino()
79 fprintf(outf, "draino: rv %d, ncneeded %d, " in draino()
H A Dflushinp.c50 if (outf) in flushinp()
51 fprintf(outf, "flushinp(), file %x, SP %x\n", in flushinp()
H A Dinit_acs.c115 if (outf) in init_acs()
116 fprintf(outf, "acs %d, was %d, now %d\n", in init_acs()
H A Dinit_costs.c112 if (outf) { in _init_costs()
113 fprintf(outf, "icfixed %d=%d+%d\n", _COST(icfixed), in _init_costs()
116 fprintf(outf, "from ich1 %x '%s' %d\n", insert_character, in _init_costs()
118 fprintf(outf, "ip %x '%s' %d\n", insert_padding, in _init_costs()
120 fprintf(outf, "dcfixed %d\n", _COST(dcfixed)); in _init_costs()
H A Dinitscr.c87 if (outf) in initscr()
88 fprintf(outf, "initscr: term = %s\n", SP); in initscr()
H A Dmakenew.c56 if (outf) in _makenew()
57 fprintf(outf, "MAKENEW(%d, %d, %d, %d)\n", in _makenew()
127 if (outf) { in _makenew()
128 fprintf(outf, "MAKENEW: win->_clear = %d\n", win->_clear); in _makenew()
129 fprintf(outf, "MAKENEW: win->_flags = %0.2o\n", win->_flags); in _makenew()
130 fprintf(outf, "MAKENEW: win->_maxy = %d\n", win->_maxy); in _makenew()
131 fprintf(outf, "MAKENEW: win->_maxx = %d\n", win->_maxx); in _makenew()
132 fprintf(outf, "MAKENEW: win->_begy = %d\n", win->_begy); in _makenew()
133 fprintf(outf, "MAKENEW: win->_begx = %d\n", win->_begx); in _makenew()
H A Dnewscreen.c86 if (outf == NULL) { in newscreen()
87 outf = fopen("trace", "w"); in newscreen()
88 if (outf == NULL) { in newscreen()
92 setbuf(outf, (char *)NULL); in newscreen()
95 if (outf) in newscreen()
201 if (outf) in newscreen()
202 fprintf(outf, "LINES = %d, COLS = %d\n", LINES, COLS); in newscreen()
279 if (outf) in newscreen()
280 fprintf(outf, "SP %x, stdscr %x, curscr %x\n", in newscreen()
309 if (outf) in _chk_trm()
[all …]
H A Dnocbreak.c60 if (outf) in nocbreak()
61 fprintf(outf, "nocbreak(), file %x, flags %x\n", in nocbreak()
64 if (outf) in nocbreak()
65 fprintf(outf, "nocbreak(), file %x, flags %x\n", in nocbreak()
H A Dnoraw.c60 if (outf) in noraw()
61 fprintf(outf, "noraw(), file %x, flags %x\n", in noraw()
64 if (outf) in noraw()
65 fprintf(outf, "noraw(), file %x, flags %x\n", in noraw()
H A Doutch.c61 if (outf) in _outwch()
63 fprintf(outf, "^%c", c^0100); in _outwch()
65 fprintf(outf, "%c", c&0177); in _outwch()
67 if (outf) in _outwch()
68 fprintf(outf, "_outch: char '%s' term %x file %x=%d\n", in _outwch()
H A Doverlap.c57 if (outf) in _overlap()
58 fprintf(outf, "OVERWRITE(0%o, 0%o);\n", Srcwin, Dstwin); in _overlap()
H A Draw.c65 if (outf) in raw()
66 fprintf(outf, "raw(), file %x, iflag %x, cflag %x\n", in raw()
69 if (outf) in raw()
70 fprintf(outf, "raw(), file %x, flags %x\n", in raw()
H A Dresetty.c53 if (outf) in resetty()
54 fprintf(outf, "resetty(), file %x, SP %x, flags %x, " in resetty()
66 if (outf) in resetty()
67 fprintf(outf, "resetty(), file %x, SP %x, flags %x, " in resetty()
84 if (outf) in resetty()
85 fprintf(outf, "resetty(), file %x, SP %x, flags %x\n", in resetty()
H A Dring.c51 if (outf) in _ring()
52 fprintf(outf, "_ring().\n"); in _ring()

123