HomeSort by: relevance | last modified time | path
    Searched defs:lineno (Results 1 - 25 of 52) sorted by relevancy

1 2 3

  /src/lib/libc/time/
getdate.c 69 size_t lineno = 0; local in function:getdate
95 while ((line = fparseln(fp, NULL, &lineno, NULL, 0)) != NULL) {
  /src/tests/lib/libc/stdlib/
h_getopt.c 44 size_t len, lineno = 0; local in function:main
52 while ((line = fparseln(stdin, &len, &lineno, NULL, 0)) != NULL) {
59 (unsigned long)lineno);
71 (unsigned long)lineno);
90 (unsigned long)lineno);
h_getopt_long.c 46 size_t len, lineno = 0; local in function:main
58 while ((line = fparseln(stdin, &len, &lineno, NULL, 0)) != NULL) {
65 (unsigned long)lineno);
81 (unsigned long)lineno);
85 (unsigned long)lineno);
98 (unsigned long)lineno);
101 (unsigned long)lineno);
108 (unsigned long)lineno);
125 longopt, (unsigned long)lineno);
138 (unsigned long)lineno);
    [all...]
  /src/usr.sbin/rpc.yppasswdd/
yppasswdd_mkpw.c 72 int lineno; local in function:make_passwd
101 for(lineno = 1; ; lineno++) {
112 warnx("line %d too long", lineno);
  /src/usr.bin/ypcat/
ypalias_init.c 74 size_t i = 0, len, lineno; local in function:ypalias_init
82 lineno = 1;
83 for (; (line = fparseln(fp, &len, &lineno, NULL,
91 _PATH_YPNICKNAMES, lineno);
  /src/usr.sbin/mailwrapper/
mailwrapper.c 88 size_t len, lineno = 0; local in function:main
99 if ((line = fparseln(config, &len, &lineno, NULL, 0)) == NULL) {
146 _PATH_MAILERCONF, (u_long)lineno);
  /src/bin/sh/
exec.h 48 int lineno; /* for functions: Abs line number of defn */ member in struct:cmdentry
  /src/usr.bin/xlint/lint2/
msg.c 117 int lineno; local in function:mkpos
120 lineno = posp->p_iline;
123 lineno = posp->p_line;
132 if (lineno != 0)
134 fn, qm ? "?" : "", lineno);
  /src/games/ching/printching/
printching.c 220 int lineno; /* number of line read in */ local in function:phx
287 lineno = atoi(lp);
288 if (i + 1 != lineno) {
  /src/lib/libc/gen/
getttyent.c 64 static size_t lineno = 0; variable in typeref:typename:size_t
101 line = fparseln(tf, &len, &lineno, NULL, FPARSELN_UNESCALL);
154 __func__, _PATH_TTYS, (unsigned long)lineno, p);
225 lineno = 0;
  /src/usr.sbin/lpr/filters/
lpf.c 62 static int lineno; variable in typeref:typename:int
137 lineno = length;
211 if (++lineno >= length) {
214 lineno = 0;
219 if (lineno) { /* be sure to end on a page boundary */
  /src/usr.sbin/mtree/
only.c 127 size_t len, lineno; local in function:load_only
132 while ((line = fparseln(fp, &len, &lineno, NULL, FPARSELN_UNESCALL))) {
  /src/lib/libpam/modules/pam_login_access/
login_access.c 83 int lineno = 0; /* for diagnostics */ local in function:login_access
95 lineno++;
98 _PATH_LOGACCESS, lineno);
113 lineno);
118 lineno);
  /src/lib/libusbhid/
usage.c 79 int lineno; local in function:hid_init
88 for (lineno = 1; ; lineno++) {
102 hidname, lineno);
112 hidname, lineno);
  /src/usr.sbin/grfconfig/
grfconfig.c 82 int lineno = 0; local in function:main
156 lineno = lineno + 1;
287 if (lineno == 1)
  /src/usr.sbin/gspa/gspa/
gspa.c 59 unsigned lineno; variable in typeref:typename:unsigned
79 int lineno; member in struct:input
143 lineno = 0;
176 lineno = 0;
223 p->lineno = lineno;
227 lineno = 1;
244 lineno = p->lineno;
248 ++lineno;
    [all...]
gsp_ass.h 51 unsigned lineno; member in struct:symbol
67 unsigned lineno; member in struct:numlab
170 extern unsigned lineno;
  /src/usr.sbin/tpctl/
tpctl.h 68 int lineno; member in struct:tpctl_data
  /src/usr.bin/xlint/lint1/
err.c 451 int lineno; member in struct:include_level
476 update_location(const char *filename, int lineno, bool is_begin, bool is_end)
482 top->lineno = curr_pos.p_line;
487 top->lineno = lineno;
498 top->lineno = lineno;
512 * diagnostic itself. Furthermore, its lineno is the line number of
516 printf("\tincluded from %s(%d)\n", top->filename, top->lineno);
  /src/tests/lib/libc/regex/
t_regex_att.c 58 fail(const char *pattern, const char *input, size_t lineno) {
61 lineno, pattern, input);
65 bug(const char *pattern, const char *input, size_t lineno) {
174 fail(pattern, input, lineno);
355 checkcomment(const char *s, size_t lineno)
358 fprintf(stderr, "Expected %s at line %zu\n", s, lineno);
363 size_t lineno)
383 ATF_CHECK_STREQ_MSG(res, matches, " at line %zu", lineno);
392 size_t len, lineno = 0; local in function:att_test
403 for (; (line = fparseln(input_file, &len, &lineno, delim, 0)
    [all...]
  /src/usr.bin/checknr/
checknr.c 194 static int lineno; /* current line number in input file */ variable in typeref:typename:int
322 for (lineno = 1; fgets(line, sizeof line, f); lineno++) {
330 pe(lineno);
337 pe(lineno);
376 pe(lineno);
383 stk[stktop].lno = lineno;
392 pe(lineno);
399 stk[stktop].lno = lineno;
460 stk[stktop].lno = lineno;
    [all...]
  /src/usr.bin/csplit/
csplit.c 89 static long lineno; /* Current line number in input file */ variable in typeref:typename:long
166 lineno = 0;
300 lineno++;
330 lineno -= n;
460 if (lastline <= lineno)
465 while (lineno + 1 != lastline) {
  /src/usr.bin/fmt/
fmt.c 73 static int lineno; /* Current input line */ variable in typeref:typename:int
111 lineno = 1;
352 mark = lineno;
354 if (lineno - mark < 3 && lineno - mark > 0)
371 lineno++;
  /src/usr.sbin/quotarestore/
quotarestore.c 367 unsigned lineno; local in function:readdumpfile
377 lineno = 0;
381 lineno++;
404 lineno++;
412 path, lineno);
425 path, lineno);
430 path, lineno);
435 path, lineno, fields[0]);
439 path, lineno, fields[1]);
444 path, lineno, fields[2])
    [all...]
  /src/usr.bin/config/
mkmakefile.c 90 int lineno; local in function:mkmakefile
141 lineno = 0;
143 lineno++;
165 cfgxerror(ifname, lineno, "syntax error for "
172 cfgxerror(ifname, lineno,
175 emitsubs(ofp, line, ifname, lineno);
186 warn("error reading %s (at line %d)", ifname, lineno);
229 emitsubs(FILE *fp, char *line, const char *file, int lineno)
244 cfgxerror(file, lineno, "unbalanced %% or "
255 cfgxerror(file, lineno, "unknown option %s"
    [all...]

Completed in 50 milliseconds

1 2 3