Searched refs:line (Results 226 - 250 of 1629) sorted by relevance

1234567891011>>

/freebsd-10-stable/usr.bin/checknr/
H A Dchecknr.c83 int lno; /* line number */
206 static int lineno; /* current line number in input file */
317 char *line; local
321 line = NULL;
324 for (lineno = 1; getline(&line, &linecap, f) > 0; lineno++) {
325 if (line[0] == '.') {
329 strncpy(mac, line+1, 4);
351 addcmd(line);
353 chkcmd(line, mac);
357 * At this point we process the line lookin
558 addcmd(char *line) argument
[all...]
/freebsd-10-stable/contrib/byacc/
H A Dreader.c5 /* The line size must be a positive integer. One hundred was chosen */
7 /* Note that if a line exceeds LINESIZE characters, the line buffer */
38 char *cptr, *line; variable
55 char line_format[] = "#line %d \"%s\"\n";
115 if (line)
117 FREE(line);
118 line = 0;
125 if (line == 0 || linesize != (LINESIZE + 1))
127 if (line)
[all...]
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Bin/
H A Dhotuser106 while (my $line = <DTRACE>) {
107 next if $line =~ /^\s*$/;
108 next if $line !~ /^OUT: /;
109 my ($tag, $addr, $count) = split ' ', $line;
/freebsd-10-stable/cddl/contrib/dtracetoolkit/
H A Dhotuser106 while (my $line = <DTRACE>) {
107 next if $line =~ /^\s*$/;
108 next if $line !~ /^OUT: /;
109 my ($tag, $addr, $count) = split ' ', $line;
/freebsd-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/
H A Ddstyle.pl68 # The algorithm to calculate line length from cstyle.
70 $line = $_;
71 if ($line =~ tr/\t/\t/ * 7 + length($line) > 80) {
74 $eline = $line;
79 err "line > 80 characters";
108 # the line ending in a space or tab.)
114 err "space or tab at end of line";
136 err "left brace not on its own line";
140 err "left brace not on its own line";
[all...]
/freebsd-10-stable/contrib/gdb/gdb/
H A Dcomplaints.h38 const char *file, int line, const char *fmt,
H A Dsource.c96 /* Default next line to list. */
108 /* Line number of last line printed. Default for various commands.
113 /* First line number listed by last listing command. */
124 /* Return the first line listed by print_source_lines.
136 calculate the end line and use it in the call to print_source_lines
145 /* Return the current source file for listing and next line to list.
154 cursal.line = current_source_line;
182 /* Return the current default file for listing and next line to list
193 cursal.line = current_source_line;
196 current_source_line = sal->line;
1079 identify_source_line(struct symtab *s, int line, int mid_statement, CORE_ADDR pc) argument
1106 print_source_lines_base(struct symtab *s, int line, int stopline, int noerror) argument
1228 print_source_lines(struct symtab *s, int line, int stopline, int noerror) argument
1338 int line; local
1433 int line; local
[all...]
/freebsd-10-stable/contrib/libreadline/examples/
H A Dfileman.c123 char *line, *s; local
132 line = readline ("FileMan: ");
134 if (!line)
137 /* Remove leading and trailing whitespace from the line.
140 s = stripwhite (line);
148 free (line);
153 /* Execute a command line. */
155 execute_line (line)
156 char *line;
164 while (line[
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DDeclaration.h23 /// The declarations include the file specification, line number, and
45 /// Construct with file specification, and optional line and column.
51 /// @param[in] line
52 /// The line number that describes where this was declared. Set
53 /// to zero if there is no line number information.
59 Declaration (const FileSpec& file_spec, uint32_t line = 0, uint32_t column = 0) :
61 m_line (line)
98 /// Sets the file specification to be empty, and the line and column
116 /// line number and column numbers respectively.
188 /// Get accessor for the declaration line numbe
255 SetLine(uint32_t line) argument
[all...]
/freebsd-10-stable/contrib/mtree/
H A Dexcludes.c78 char *line; local
85 while ((line = fparseln(fp, NULL, NULL, NULL,
88 if (line[0] == '\0')
94 e->glob = line;
/freebsd-10-stable/contrib/ncurses/ncurses/base/
H A Dlib_addstr.c86 struct ldat *line; local
106 line = &(win->_line[y]);
108 SetChar2(line->text[i + x], astr[i]);
110 CHANGED_RANGE(line, x, x + n - 1);
135 struct ldat *line; local
153 line = &(win->_line[y]);
161 if (x > 0 && isWidecExt(line->text[x])) {
163 if (!isWidecExt(line->text[x - i])) {
167 line->text[x - i--] = _nc_render(win, blank);
184 line
[all...]
/freebsd-10-stable/crypto/heimdal/appl/telnet/telnetd/
H A Dsys_term.c341 * array "line" contains the name of the slave side.
349 char *line = Xline; variable
372 if(openpty(&master, &slave, line, 0, 0) == 0){
385 strlcpy(line, p, sizeof(Xline));
406 strlcpy(line, ptsname(p), sizeof(Xline));
420 snprintf(line, sizeof(Xline), "/dev/ptyXX");
421 p1 = &line[8];
422 p2 = &line[9];
424 snprintf(line, sizeof(Xline), "/dev/ptym/ptyXX");
425 p1 = &line[1
953 cleanopen(char *line) argument
1545 rmut(char *line) argument
[all...]
/freebsd-10-stable/usr.bin/grep/regex/
H A Dxmalloc.h14 void *xmalloc_impl(size_t size, const char *file, int line, const char *func);
15 void *xcalloc_impl(size_t nmemb, size_t size, const char *file, int line,
17 void xfree_impl(void *ptr, const char *file, int line, const char *func);
18 void *xrealloc_impl(void *ptr, size_t new_size, const char *file, int line,
/freebsd-10-stable/usr.sbin/mtree/
H A Dexcludes.c67 char *line, *str; local
75 while ((line = fgetln(fp, &len)) != 0) {
76 if (line[len - 1] == '\n')
86 memcpy(str, line, len);
/freebsd-10-stable/usr.sbin/vipw/
H A Dvipw.c70 char *line; local
120 if ((line = fgetln(stdin, &len)) == NULL) {
124 if (len > 0 && (*line == 'N' || *line == 'n'))
/freebsd-10-stable/crypto/openssl/engines/
H A De_atalla_err.h69 static void ERR_ATALLA_error(int function, int reason, char *file, int line);
H A De_gmp_err.h69 static void ERR_GMP_error(int function, int reason, char *file, int line);
H A De_nuron_err.h69 static void ERR_NURON_error(int function, int reason, char *file, int line);
/freebsd-10-stable/contrib/ntp/lib/isc/
H A Dassertions.c54 isc_assertion_failed(const char *file, int line, isc_assertiontype_t type, argument
57 isc_assertion_failed_cb(file, line, type, cond);
105 default_callback(const char *file, int line, isc_assertiontype_t type, argument
119 file, line, isc_assertion_typetotext(type), cond,
/freebsd-10-stable/contrib/ntp/lib/isc/unix/
H A Derrno2result.h37 isc___errno2result(int posixerrno, const char *file, unsigned int line);
/freebsd-10-stable/contrib/ntp/lib/isc/win32/
H A Derrno2result.h36 isc__errno2resultx(int posixerrno, const char *file, int line);
/freebsd-10-stable/contrib/less/
H A Dpattern.c286 match_pattern(pattern, tpattern, line, line_len, sp, ep, notbol, search_type)
289 char *line;
303 matched = match(tpattern, strlen(tpattern), line, line_len, sp, ep);
311 matched = re_search(pattern, line, line_len, 0, line_len, &search_regs) >= 0;
314 *sp = line + search_regs.start[0];
315 *ep = line + search_regs.end[0];
328 matched = !regexec(pattern, line, 1, &rm, flags);
332 *sp = line + rm.rm_so;
333 *ep = line + rm.rm_eo;
345 matched = pcre_exec(pattern, NULL, line, line_le
[all...]
/freebsd-10-stable/usr.bin/cmp/
H A Dspecial.c52 off_t byte, line; local
69 for (byte = line = 1;; ++byte) {
84 diffmsg(file1, file2, byte, line);
89 ++line;
/freebsd-10-stable/contrib/binutils/gas/
H A Dlisting.c38 Put "stuff" onto the title line
40 Put stuff onto the subtitle line
62 time it sees a newline, and -l is on the command line.
86 for the second line
90 on a line. */
129 /* This structure remembers which line from which file goes into which
133 /* Frag which this line of source is nearest to. */
136 /* The actual line in the source file. */
137 unsigned int line; member in struct:list_info_struct
139 /* Pointer to the file info struct for the file which this line
283 unsigned int line; local
451 buffer_line(file_info_type *file, char *line, unsigned int size) argument
867 debugging_pseudo(list_info_type *list, const char *line) argument
1245 listing_source_line(unsigned int line) argument
[all...]
/freebsd-10-stable/contrib/ipfilter/lib/
H A Dvar.c39 char *get_variable(string, after, line)
41 int line;
54 fprintf(stderr, "%d: { without }\n", line);
63 line, *s);
74 fprintf(stderr, "%d: unknown variable '%s'\n", line, s);
79 value = expand_string(s, line);
86 static char *expand_string(oldstring, line)
88 int line;
111 value = get_variable(s, &p3, line);
115 p2 = expand_string(value, line);
[all...]

Completed in 235 milliseconds

1234567891011>>