/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | trace.c | 52 if (outf == NULL) { 53 outf = fopen("trace", "a"); 54 if (outf == NULL) { 58 fprintf(outf, "trace turned on\n"); 68 if (outf != NULL) { 69 fprintf(outf, "trace turned off\n"); 70 fclose(outf); 71 outf = NULL;
|
H A D | wmove.c | 53 if (outf) { 54 fprintf(outf, "MOVE to win "); 56 fprintf(outf, "stdscr "); 58 fprintf(outf, "%o ", win); 59 fprintf(outf, "(%d, %d)\n", y, x);
|
H A D | cbreak.c | 90 if (outf) 91 fprintf(outf, "cbreak(), file %x, flags %x\n", 94 if (outf) 95 fprintf(outf, "cbreak(), file %x, flags %x\n",
|
H A D | chkinput.c | 128 if (outf) { 129 (void) fprintf(outf, "Found a character on the input " 139 if (outf) { 140 (void) fprintf(outf, "Reading ahead\n"); 149 if (outf) 158 if (outf) 159 (void) fprintf(outf, "No input waiting\n"); 181 if (outf) 183 (void) fprintf(outf, "inputQ[%d] = %c\n", i, inputQ[i]);
|
H A D | nocbreak.c | 62 if (outf) 63 fprintf(outf, "nocbreak(), file %x, flags %x\n", 66 if (outf) 67 fprintf(outf, "nocbreak(), file %x, flags %x\n",
|
H A D | noraw.c | 62 if (outf) 63 fprintf(outf, "noraw(), file %x, flags %x\n", 66 if (outf) 67 fprintf(outf, "noraw(), file %x, flags %x\n",
|
H A D | raw.c | 67 if (outf) 68 fprintf(outf, "raw(), file %x, iflag %x, cflag %x\n", 71 if (outf) 72 fprintf(outf, "raw(), file %x, flags %x\n",
|
H A D | ring.c | 53 if (outf) 54 fprintf(outf, "_ring().\n");
|
H A D | scr_dump.c | 60 if (outf) 61 (void) fprintf(outf, "scr_dump: cannot open "
|
H A D | outch.c | 63 if (outf) 65 fprintf(outf, "^%c", c^0100); 67 fprintf(outf, "%c", c&0177); 69 if (outf) 70 fprintf(outf, "_outch: char '%s' term %x file %x=%d\n",
|
H A D | savetty.c | 72 if (outf) 73 fprintf(outf, "savetty(), file %x, SP %x, flags %x,%x,%x,%x\n", 77 if (outf) 78 fprintf(outf, "savetty(), file %x, SP %x, flags %x\n",
|
H A D | flushinp.c | 52 if (outf) 53 fprintf(outf, "flushinp(), file %x, SP %x\n",
|
H A D | resetty.c | 55 if (outf) 56 fprintf(outf, "resetty(), file %x, SP %x, flags %x, " 68 if (outf) 69 fprintf(outf, "resetty(), file %x, SP %x, flags %x, " 86 if (outf) 87 fprintf(outf, "resetty(), file %x, SP %x, flags %x\n",
|
H A D | makenew.c | 58 if (outf) 59 fprintf(outf, "MAKENEW(%d, %d, %d, %d)\n", 129 if (outf) { 130 fprintf(outf, "MAKENEW: win->_clear = %d\n", win->_clear); 131 fprintf(outf, "MAKENEW: win->_flags = %0.2o\n", win->_flags); 132 fprintf(outf, "MAKENEW: win->_maxy = %d\n", win->_maxy); 133 fprintf(outf, "MAKENEW: win->_maxx = %d\n", win->_maxx); 134 fprintf(outf, "MAKENEW: win->_begy = %d\n", win->_begy); 135 fprintf(outf, "MAKENEW: win->_begx = %d\n", win->_begx);
|
H A D | init_costs.c | 114 if (outf) { 115 fprintf(outf, "icfixed %d=%d+%d\n", _COST(icfixed), 118 fprintf(outf, "from ich1 %x '%s' %d\n", insert_character, 120 fprintf(outf, "ip %x '%s' %d\n", insert_padding, 122 fprintf(outf, "dcfixed %d\n", _COST(dcfixed));
|
H A D | waddch.c | 66 if (outf) 68 fprintf(outf, "'%c'", rawc); 70 fprintf(outf, "'%c' %o, raw %o", c, c, rawc); 125 if ((win->_attrs) && outf) 126 fprintf(outf, "(attrs %o, %o=>%o)", win->_attrs, 160 if (outf) { 163 fprintf(outf, "ERR because " 167 fprintf(outf, "line: '"); 170 fprintf(outf, "%c", 172 fprintf(outf, "'\ [all...] |
H A D | setcurscreen.c | 55 if (outf) 56 fprintf(outf, "setterm: old %x, new %x\n", rv, new);
|
H A D | tstp.c | 57 if (outf) 58 (void) fflush(outf);
|
/illumos-gate/usr/src/cmd/audio/utilities/ |
H A D | AudioLib.cc | 77 AudioFile* outf; local 81 outf = new AudioFile(path, (FileAccess)WriteOnly); 82 if (outf == 0) 86 if ((err = outf->SetHeader(hdr)) || (err = outf->Create())) { 87 delete outf; 92 err = AudioCopy(input, outf); 95 delete outf;
|
/illumos-gate/usr/src/ucblib/libcurses/ |
H A D | putchar.c | 30 fprintf(outf, "_PUTCHAR(%s)\n", unctrl(c));
|
H A D | initscr.c | 39 fprintf(outf, "INITSCR()\n"); 49 fprintf(outf, "INITSCR: term = %s\n", sp); 59 fprintf(outf, "INITSCR: curscr = 0%o\n", curscr); 64 fprintf(outf, "LINES = %d, COLS = %d\n", LINES, COLS); 72 fprintf(outf, "INITSCR: stdscr = 0%o\n", stdscr);
|
H A D | addstr.c | 34 fprintf(outf, "WADDSTR(\"%s\")\n", str);
|
H A D | scroll.c | 36 fprintf(outf, "SCROLL(%0.2o)\n", win); 52 fprintf(outf, "SCROLL: win == curscr\n");
|
H A D | getch.c | 40 fprintf(outf, "WGETCH: _echoit = %c, _rawmode = %c\n", 49 fprintf(outf, "WGETCH got '%s'\n", unctrl(inp));
|
/illumos-gate/usr/src/cmd/dtrace/test/tst/i86xpv/xdt/ |
H A D | tst.schedargs.ksh | 44 outf=/tmp/sched.args.$$ 48 $dtrace -c '/usr/bin/sleep 10' -o $outf -qs /dev/stdin <<EOF 109 ' $outf 120 rm $outf
|