Searched refs:line (Results 26 - 50 of 1636) sorted by last modified time

1234567891011>>

/freebsd-11-stable/contrib/unbound/contrib/
H A Dcreate_unbound_ad_servers.sh30 while read line ; \
32 $ECHO "local-zone: \"$line\" redirect" ;\
33 $ECHO "local-data: \"$line A 127.0.0.1\"" ;\
38 # then add an include line to your unbound.conf pointing to the full path of
/freebsd-11-stable/contrib/unbound/
H A Dconfigure85 # We need space, tab and new line, in precisely that order. Quoting is
2466 generated by GNU Autoconf 2.69. Invocation command line was
2518 # Keep a trace of the command line.
2663 # confdefs.h avoids OS command line length limits that DEFS can exceed.
4462 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
7558 # find the maximum length of command line arguments
7559 { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5
7560 $as_echo_n "checking the maximum length of command line arguments... " >&6; }
7578 # no limit to the length of command line arguments.
7588 # the test eventually succeeds (with a max line lengt
[all...]
/freebsd-11-stable/usr.sbin/newsyslog/
H A Dnewsyslog.c652 /* Parse command line options. */
1063 char line[BUFSIZ], *parse, *q; local
1073 while (fgets(line, BUFSIZ, cf)) {
1074 if ((line[0] == '\n') || (line[0] == '#') ||
1075 (strlen(line) == 0))
1079 errline = strdup(line);
1080 for (cp = line + 1; *cp != '\0'; cp++) {
1092 q = parse = missing_field(sob(line), errline);
1093 parse = son(line);
2211 char *endp, *linep, line[BUFSIZ]; local
[all...]
/freebsd-11-stable/usr.sbin/arp/
H A Darp.c235 char line[100], arg[5][50], *args[5], *p; local
245 while(fgets(line, sizeof(line), fp) != NULL) {
246 if ((p = strchr(line, '#')) != NULL)
248 for (p = line; isblank(*p); p++);
254 xo_warnx("bad line: %s", line);
/freebsd-11-stable/contrib/less/
H A Dtags.c53 static int getentry LESSPARAMS((char *buf, char **tag, char **file, char **line));
58 * Use either pattern or line number.
59 * findgtag() always uses line number, so pattern is always NULL.
60 * findctag() uses either pattern (in which case line number is 0),
61 * or line number (in which case pattern is NULL).
70 LINENUM tag_linenum; /* Appropriate line number in source file */
309 * The line contains the tag, the filename and the
311 * The location is either a decimal line number,
313 * Parse the line and extract these parts.
339 * First see if it is a line numbe
391 curtag_match(char const *line, POSITION linepos) argument
425 char *line; local
570 char *name, *file, *line; local
[all...]
H A Dsearch.c256 * Repaint each line which contains highlighted text.
543 * Is a line "filtered" -- that is, should it be hidden?
627 * The attn line overlaps this range.
988 * Make a hilite for each string in a physical line which matches
993 hilite_line(linepos, line, line_len, chpos, sp, ep, cvt_ops)
995 char *line;
1003 char *line_end = line + line_len;
1006 * sp and ep delimit the first match in the line.
1010 * substrings of the line, may mark more than is correct
1015 searchp = line;
1260 char *line; local
[all...]
H A Dpattern.c317 match_pattern(pattern, tpattern, line, line_len, sp, ep, notbol, search_type)
320 char *line;
334 matched = match(tpattern, strlen(tpattern), line, line_len, sp, ep);
342 matched = re_search(pattern, line, line_len, 0, line_len, &search_regs) >= 0;
345 *sp = line + search_regs.start[0];
346 *ep = line + search_regs.end[0];
359 matched = !regexec(pattern, line, 1, &rm, flags);
363 *sp = line + rm.rm_so;
364 *ep = line + rm.rm_eo;
376 matched = pcre_exec(pattern, NULL, line, line_le
[all...]
H A Dmark.c311 * We don't return which screen line the position
313 * because it's always the first non-blank line on the screen.
431 restore_mark(line)
432 char *line;
438 #define skip_whitespace while (*line == ' ') line++
439 if (*line++ != 'm')
442 m = getumark(*line++);
446 ln = lstrtoi(line, &line);
[all...]
H A Dlinenum.c12 * Code to handle displaying line numbers.
14 * Finding the line number of a given file position is rather tricky.
20 * So we use the function add_lnum to cache line numbers.
22 * line numbers when we run out of space in our table. A line
24 * other line numbers. For example, we'd rather keep lines
29 * The function currline() returns the line number of a given
31 * to cache the line number. Therefore currline is occasionally
32 * called to make sure we cache line numbers often enough.
38 * Structure to keep track of a line numbe
47 LINENUM line; /* Line number */ member in struct:linenum_info
[all...]
H A Dline.c11 * Routines to manipulate the "line buffer".
12 * The line buffer holds a line of output as it is being built
27 char *buf; /* Buffer which holds the current output line */
31 char pfx[MAX_PFX_WIDTH]; /* Holds status column and line number */
42 public int size_linebuf = 0; /* Size of line buffer (and attr buffer) */
44 static int cshift; /* Current left-shift of output line buffer */
45 public int hshift; /* Desired left-shift of output line buffer */
56 static int is_null_line; /* There is no current line */
139 * Expand the line buffe
1419 int line; local
[all...]
H A Dlesskey.c51 * #line-edit Signals the beginning of the line-editing
96 { "back-line", A_B_LINE },
97 { "back-line-force", A_BF_LINE },
117 { "forw-line", A_F_LINE },
118 { "forw-line-force", A_FF_LINE },
126 { "goto-line", A_GOLINE },
174 { "kill-line", EC_LINEKILL },
269 * Parse command line arguments.
500 * Clean up an input line
781 char line[1024]; local
[all...]
H A Dfuncs.h230 public void restore_mark LESSPARAMS ((char *line));
293 public int match_pattern LESSPARAMS ((PATTERN_TYPE pattern, char *tpattern, char *line, int line_len, char **sp, char **ep, int notbol, int search_type));
H A Dcmdbuf.c132 * Clear command line.
283 * Repaint the line from cp onwards.
291 * Repaint the line from the current position.
408 /* Already at the end of the line. */
443 /* Already at the beginning of the line */
490 * Reprint the tail of the line from the inserted char.
831 * Try to perform a line-edit function on the command buffer,
832 * using a specified char as a line-editing command.
834 * CC_PASS The char does not invoke a line edit function.
852 * See if the char is indeed a line
1451 char line[CMDBUF_SIZE]; local
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_rmlock.c72 #define _rm_assert(c, what, file, line)
591 _rm_wlock_debug(struct rmlock *rm, const char *file, int line) argument
599 curthread, rm->lock_object.lo_name, file, line));
601 ("rm_wlock() of destroyed rmlock @ %s:%d", file, line));
602 _rm_assert(rm, RA_UNLOCKED, file, line);
605 file, line, NULL);
609 LOCK_LOG_LOCK("RMWLOCK", &rm->lock_object, 0, 0, file, line);
610 WITNESS_LOCK(&rm->lock_object, LOP_EXCLUSIVE, file, line);
615 _rm_wunlock_debug(struct rmlock *rm, const char *file, int line) argument
622 ("rm_wunlock() of destroyed rmlock @ %s:%d", file, line));
631 _rm_rlock_debug(struct rmlock *rm, struct rm_priotracker *tracker, int trylock, const char *file, int line) argument
644 rm->lock_object.lo_name, file, line)); local
678 _rm_runlock_debug(struct rmlock *rm, struct rm_priotracker *tracker, const char *file, int line) argument
701 _rm_wlock_debug(struct rmlock *rm, const char *file, int line) argument
708 _rm_wunlock_debug(struct rmlock *rm, const char *file, int line) argument
715 _rm_rlock_debug(struct rmlock *rm, struct rm_priotracker *tracker, int trylock, const char *file, int line) argument
723 _rm_runlock_debug(struct rmlock *rm, struct rm_priotracker *tracker, const char *file, int line) argument
743 _rm_assert(const struct rmlock *rm, int what, const char *file, int line) argument
[all...]
/freebsd-11-stable/lib/libpam/modules/pam_login_access/
H A Dlogin_access.c4 * addresses (or network numbers), or on terminal line names in case of
56 char line[BUFSIZ]; local
66 * Process the table one line at a time and stop at the first match.
74 while (!match && fgets(line, sizeof(line), fp)) {
76 if (line[end = strlen(line) - 1] != '\n') {
77 syslog(LOG_ERR, "%s: line %d: missing newline or line too long",
81 if (line[
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dcmdline.c2 * cmdline.c : Helpers for command-line programs.
786 _("Error initializing command line arguments"));
1033 /* Return a copy, allocated in POOL, of the next line of text from *STR
1072 const char *line; local
1074 while ((line = next_line(&str, pool)))
1077 svn_stringbuf_appendcstr(out, line);
1129 * every line of output has the indentation whether the value
1260 /* Use the editor specified on the command line via --editor-cmd, if any. */
1264 in command line tools. */
1379 https://docs.microsoft.com/en-us/archive/blogs/twistylittlepassagesallalike/everyone-quotes-command-line
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/
H A Dsvn_types.h223 /** Source line where the error originated (iff @c SVN_DEBUG;
226 long line;
1270 /** A line number, such as in a file or a stream.
220 long line; member in struct:svn_error_t
/freebsd-11-stable/contrib/subversion/
H A Dconfigure85 # We need space, tab and new line, in precisely that order. Quoting is
2374 generated by GNU Autoconf 2.69. Invocation command line was
2426 # Keep a trace of the command line.
2571 # confdefs.h avoids OS command line length limits that DEFS can exceed.
8129 # find the maximum length of command line arguments
8130 { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5
8131 $as_echo_n "checking the maximum length of command line arguments... " >&6; }
8149 # no limit to the length of command line arguments.
8159 # the test eventually succeeds (with a max line length of 256k).
8172 # So we just punt and use a minimum line lengt
[all...]
/freebsd-11-stable/contrib/ipfilter/tools/
H A Dipmon.c117 static char line[2048]; variable
652 t = line;
673 len = sizeof(line);
821 syslog(LOG_INFO, "%s", line);
823 (void) fprintf(conf->log, "%s", line);
839 t = line;
859 len = sizeof(line);
976 syslog(LOG_INFO, "%s", line);
978 (void) fprintf(conf->log, "%s", line);
1085 t = line;
[all...]
H A Dipscan_y.y73 file: line ';'
75 | file line ';'
80 line: IPSL_START dline label
H A Dippool_y.y95 file: line
97 | file line
101 line: table role ipftree eol { ip_pool_node_t *n; label
784 char line[1024];
793 while (fgets(line, sizeof(line) - 1, fp) != NULL) {
794 line[sizeof(line) - 1] = '\0';
796 if (parsewhoisline(line, &node.ipn_addr, &node.ipn_mask))
H A Dipnat_y.y123 file: line
125 | file line
130 line: xx rule { int err; label
1543 sprintf(msg + strlen(msg), "(line %d)",
H A Dipmon_y.y87 action: line ';'
93 line: IPM_MATCH '{' matching ';' '}' IPM_DO '{' doing ';' '}' label
340 fprintf(stderr, "%s redfined on line %d\n",
H A Dipf_y.y197 rules: line
199 | rules line
209 line: rule { while ((fr = frtop) != NULL) { label
2547 static void doipfexpr(line)
2548 char *line;
2553 array = parseipfexpr(line, &error);
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dradix_ipf.c1179 char line[80], *s; local
1187 while (fgets(line, sizeof(line), fp) != NULL) {
1188 s = strchr(line, '\n');
1196 tab[lines - 1].host = strdup(line);

Completed in 307 milliseconds

1234567891011>>