Searched refs:line (Results 401 - 425 of 1636) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/gdb/gdb/tui/
H A Dtui.h93 extern void tui_show_source (const char *file, int line);
/freebsd-11-stable/contrib/binutils/gas/
H A Dmacro.h68 unsigned int line; /* Line number of definition. */ member in struct:macro_struct
H A Ddwarf2dbg.h33 unsigned int line; member in struct:dwarf2_line_info
45 the file number, LINENO the line number and the (optional) COLUMN
61 /* A hook to allow the target backend to inform the line number state
/freebsd-11-stable/sys/dev/ath/
H A Dif_ath_misc.h112 extern void _ath_power_setpower(struct ath_softc *sc, int power_state, const char *file, int line);
113 extern void _ath_power_set_selfgen(struct ath_softc *sc, int power_state, const char *file, int line);
114 extern void _ath_power_set_power_state(struct ath_softc *sc, int power_state, const char *file, int line);
115 extern void _ath_power_restore_power_state(struct ath_softc *sc, const char *file, int line);
/freebsd-11-stable/crypto/openssl/engines/
H A De_aep_err.h69 static void ERR_AEPHK_error(int function, int reason, char *file, int line);
H A De_chil_err.h69 static void ERR_HWCRHK_error(int function, int reason, char *file, int line);
/freebsd-11-stable/usr.bin/from/
H A Dfrom.c145 match(const char *line, const char *sender) argument
151 if (isspace(ch = *line))
153 ++line;
157 for (p = sender, t = line;;) {
/freebsd-11-stable/usr.sbin/pc-sysinstall/backend/
H A Dfunctions-installcomponents.sh49 while read line
51 CFILE="`echo $line | cut -d ':' -f 1`"
52 CFILEMD5="`echo $line | cut -d ':' -f 2`"
53 CFILE2MD5="`echo $line | cut -d ':' -f 3`"
/freebsd-11-stable/stand/userboot/userboot/
H A Dhost.c130 char line[80]; local
136 snprintf(line, sizeof(line), " host%d: Host filesystem\n", 0);
137 return (pager_output(line));
/freebsd-11-stable/contrib/tcsh/
H A Dtc.func.c1165 xprintf(CGETS(22, 7, "parsing command line [%S]\n"), cmd);
1224 xprintf(CGETS(22, 10, "command line now is:\n"));
1267 xprintf(CGETS(22, 11, "parsing command line\n"));
1299 xprintf(CGETS(22, 13, "command line now is:\n"));
1834 case '\n': /* The end of the line. */
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBCompileUnit.i14 SBCompileUnit supports line entry iteration. For example,
23 print('line entry: %s:%d' % (str(lineEntry.GetFileSpec()),
30 line entry: /Volumes/data/lldb/svn/trunk/test/python_api/symbol-context/main.c:20
33 line entry: /Volumes/data/lldb/svn/trunk/test/python_api/symbol-context/main.c:21
36 line entry: /Volumes/data/lldb/svn/trunk/test/python_api/symbol-context/main.c:22
39 line entry: /Volumes/data/lldb/svn/trunk/test/python_api/symbol-context/main.c:23
72 uint32_t line,
77 uint32_t line,
124 '''Iterate over all line entries in a lldb.SBCompileUnit object.'''
128 '''Return the number of line entrie
[all...]
/freebsd-11-stable/stand/common/
H A Dinterp_lua.c136 interp_run(const char *line) argument
145 LDBG("executing line...");
146 if ((status = luaL_dostring(luap, line)) != 0) {
149 * The line wasn't executable as lua; run it through parse to
150 * to get consistent parsing of command line arguments, then
155 if (parse(&argc, &argv, line) == 0) {
183 printf("Failed to parse \'%s\'\n", line);
/freebsd-11-stable/contrib/libxo/xolint/
H A Dxolint.pl136 local $ln, $rln, $line, $replay;
139 $line = $input[$ln];
142 if ($line =~ /^\#/) {
143 my($num, $fn) = ($line =~ /\#\s*(\d+)\s+"(.+)"/);
148 next unless $line =~ /xo_emit\(/;
172 $replay = $curln . " " . $line;
225 $line = $input[++$ln];
227 $replay .= $curln . " " . $line;
228 @data = split(//, $line);
/freebsd-11-stable/lib/libusbhid/
H A Dusage.c77 char line[100], name[100], *p, *n; local
89 if (fgets(line, sizeof line, f) == NULL)
91 if (line[0] == '#')
93 for (p = line; *p && isspace(*p); p++)
97 if (sscanf(line, " * %[^\n]", name) == 1)
99 else if (sscanf(line, " 0x%x %[^\n]", &no, name) != 2 &&
100 sscanf(line, " %d %[^\n]", &no, name) != 2)
101 errx(1, "file %s, line %d, syntax error",
109 if (isspace(line[
[all...]
/freebsd-11-stable/libexec/comsat/
H A Dcomsat.c225 unsigned char line[BUFSIZ]; local
243 while (fgets(line, sizeof(line), fi) != NULL) {
245 if (line[0] == '\n') {
249 if (line[0] == ' ' || line[0] == '\t' ||
250 (strncmp(line, "From:", 5) &&
251 strncmp(line, "Subject:", 8)))
260 for (cp = line; (ch = *cp) && ch != '\n'; ++cp, --charcnt) {
/freebsd-11-stable/contrib/ntp/sntp/libopts/
H A Dload.c475 * @param[in,out] line source line with long option name in it
480 load_opt_line(tOptions * opts, tOptState * opt_state, char * line, argument
484 * When parsing a stored line, we only look at the characters after
488 line = SPN_LOAD_LINE_SKIP_CHARS(line);
491 char * arg = assemble_arg_val(line, load_mode);
493 if (IS_OPTION_NAME_CHAR(line[1])) {
495 if (! SUCCESSFUL(opt_find_long(opts, line, opt_state)))
498 } else if (! SUCCESSFUL(opt_find_short(opts, *line, opt_stat
570 optionLoadLine(tOptions * opts, char const * line) argument
[all...]
/freebsd-11-stable/usr.bin/chpass/
H A Dedit.c75 char *line; local
94 if ((line = fgetln(stdin, &len)) == NULL) {
98 if (len > 0 && (*line == 'N' || *line == 'n'))
206 int line; local
224 for (line = 1; (buf = fgetln(fp, &len)) != NULL; ++line) {
231 warnx("%s: unrecognized field on line %d",
232 tfn, line);
247 warnx("%s: line
[all...]
/freebsd-11-stable/crypto/openssh/
H A Ddh.c46 parse_prime(int linenum, char *line, struct dhgroup *dhg) argument
54 cp = line;
149 char line[4096]; local
162 while (fgets(line, sizeof(line), f)) {
164 if (!parse_prime(linenum, line, &dhg))
190 while (fgets(line, sizeof(line), f)) {
191 if (!parse_prime(linenum, line, &dhg))
204 logit("WARNING: line
[all...]
/freebsd-11-stable/usr.bin/newkey/
H A Dupdate.c240 char line[256]; local
279 while (fgets(line, sizeof (line), rf)) {
280 if (err < 0 && match(line, name)) {
296 fputs(line, wf);
332 match(char *line, char *name) argument
337 return (strncmp(line, name, len) == 0 &&
338 (line[len] == ' ' || line[len] == '\t'));
/freebsd-11-stable/usr.sbin/rpc.ypupdated/
H A Dupdate.c237 char line[256]; local
276 while (fgets(line, sizeof (line), rf)) {
277 if (err < 0 && match(line, name)) {
293 fputs(line, wf);
328 match(char *line, char *name) argument
333 return (strncmp(line, name, len) == 0 &&
334 (line[len] == ' ' || line[len] == '\t'));
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBLineEntry.cpp98 uint32_t line = 0; local
100 line = m_opaque_up->line;
102 return line;
122 void SBLineEntry::SetLine(uint32_t line) { argument
123 LLDB_RECORD_METHOD(void, SBLineEntry, SetLine, (uint32_t), line);
125 ref().line = line;
131 ref().line = column;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_printer.cpp151 buffer->append("%d", info.line);
168 // File/line information.
169 RenderSourceLocation(buffer, info.file, info.line, info.column, vs_style,
175 RenderSourceLocation(buffer, info.file, info.line, info.column,
219 buffer->append("%d", DI->line);
235 int line, int column, bool vs_style,
237 if (vs_style && line > 0) {
238 buffer->append("%s(%d", StripPathPrefix(file, strip_path_prefix), line);
246 if (line > 0) {
247 buffer->append(":%d", line);
234 RenderSourceLocation(InternalScopedString *buffer, const char *file, int line, int column, bool vs_style, const char *strip_path_prefix) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dsysinfo.c430 svn_stringbuf_t *line;
433 err = svn_stream_readline(lsbinfo, &line, "\n", &eof, pool);
437 key = stringbuf_split_key(line, ':');
442 distributor = line->data;
444 description = line->data;
446 release = line->data;
448 codename = line->data;
507 /* Look for the PRETTY_NAME line. */ local
510 svn_stringbuf_t *line;
513 err = svn_stream_readline(stream, &line, "\
427 svn_stringbuf_t *line; local
589 svn_stringbuf_t *line; local
766 svn_stringbuf_t *line; local
[all...]
/freebsd-11-stable/tests/sys/netgraph/
H A Dutil.c52 atf_tc_fail_requirement(file, line, "%s (%s)", \
72 char const *file, size_t line)
88 char const *file, size_t line)
103 char const *file, size_t line)
116 char const *file, size_t line)
129 char const *file, size_t line)
150 char const *file, size_t line)
232 char const *file, size_t line)
250 _ng_init(char const *file, size_t line) argument
70 _ng_connect(char const *path1, char const *hook1, char const *path2, char const *hook2, char const *file, size_t line) argument
86 _ng_mkpeer(char const *path1, char const *hook1, char const *type, char const *hook2, char const *file, size_t line) argument
102 _ng_rmhook(char const *path, char const *hook, char const *file, size_t line) argument
115 _ng_name(char const *path, char const *name, char const *file, size_t line) argument
128 _ng_shutdown(char const *path, char const *file, size_t line) argument
148 _ng_send_data(char const *hook, void const *data, size_t len, char const *file, size_t line) argument
231 _ng_send_msg(char const *path, char const *msg, char const *file, size_t line) argument
/freebsd-11-stable/usr.bin/systat/
H A Dnetstat.c100 short ni_line; /* line on screen */
463 * below to reflect the deleted line.
538 char line[80], *cp; local
554 snprintf(line, sizeof(line), "%.*s.", 16, inetname(sa));
555 cp = strchr(line, '\0');
559 snprintf(cp, sizeof(line) - (cp - line), "%.8s",
562 snprintf(cp, sizeof(line) - (cp - line), "
581 static char line[NI_MAXHOST]; local
[all...]

Completed in 172 milliseconds

<<11121314151617181920>>