Searched refs:line (Results 751 - 775 of 1636) sorted by relevance

<<31323334353637383940>>

/freebsd-11-stable/contrib/wpa/hostapd/
H A Dhlr_auc_gw.c48 * can be changed with a command line options if needed.
280 int line, ret = 0; local
291 line = 0;
293 line++;
318 printf("%s:%d - Invalid IMSI\n", fname, line);
327 printf("%s:%d - Invalid Kc\n", fname, line);
336 printf("%s:%d - Invalid SRES\n", fname, line);
345 printf("%s:%d - Invalid RAND\n", fname, line);
392 int line, ret = 0; local
403 line
[all...]
/freebsd-11-stable/contrib/tcsh/
H A Dgethost.c53 * We cannot do that, because some compilers like #line and others
225 char line[INBUFSIZE]; local
254 while ((ptr = fgets(line, sizeof(line), fp)) != NULL) {
318 (void) fprintf(stdout, "%s", line);
/freebsd-11-stable/contrib/expat/tests/
H A Dminicheck.h105 void _fail_unless(int condition, const char *file, int line, const char *msg);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBDeclaration.h40 void SetLine(uint32_t line);
H A DSBLineEntry.h44 void SetLine(uint32_t line);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorHandling.h123 unsigned line = 0);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DTSanRuntime.h73 std::string &filename, uint32_t &line);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.h68 bool Complete(CompletionRequest &request, unsigned line, unsigned pos,
150 /// The line in which the completion marker should be placed.
151 /// The first line is represented by the value 0.
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.h61 std::string &line) override;
80 std::string m_expr_lines; // Multi-line expression support
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DLineEntry.h19 /// A line table entry class.
46 /// If \b true, display the filename with the line entry which
67 /// Dumps information specific to a process that stops at this line entry to
74 /// Returns \b true if the file and line were properly dumped,
78 /// Check if a line entry object is valid.
81 /// Returns \b true if the line entry contains a valid section
82 /// offset address, file index, and line number, \b false
101 /// same source line that are contiguous.
103 /// A compiler may emit multiple line entries for a single source line,
143 uint32_t line; ///< The source line number, or zero if there is no line number member in struct:lldb_private::LineEntry
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/base/
H A Dlib_addch.c242 struct ldat *line; local
251 line = win->_line + y;
253 CHANGED_CELL(line, x);
327 * Check if the character will fit on the current line. If it does
328 * not fit, fill in the remainder of the line with blanks. and
329 * move to the next line.
342 line = win->_line + y;
374 line->text[x] = value;
375 CHANGED_CELL(line, x);
385 line
[all...]
H A Dresizeterm.c126 if (rop->win == win && rop->line != 0) {
150 if (rop->line < 0) {
151 result -= rop->line;
224 if (rop != 0 && rop->line < 0) {
499 && rop->line < 0) {
/freebsd-11-stable/contrib/gcc/
H A Ddiagnostic.c165 ? build_message_string ("%s:%d:%d: %s", s.file, s.line, s.column, text)
167 : build_message_string ("%s:%d: %s", s.file, s.line, text));
192 s.file, s.line);
308 xloc.file, xloc.line);
314 xloc.file, xloc.line);
453 produces no prefix and disables line-wrapping. Use rarely. */
513 given on the command line, in which case it issues an error. Use
518 of the -pedantic command-line switch. To get a warning enabled
644 fancy_abort (const char *file, int line, const char *function)
646 internal_error ("in %s, at %s:%d", function, trim_filename (file), line);
640 fancy_abort(const char *file, int line, const char *function) argument
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Devent-top.c76 accumulates the line read up to the point of invocation. In the
79 a full command line. This latter routine is the asynchronous analog
81 for) readline to read the command line and pass it back to
83 the command line already available as its parameter. INPUT_HANDLER is
85 line of input is ready. CALL_READLINE is to be set to the function
142 the user types '\' at the end of a command line. This is necessary
143 because each line of input is handled by a different call to
186 will need to call after a whole line is read. This also displays
239 1. when the user enters a command line which is ended by '\'
240 indicating that the command will continue on the next line
[all...]
/freebsd-11-stable/tools/tools/shlib-compat/
H A Dshlib-compat.py718 line = fd.readline()
719 if (not line):
721 line = line.strip()
722 if (line):
723 self.parser(line)
729 def parse_begin(self, line):
730 print(line)
747 def parse_begin(self, line):
748 self.parse_header(line)
[all...]
/freebsd-11-stable/sys/i386/pci/
H A Dpci_cfgreg.c109 pci_i386_map_intline(int line) argument
111 if (line == 0 || line >= 128)
113 return (line);
217 uint32_t line; local
225 line = pci_docfgregread(bus, slot, func, PCIR_INTLINE, 1);
226 return (pci_i386_map_intline(line));
/freebsd-11-stable/contrib/ncurses/ncurses/tty/
H A Dhashmap.c44 and virtual screens. When a line pair is recognized, the old line index is
45 placed in the oldindex member of the virtual screen line, to be used by the
49 sped up by hashing. If a line hash is unique in both screens, those
162 * Returns true when moving line 'from' to line 'to' seems to be cost
163 * effective. 'blank' indicates whether the line 'to' would become blank.
238 ("connected new line %d to old line %d (backward continuation)",
242 ("not connecting new line
482 char line[BUFSIZ], *st; local
[all...]
/freebsd-11-stable/share/mk/
H A Dmeta2deps.py204 self.line = 0
352 """give file and line number causing exception"""
357 print('{}:{}: '.format(self.name, self.line), end=' ', file=sys.stderr)
364 CMD "command-line"
400 self.line = 0
405 for line in f:
406 self.line += 1
408 if not line[0] in interesting:
411 print("input:", line, end=' ', file=self.debug_out)
412 w = line
[all...]
/freebsd-11-stable/usr.bin/tip/tip/
H A Dcmds.c111 char line[BUFSIZ], *cp; local
127 (void)snprintf(line, sizeof(line), "cat %s;echo ''|tr '\\012' '\\01'", argv[0]);
128 transfer(line, fd, "\01");
403 char line[BUFSIZ]; local
422 (void)snprintf(line, sizeof(line), "cat>%s\r", argv[1]);
424 (void)snprintf(line, sizeof(line),
426 transmit(fp, "\04", line);
[all...]
/freebsd-11-stable/contrib/bmake/mk/
H A Dmeta2deps.py229 self.line = 0
381 """give file and line number causing exception"""
386 print('{}:{}: '.format(self.name, self.line), end=' ', file=sys.stderr)
393 CMD "command-line"
429 self.line = 0
434 for line in f:
435 self.line += 1
437 if not line[0] in interesting:
440 print("input:", line, end=' ', file=self.debug_out)
441 w = line
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Dread.c60 int line; /* line number in the file */ member in struct:mparse
110 "whitespace at end of input line",
137 "missing description line, using \"\"",
138 "description line outside NAME section",
156 "first macro on line",
157 "line scope broken",
158 "skipping blank line in line scope",
173 "missing argument, using next line",
[all...]
/freebsd-11-stable/contrib/file/src/
H A Dfile.c91 private int /* Global command-line options */
497 char *line = NULL; local
511 while ((len = getline(&line, &llen, f)) > 0) {
512 if (line[len - 1] == '\n')
513 line[len - 1] = '\0';
514 cwid = file_mbswidth(line);
522 while ((len = getline(&line, &llen, f)) > 0) {
523 if (line[len - 1] == '\n')
524 line[len - 1] = '\0';
525 e |= process(ms, line, wi
[all...]
/freebsd-11-stable/contrib/binutils/ld/
H A Dldmisc.c319 We do not always have a line number available so if
470 info_assert (const char *file, unsigned int line) argument
472 einfo (_("%F%P: internal error %s %d\n"), file, line);
519 ld_abort (const char *file, int line, const char *fn)
522 einfo (_("%P: internal error: aborting at %s line %d in %s\n"),
523 file, line, fn);
525 einfo (_("%P: internal error: aborting at %s line %d\n"),
526 file, line);
518 ld_abort(const char *file, int line, const char *fn) argument
/freebsd-11-stable/contrib/pf/libevent/
H A Dbuffer.c199 * Reads a line terminated by either '\r\n', '\n\r' or '\r' or '\n'.
208 char *line; local
219 if ((line = malloc(i + 1)) == NULL) {
225 memcpy(line, data, i);
226 line[i] = '\0';
229 * Some protocols terminate a line with '\r\n', so check for
242 return (line);
/freebsd-11-stable/contrib/byacc/test/btyacc/
H A Dquote_calc4-s.tab.c120 #line 2 "quote_calc4.y"
130 #line 131 "quote_calc4-s.tab.c"
485 #line 73 "quote_calc4.y"
526 #line 527 "quote_calc4-s.tab.c"
1194 #line 35 "quote_calc4.y"
1198 #line 39 "quote_calc4.y"
1202 #line 41 "quote_calc4.y"
1206 #line 45 "quote_calc4.y"
1210 #line 47 "quote_calc4.y"
1214 #line 4
[all...]

Completed in 350 milliseconds

<<31323334353637383940>>