/titanic_44/usr/src/cmd/lp/filter/postscript/dpost/ |
H A D | draw.c | 158 extern FILE *tf; 186 if ( tf == stdout ) in getdraw() 210 else fprintf(tf, "%d %d %d %d Dl\n", hpos + dx, vpos + dy, hpos, vpos); in drawline() 261 fprintf(tf, "%d %d %d %d De\n", hpos, vpos, a, b); in drawellip() 298 fprintf(tf, "%d %d %d %d %d %d Da\n", hpos, vpos, dx1, dy1, dx2, dy2); in drawarc() 299 else fprintf(tf, "%d %d %d %d %d %d DA\n", hpos+dx1+dx2, vpos+dy1+dy2, in drawarc() 389 fprintf(tf, "%d %d %d %d %d %d Ds\n", x[i], y[i], x[i+1], y[i+1], x[i+2], y[i+2]); in drawspline() 438 fprintf(tf, "gsave\n"); in beginpath() 439 fprintf(tf, "newpath\n"); in beginpath() 440 fprintf(tf, "%d %d m\n", hpos, vpos); in beginpath() [all …]
|
H A D | dpost.c | 550 FILE *tf = NULL; /* PostScript output goes here */ variable 853 tf = stdout; in options() 1320 fprintf(tf, "%s", buf); in devcntrl() 1524 fprintf(tf, "font %d:\n", i); in fontprint() 1529 fprintf(tf, "base=0%o, nchars=%d, spec=%d, name=%s, widtab=0%o, fitab=0%o\n", in fontprint() 1532 fprintf(tf, "widths:\n"); in fontprint() 1534 fprintf(tf, " %2d", widthtab[i][j] & BMASK); in fontprint() 1535 if ( j % 20 == 19 ) putc('\n', tf); in fontprint() 1538 fprintf(tf, "\ncodetab:\n"); in fontprint() 1540 fprintf(tf, " %2d", codetab[i][j] & BMASK); in fontprint() [all …]
|
H A D | color.c | 134 extern FILE *tf; 156 if ( tf == stdout ) in getcolor() 230 fprintf(tf, "%s\n", color); in setcolor() 232 putc('/', tf); in setcolor() 234 putc(*p, tf); in setcolor() 238 fprintf(tf, " /%s", p); in setcolor() 241 fprintf(tf, " setcolor\n"); in setcolor() 246 fprintf(tf, "%d setdecoding\n", encoding); in setcolor()
|
H A D | pictures.c | 81 extern FILE *tf; 192 fprintf(tf, "cleartomark restore\n"); in picture() 194 ps_include(fp_in, tf, page, whiteout, outline, scaleboth, in picture() 197 fprintf(tf, "save mark\n"); in picture()
|
/titanic_44/usr/src/cmd/fs.d/nfs/nfslog/ |
H A D | nfslog_trans.c | 314 nfslog_close_trans_file(struct nfslog_trans_file *tf) in nfslog_close_trans_file() argument 316 assert(tf != NULL); in nfslog_close_trans_file() 317 assert(tf->refcnt > 0); in nfslog_close_trans_file() 318 if (tf->refcnt > 1) { in nfslog_close_trans_file() 319 (tf->refcnt)--; in nfslog_close_trans_file() 323 if (tf->fp != NULL) { in nfslog_close_trans_file() 324 (void) fsync(fileno(tf->fp)); in nfslog_close_trans_file() 325 (void) fclose(tf->fp); in nfslog_close_trans_file() 331 tf->prev->next = tf->next; in nfslog_close_trans_file() 332 if (tf->next != NULL) in nfslog_close_trans_file() [all …]
|
/titanic_44/usr/src/uts/common/inet/sctp/ |
H A D | sctp_hash.c | 237 sctp_tf_t *tf; in sctp_conn_match() local 243 tf = &(sctps->sctps_conn_fanout[SCTP_CONN_HASH(sctps, ports)]); in sctp_conn_match() 244 mutex_enter(&tf->tf_lock); in sctp_conn_match() 246 for (sctp = tf->tf_sctp; sctp != NULL; sctp = in sctp_conn_match() 267 mutex_exit(&tf->tf_lock); in sctp_conn_match() 277 mutex_exit(&tf->tf_lock); in sctp_conn_match() 286 sctp_tf_t *tf; in listen_match() local 292 tf = &(sctps->sctps_listen_fanout[SCTP_LISTEN_HASH(ntohs(lport))]); in listen_match() 293 mutex_enter(&tf->tf_lock); in listen_match() 295 for (sctp = tf->tf_sctp; sctp; sctp = sctp->sctp_listen_hash_next) { in listen_match() [all …]
|
/titanic_44/usr/src/cmd/ttymon/ |
H A D | ttyadm.c | 83 char ttyflags[BUFSIZ], *tf; in main() local 107 tf = ttyflags; in main() 121 tf = strcat(tf,"c"); in main() 124 tf = strcat(tf,"h"); in main() 127 tf = strcat(tf,"b"); in main() 130 tf = strcat(tf,"I"); in main() 133 tf = strcat(tf,"r"); in main()
|
/titanic_44/usr/src/lib/libbc/libc/gen/common/ |
H A D | getttyent.c | 18 FILE *tf; member 39 if (t->tf == NULL) in setttyent() 40 t->tf = fopen(TTYFILE, "r"); in setttyent() 42 rewind(t->tf); in setttyent() 52 if (t->tf != NULL) { in endttyent() 53 (void) fclose(t->tf); in endttyent() 54 t->tf = NULL; in endttyent() 119 if (t->tf == NULL) { in getttyent() 120 if ((t->tf = fopen(TTYFILE, "r")) == NULL) in getttyent() 124 p = fgets(t->line, LINE, t->tf); in getttyent()
|
/titanic_44/usr/src/cmd/captoinfo/ |
H A D | otermcap.c | 127 int tf; in _tgetent() local 130 tf = 0; in _tgetent() 147 tf = open(E_TERMCAP, 0); in _tgetent() 150 tf = open(cp, 0); in _tgetent() 152 if (tf == 0) in _tgetent() 153 tf = open(E_TERMCAP, 0); in _tgetent() 155 tf = open(E_TERMCAP, 0); in _tgetent() 157 if (tf < 0) in _tgetent() 163 cnt = read(tf, ibuf, TBUFSIZE); in _tgetent() 165 (void) close(tf); in _tgetent() [all …]
|
/titanic_44/usr/src/ucblib/libtermcap/ |
H A D | termcap.c | 75 int tf; in tgetent() local 78 tf = -1; in tgetent() 90 tf = open(cp, 0); in tgetent() 101 if (tf < 0) in tgetent() 102 tf = open(E_TERMCAP, 0); in tgetent() 104 tf = open(E_TERMCAP, 0); in tgetent() 106 if (tf < 0) in tgetent() 112 cnt = read(tf, ibuf, BUFSIZ); in tgetent() 114 (void) close(tf); in tgetent() 139 (void) close(tf); in tgetent()
|
/titanic_44/usr/src/cmd/tip/ |
H A D | remcap.c | 131 int tf; in getent() local 135 tf = 0; in getent() 153 tf = open(E_TERMCAP, O_RDONLY); in getent() 159 tf = open(RM = cp, O_RDONLY); in getent() 164 if (tf == 0) in getent() 165 tf = open(E_TERMCAP, O_RDONLY); in getent() 166 if (tf < 0) in getent() 172 cnt = read(tf, ibuf, BUFSIZ); in getent() 174 (void) close(tf); in getent() 205 (void) close(tf); in getent()
|
/titanic_44/usr/src/cmd/cmd-inet/usr.sbin/in.talkd/ |
H A D | announce.c | 63 static void print_mesg(FILE *tf, CTL_MSG *request, char *remote_machine); 126 FILE *tf; in announce_proc() local 164 if ((tf = fdopen(fd, "w")) == NULL) { in announce_proc() 169 print_mesg(tf, request, remote_machine); in announce_proc() 170 (void) fclose(tf); in announce_proc() 185 print_mesg(FILE *tf, CTL_MSG *request, char *remote_machine) in print_mesg() argument 289 (void) fputs(big_buf, tf); in print_mesg() 290 (void) fflush(tf); in print_mesg()
|
/titanic_44/usr/src/cmd/vgrind/ |
H A D | vgrindefs.c | 56 int tf; in tgetent() local 59 tf = 0; in tgetent() 61 tf = open(filename, 0); in tgetent() 62 if (tf < 0) in tgetent() 68 cnt = read(tf, ibuf, BUFSIZ); in tgetent() 70 close(tf); in tgetent() 96 close(tf); in tgetent()
|
/titanic_44/usr/src/cmd/idmap/idmapd/ |
H A D | init.c | 349 idmap_trustedforest_t *tf; in print_idmapdstate() local 406 tf = &pgcfg->trusted_forests[i]; in print_idmapdstate() 407 for (j = 0; tf->global_catalog[j].host[0] != '\0'; j++) in print_idmapdstate() 410 tf->forest_name, in print_idmapdstate() 411 tf->global_catalog[j].host, in print_idmapdstate() 412 tf->global_catalog[j].port); in print_idmapdstate() 413 for (j = 0; tf->domains_in_forest[j].domain[0] != '\0'; j++) { in print_idmapdstate() 414 if (tf->domains_in_forest[j].trusted) { in print_idmapdstate() 417 tf->forest_name, in print_idmapdstate() 418 tf->domains_in_forest[j].domain); in print_idmapdstate()
|
/titanic_44/usr/src/cmd/loadkeys/type_4/ |
H A D | korea | 35 key 5 all tf(1) 36 key 6 all tf(2) 37 key 7 all tf(10) 38 key 8 all tf(3) 39 key 9 all tf(11) 40 key 10 all tf(4) 41 key 11 all tf(12) 42 key 12 all tf(5) 44 key 14 all tf(6) 46 key 16 all tf(7) [all …]
|
H A D | reset | 35 key 5 all tf(1) 36 key 6 all tf(2) 37 key 7 all tf(10) 38 key 8 all tf(3) 39 key 9 all tf(11) 40 key 10 all tf(4) 41 key 11 all tf(12) 42 key 12 all tf(5) 44 key 14 all tf(6) 46 key 16 all tf(7) [all …]
|
H A D | traditional_chinese | 32 key 5 all tf(1) 33 key 6 all tf(2) 34 key 7 all tf(10) 35 key 8 all tf(3) 36 key 9 all tf(11) 37 key 10 all tf(4) 38 key 11 all tf(12) 39 key 12 all tf(5) 41 key 14 all tf(6) 43 key 16 all tf(7) [all …]
|
/titanic_44/usr/src/cmd/loadkeys/type_101/ |
H A D | reset | 164 key 112 all tf(1) 165 key 113 all tf(2) 166 key 114 all tf(3) 167 key 115 all tf(4) 168 key 116 all tf(5) 169 key 117 all tf(6) 170 key 118 all tf(7) 171 key 119 all tf(8) 172 key 120 all tf(9) 173 key 121 all tf(10) [all …]
|
/titanic_44/usr/src/cmd/krb5/kadmin/gui/ |
H A D | KdcGui.java | 2708 public static void showDataFormatError(TextField tf, int dataType) { in showDataFormatError() argument 2710 Frame parent = getFrame(tf); in showDataFormatError() 2712 tf.selectAll(); in showDataFormatError() 2732 Point p = tf.getLocationOnScreen(); in showDataFormatError() 2736 tf.requestFocus(); in showDataFormatError() 2787 private void getDateTimeFromDialogBox(TextField tf, Frame frame) { in getDateTimeFromDialogBox() argument 2788 tf.select(0, 0); in getDateTimeFromDialogBox() 2789 dateTimeDialog = new DateTimeDialog(frame, tf.getBackground(), in getDateTimeFromDialogBox() 2790 tf.getForeground()); in getDateTimeFromDialogBox() 2792 if (!tf.getText().equalsIgnoreCase(neverString)) { in getDateTimeFromDialogBox() [all …]
|
/titanic_44/usr/src/cmd/loadkeys/type_6/ |
H A D | reset | 88 key 58 all tf(1) 89 key 59 all tf(2) 90 key 60 all tf(3) 91 key 61 all tf(4) 92 key 62 all tf(5) 93 key 63 all tf(6) 94 key 64 all tf(7) 95 key 65 all tf(8) 96 key 66 all tf(9) 97 key 67 all tf(10) [all …]
|
/titanic_44/usr/src/test/zfs-tests/tests/functional/acl/trivial/ |
H A D | zfs_acl_cp_002_neg.ksh | 59 tf=$(getitem $i $testfiles) 60 ls_attr=$($LS -@ $tf | $AWK '{print substr($1, 11, 1)}')
|
H A D | zfs_acl_cp_003_neg.ksh | 70 typeset tf=$(getitem $i $testfiles) 71 typeset ls_attr=$(usr_exec $LS -@ $tf | \
|
/titanic_44/usr/src/cmd/vi/port/ |
H A D | expreserve.c | 97 DIR *tf; local 133 if ((tf = opendir(".")) == NULL) 138 while ((direntry = readdir64(tf)) != NULL) 158 closedir(tf);
|
/titanic_44/usr/src/lib/libast/common/sfio/ |
H A D | _sfopen.c | 108 { reg int tf; local 109 while((tf = syscreatf(file,SF_CREATMODE)) < 0 && 112 CLOSE(tf);
|
/titanic_44/usr/src/cmd/krb5/kadmin/gui/dchanger/ |
H A D | DateTimeDialog.java | 362 private boolean checkErrorAndSet(DCTextField tf) { in checkErrorAndSet() argument 366 i = new Integer(tf.getText().trim()).intValue(); in checkErrorAndSet() 367 errorState = !tf.checkValue(i); in checkErrorAndSet() 372 tf.selectAll(); in checkErrorAndSet() 376 tf.setValue(i); in checkErrorAndSet()
|