Searched refs:line (Results 51 - 75 of 1636) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/tools/
H A Dpccarddevs2h.awk62 function collectline(f, line) {
64 line = ""
67 line = line "("
73 line = line $f
75 line = line " "
79 line = line
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Dtest-getline.c8 char *line = NULL; local
12 return getline(&line, &linesz, stdin) != -1;
H A Dmandoc_xr.h22 int line; /* Or -1 for this page's own names. */ member in struct:mandoc_xr
/freebsd-11-stable/contrib/openpam/lib/libpam/
H A Dopenpam_readline.c54 * Read a line from a file.
60 char *line; local
64 line = NULL;
65 if (openpam_straddch(&line, &size, &len, 0) != 0)
88 if (line[len - 1] == '\\') {
89 line[--len] = '\0';
96 if (openpam_straddch(&line, &size, &len, ch) != 0)
103 return (line);
105 FREE(line);
112 * The =openpam_readline function reads a line fro
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Deprintf.c23 const char *line, const char *file) {
24 fprintf(stderr, format, assertion_expression, line, file);
22 __eprintf(const char *format, const char *assertion_expression, const char *line, const char *file) argument
H A Dint_util.c26 void __compilerrt_abort_impl(const char *file, int line, const char *function) { argument
27 panic("%s:%d: abort in %s", file, line, function);
33 NORETURN extern void __assert_rtn(const char *func, const char *file, int line,
40 void __compilerrt_abort_impl(const char *file, int line, const char *function) { argument
41 __assert_rtn(function, file, line, "libcompiler_rt abort");
50 void __compilerrt_abort_impl(const char *file, int line, const char *function) { argument
63 void __compilerrt_abort_impl(const char *file, int line, const char *function) { argument
/freebsd-11-stable/contrib/tzdata/
H A Dzishrink.awk153 # Process the input line LINE and save it for later output.
155 function process_input_line(line, \
159 # Remove comments, normalize spaces, and append a space to each line.
160 sub(/#.*/, "", line)
161 line = line " "
162 gsub(/[\t ]+/, " ", line)
164 # Abbreviate keywords and determine line type.
165 linkline = sub(/^Link /, "L ", line)
166 ruleline = sub(/^Rule /, "R ", line)
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgdb_assert.h49 #define gdb_assert_fail(assertion, file, line, function) \
50 internal_error (file, line, "%s: Assertion `%s' failed.", \
53 #define gdb_assert_fail(assertion, file, line, function) \
54 internal_error (file, line, "Assertion `%s' failed.", \
/freebsd-11-stable/tools/tools/locale/tools/
H A DUTF82encoding.pl17 foreach my $line (@lines) {
18 next if ($line =~ /^#/);
19 next if ($line eq "");
20 next if ($line !~ /^</);
22 my @a = split(" ", $line);
35 foreach my $line (@lines) {
36 if ($line =~ /^#/) {
37 print "$line\n";
41 my @l = split(//, $line);
/freebsd-11-stable/contrib/amd/scripts/
H A Damd2sun.in17 $line = $_;
18 while ($line =~ /\\$/) {
19 chop $line;
22 $line .= $line2;
23 chop $line;
26 next unless $line =~ /^([^\s]+)\s+(.*)$/;
/freebsd-11-stable/lib/libc/gen/
H A Dassert.c41 __assert(const char *func, const char *file, int line, const char *failedexpr) argument
45 "Assertion failed: (%s), file %s, line %d.\n", failedexpr,
46 file, line);
49 "Assertion failed: (%s), function %s, file %s, line %d.\n",
50 failedexpr, func, file, line);
/freebsd-11-stable/stand/libsa/
H A Dassert.c35 __assert(const char *func, const char *file, int line, const char *expression) argument
38 panic("Assertion failed: (%s), file %s, line %d.",
39 expression, file, line);
42 "Assertion failed: (%s), function %s, file %s, line %d.",
43 expression, func, file, line);
/freebsd-11-stable/lib/libc/iconv/
H A Dcitrus_lookup_factory.c50 convert_line(struct _citrus_db_factory *df, const char *line, size_t len) argument
56 p = memchr(line, T_COMM, len);
58 len = p - line;
61 line = _bcs_skip_ws_len(line, &len);
64 p = _bcs_skip_nonws_len(line, &len);
65 if (p == line)
67 snprintf(key, sizeof(key), "%.*s", (int)(p-line), line);
71 line
98 char *line; local
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dmdoc2man.awk39 line=""
54 line=line "\n"
55 line=line str
82 if(length(line)&&!(match(line," $")||prenl))
104 sub(" $","",line)
107 sub(" $","",line)
135 if(!nospace&&length(line)
[all...]
/freebsd-11-stable/usr.sbin/pw/
H A Dpw_vpw.c67 char *line; local
72 line = NULL;
76 while ((linelen = getline(&line, &linecap, pwd_fp)) > 0) {
78 if (*line == '\n' || *line == '#')
81 if (line[linelen - 1 ] == '\n')
82 line[linelen - 1] = '\0';
83 pw = pw_scan(line, PWSCAN_MASTER);
86 " '%s'", getpwpath(_MASTERPASSWD), line);
101 free(line);
149 char *line; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Ddebug.h23 toplev.c according to command line options. */
33 /* Macro defined on line LINE with name and expansion TEXT. */
34 void (* define) (unsigned int line, const char *text);
36 /* MACRO undefined on line LINE. */
37 void (* undef) (unsigned int line, const char *macro);
41 void (* start_source_file) (unsigned int line, const char *file);
43 /* Record the resumption of a source file. LINE is the line number
45 void (* end_source_file) (unsigned int line);
49 void (* begin_block) (unsigned int line, unsigned int n);
52 void (* end_block) (unsigned int line, unsigne
[all...]
/freebsd-11-stable/contrib/ntp/libntp/
H A Dntp_lineedit.c2 * ntp_lineedit.c - generic interface to various line editing libs
154 * ntp_readline - read a line with the line editor available
164 char * line; local
178 line = readline(lineedit_prompt ? lineedit_prompt : "");
179 if (NULL != line) {
180 if (*line) {
181 add_history(line);
183 *pcount = strlen(line);
192 line
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Derror.c61 isc_error_unexpected(const char *file, int line, const char *format, ...) { argument
65 (unexpected_callback)(file, line, format, args);
70 isc_error_fatal(const char *file, int line, const char *format, ...) { argument
74 (fatal_callback)(file, line, format, args);
80 isc_error_runtimecheck(const char *file, int line, const char *expression) { argument
81 isc_error_fatal(file, line, "RUNTIME_CHECK(%s) %s", expression,
87 default_unexpected_callback(const char *file, int line, const char *format, argument
90 fprintf(stderr, "%s:%d: ", file, line);
97 default_fatal_callback(const char *file, int line, const char *format, argument
100 fprintf(stderr, "%s:%d: %s: ", file, line,
[all...]
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftp/
H A Ddomacro.c59 strlcpy(line2, line, sizeof(line2));
66 cp2 = line;
71 if (line + sizeof(line) - 2 < cp2)
83 len = sizeof(line) - (cp2 - line) - 1;
94 len = sizeof(line) - (cp2 - line) - 1;
103 if (line + sizeof(line)
[all...]
/freebsd-11-stable/lib/libc/tests/stdio/
H A Dgetdelim_test.c78 char *line; local
92 line = malloc(i);
93 /* First line: the full apothegm */
94 ATF_REQUIRE(getline(&line, &linecap, fp) == sizeof(apothegm) - 1);
95 ATF_REQUIRE(memcmp(line, apothegm, sizeof(apothegm)) == 0);
97 /* Second line: the NUL terminator following the newline */
98 ATF_REQUIRE(getline(&line, &linecap, fp) == 1);
99 ATF_REQUIRE(line[0] == '\0' && line[1] == '\0');
100 /* Third line
116 char *line; local
135 char *line; local
152 char *line; local
177 char *line; local
205 char *line; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.aggpackbanner.ksh20 banner $3 | /bin/nawk -v line=$1 -v pos=$2 -v width=$width '{ \
25 line, NR, i + (pos * width));
33 let line=0
46 let line=line+1
51 outputchar $line $pos $c
57 while [[ $i -le $line ]]; do
/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/usr.bin/lex/
H A Dinitscan.c3 #line 3 "<stdout>"
231 /* Whether we're considered to be at the beginning of a line.
237 int yy_bs_lineno; /**< The line count. */
1888 #line 1 "scan.l"
1890 #line 4 "scan.l"
1962 synerr(_("Input line too long\n")); \
1990 #line 1990 "<stdout>"
2208 #line 131 "scan.l"
2219 #line 2219 "<stdout>"
2322 #line 14
[all...]
/freebsd-11-stable/usr.bin/fortune/strfile/
H A Dstrfile.h38 #define STR_ENDSTRING(line,tbl) \
39 (((unsigned char)(line)[0]) == (tbl).str_delim && (line)[1] == '\n')
/freebsd-11-stable/usr.sbin/pc-sysinstall/backend/
H A Dfunctions-users.sh41 # Add the auto-login user line
44 # Add the auto-login user line
72 while read line
75 echo $line | grep -q "^userName=" 2>/dev/null
78 get_value_from_string "${line}"
82 echo $line | grep -q "^userComment=" 2>/dev/null
85 get_value_from_string "${line}"
89 echo $line | grep -q "^userPass=" 2>/dev/null
92 get_value_from_string "${line}"
96 echo $line | gre
[all...]

Completed in 301 milliseconds

1234567891011>>