HomeSort by relevance Sort by last modified time
    Searched defs:line (Results 1 - 25 of 495) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/lib/libplot/plot/common/
line.c 38 line(short x0, short y0, short x1, short y1) function
  /onnv/onnv-gate/usr/src/lib/libplot/t4014/common/
line.c 37 line(short x0, short y0, short x1, short y1) function
  /onnv/onnv-gate/usr/src/cmd/bnu/
versys.c 51 char line[BUFSIZ]; local
70 while (getsysline(line, sizeof(line))) {
71 if((line[0] == '#') || (line[0] == ' ') || (line[0] == '\t') ||
72 (line[0] == '\n'))
75 if ((iptr=strpbrk(line, " \t")) == NULL)
78 if (EQUALS(name, line)) {
  /onnv/onnv-gate/usr/src/cmd/fmli/qued/
arrows.c 44 * single-line and multi-line scrollable fields
49 register unsigned line; local
52 line = 0;
59 line |= VT_UPSARROW;
61 line |= VT_DNSARROW;
62 if (line & VT_UPSARROW) {
63 if (line & VT_DNSARROW)
68 else if (line & VT_DNSARROW) {
69 if (line & VT_UPSARROW
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/cmd/
while.t 51 line: while (<fh>) { label
52 if (/vt100/) {last line;}
  /onnv/onnv-gate/usr/src/cmd/ttymon/
admutil.c 51 int line = 0; /* line number we found entry on */ local
55 line++;
61 return(line);
  /onnv/onnv-gate/usr/src/tools/scripts/
jstyle.pl 38 -c check continuation line indenting
62 my ($filename, $line, $prev);
101 printf $fmt, $filename, $., $_[0], $line;
123 line: while (<STDIN>) { label
126 # save the original line, then remove all text from within
129 $line = $_;
138 next line;
142 # a /*JSTYLED*/ comment indicates that the next line is ok.
154 $prev = $line;
155 next line;
    [all...]
  /onnv/onnv-gate/usr/src/cmd/tbl/
tg.c 25 char line[BIGBUF]; local
31 fprintf(tabout, ".nr %d \\n(.lu\n", SL); /* remember old line length */
59 while (gets1(line, sizeof line))
61 if (line[0]=='T' && line[1]=='}' && line[2]== tab) break;
62 if (match("T}", line)) break;
63 fprintf(tabout, "%s\n", line);
73 /* copy remainder of line */
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ypcmd/
stdethers.c 44 * The hostname buffer must be at least as large as the line buffer
48 char line[MAXHOSTNAMELEN + 256], *lf, hostname[sizeof (line)]; local
62 while (fgets(line, sizeof (line), in) != NULL) {
63 lf = strchr(line, '\n');
66 if ((line[0] == '#') || (line[0] == '\0'))
68 if (ether_line(line, &e, hostname) == 0) {
73 "%s: ignoring line: %s\n", argv[0], line)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libnsl/rpc/
getdname.c 75 char *line; local
  /onnv/onnv-gate/usr/src/lib/libnsl/saf/
checkver.c 54 char line[BUFSIZ]; /* temp buffer for input */ local
60 p = line;
71 p = line;
  /onnv/onnv-gate/usr/src/tools/cscope-fast/
help.c 48 int line; local
60 "the file containing a displayed line\n";
75 "line.\n";
107 "to mark or unmark the line to be\n";
113 *tp++ = "1-9\tMark or unmark the line to be changed.\n";
130 line = 0;
132 if (line < LINES - 1) {
135 ++line;
143 line = 0;
146 if (line) {
    [all...]
logdir.c 49 static char line[BUFSIZ+1]; variable
74 /* get the next line in the password file */
75 i = read(pwf, line, BUFSIZ);
77 if (line[j] == '\n')
82 line[++j] = 0; /* terminate the line */
83 /* point at the next line */
85 p = passwdfield(line); /* get the logname */
86 } while (*name != *line || /* fast pretest */
87 strcmp(name, line) != 0)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
snoop_rquota.c 69 char *line; local
82 line = get_sum_line();
87 (void) sprintf(line,
92 check_retransmit(line, xid);
94 (void) sprintf(line, "RQUOTA R %s ",
96 line += strlen(line);
99 (void) sprintf(line, "OK");
101 (void) sprintf(line, "No quota");
103 (void) sprintf(line, "No permission")
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fmli/wish/
wdwlist.c 53 int line; local
56 (void) menu_ctl(a->id, CTGETPOS, &line);
57 rec = menline_to_ar(line);
69 int line; local
76 (void) menu_ctl(a->id, CTGETPOS, &line);
77 ar_current(menline_to_ar(line), TRUE); /* abs k15 */
  /onnv/onnv-gate/usr/src/cmd/line/
line.c 33 * This program reads a single line from the standard input
53 char line[LSIZE]; local
57 linep = line;
58 linend = line + LSIZE;
62 (void) write(1, line, LSIZE);
63 linep = line;
69 (void) write(1, line, linep-line);
  /onnv/onnv-gate/usr/src/cmd/loadkeys/
loadkeys.y 568 table line
572 line: label
835 yyerror("line too long");
862 yyerror("missing newline at end of line");
872 yyerror("missing newline at end of line");
883 yyerror("line too long");
1012 (void) fprintf(stderr, "%s, line %d: %s\n", infilename, lineno, msg);
  /onnv/onnv-gate/usr/src/cmd/mailx/
translate.c 46 char line[LINESIZE]; local
84 if (fgets(line, sizeof line, pp) == NULL)
86 line[strlen(line)-1] = 0;
87 if (!strcmp(line, n->n_name))
89 x = extract(line, n->n_type);
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/genunix/
log.c 42 char line[1024]; local
91 if (mdb_readstr(line, sizeof (line), (uintptr_t)cont.b_rptr) == -1) {
100 if (line[0] == 0x0d)
101 mdb_printf("%s", &line[1]);
103 mdb_printf("%s", &line[0]);
  /onnv/onnv-gate/usr/src/cmd/oamuser/group/
del_group.c 59 int line = 1; local
97 line++;
103 errmsg(M_SYNTAX, line);
mod_group.c 59 int line = 1; local
98 line++;
103 errmsg(M_SYNTAX, line);
  /onnv/onnv-gate/usr/src/cmd/refer/
refer1.c 34 main(int argc, char *argv[]) /* process command-line arguments */
36 char line[BUFSIZ], *s; local
146 while (input(line)) {
148 if (biblio && *line == '\n')
149 doref(line);
150 else if (biblio && Iline == 1 && *line == '%')
151 doref(line);
152 else if (!prefix(".[", line))
153 output(line);
155 doref(line);
    [all...]
  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
ripoffline.c 46 * such that a line is removed from the user's screen by initscr. This
48 * which tells initscr to reduce the size of stdscr by one for each line
58 int line; member in struct:_ripdef
82 ((flag = _ripstruct[i].line) > 0) ? 0 : LINES, 0), COLS);
90 ripoffline(int line, int (*initfunction)(WINDOW *, int))
93 _ripstruct[_ripcounter].line = line;
  /onnv/onnv-gate/usr/src/lib/libplot/t450/common/
line.c 79 line(short x0, short y0, short x1, short y1) function
  /onnv/onnv-gate/usr/src/lib/lvm/libmeta/common/
meta_mdcf.c 59 char line[1000]; local
105 while (fgets(line, 1000, tfp) != NULL) {
106 if (fputs(line, mfp) == NULL) {

Completed in 1200 milliseconds

1 2 3 4 5 6 7 8 91011>>