Searched refs:line (Results 176 - 200 of 1467) sorted by relevance

1234567891011>>

/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Shell/
H A Dsh_who.d3 * sh_who.d - trace Bourne shell line execution by process using DTrace.
16 * LINES Number of times a line was executed
47 sh*:::line
/freebsd-10.0-release/contrib/ofed/libsdp/src/
H A Dconfig_parser.h81 #line 167 "./config_parser.y"
87 #line 88 "y.tab.h"
/freebsd-10.0-release/contrib/ofed/management/infiniband-diags/scripts/
H A Dibfindnodesusing.pl61 foreach my $line (@lines) {
62 if ($line =~ /\w+\s+(\d+)\s+:\s+\(Channel Adapter.*:\s+'(.*)'\)/) {
178 while (my $line = <IBNET_TOPO>) {
180 if ($line =~ /^Switch.*\"S-(.*)\"\s+# (.*) port.*/) {
190 if ($line =~ /^Ca.*/ || $line =~ /^Rt.*/) { $in_switch = "no"; }
192 if ($line =~ /^\[(\d+)\].*/ && $in_switch eq "yes") {
193 $ports{$1} = $line;
/freebsd-10.0-release/contrib/opie/libopie/
H A Dlogwtmp.c19 Modified by cmetz for OPIE 2.32. Don't leave line=NULL, skip
20 past /dev/ in line. Fill in ut_host on systems with UTMPX and
115 VOIDRET opielogwtmp FUNCTION((line, name, host), char *line AND char *name AND char *host AND char *id)
127 if (!line) {
132 line = "";
134 if (!strncmp(line, "/dev/", 5))
135 line += 5;
153 strncpy(ut.ut_line, line, sizeof(ut.ut_line));
170 strncpy(utx.ut_line, line, sizeo
[all...]
/freebsd-10.0-release/contrib/texinfo/info/
H A Dvariables.c102 char *line; local
125 line = info_read_in_echo_area (active_window, prompt);
132 if (!line)
136 canonicalize_whitespace (line);
137 if (*line)
138 *(var->value) = atoi (line);
142 free (line);
168 line = info_read_completing_in_echo_area (window, prompt, array);
176 if (!line)
183 if (!*line)
207 char *line; local
[all...]
/freebsd-10.0-release/gnu/usr.bin/rcs/ident/
H A Dident.c87 * removed printing of new line after last file.
227 char line[BUFSIZ]; local
231 tp = line;
238 if (tp < line+sizeof(line)-4)
245 if (tp == line)
257 if (tp < line+sizeof(line)-2)
268 VOID printf(" %c%s\n", KDELIM, line);
/freebsd-10.0-release/sys/tools/
H A Dmakeobjops.awk49 print " -l set line width for output files [80]";
81 # If a line exceeds maxlength, split it into multiple
89 function format_line (line, maxlength, indent)
93 while (length(line) > maxlength) {
99 if (!match(substr(line, 1, maxlength + 1), /^.*, /))
101 rline = rline substr(line, 1, RLENGTH - 1) "\n";
102 line = sprintf("%*s", indent, "") substr(line, RLENGTH + 1);
104 return rline line;
133 # Handle "INTERFACE" line
[all...]
/freebsd-10.0-release/tools/regression/p1003_1b/
H A Dprutil.c36 int sched_is(int line, struct sched_param *p, int shouldbe) argument
54 "At line %d the scheduler should be %s yet it is %s.\n",
55 line, sched_text(shouldbe), sched_text(scheduler));
/freebsd-10.0-release/usr.bin/grep/regex/
H A Dxmalloc.c33 int line;
93 const char *file, int line, const char *func)
110 new->line = line;
215 item->file, item->line, item->func, item->bytes, item->ptr);
241 xmalloc_impl(size_t size, const char *file, int line, const char *func)
252 printf("xmalloc: forced failure %s:%d: %s\n", file, line, func);
259 file, line, func);
267 hash_table_add(xmalloc_table, ptr, (int)size, file, line, func);
272 xcalloc_impl(size_t nmemb, size_t size, const char *file, int line,
32 int line; member in struct:hashTableItemRec
91 hash_table_add(hashTable *tbl, void *ptr, int bytes, const char *file, int line, const char *func) argument
239 xmalloc_impl(size_t size, const char *file, int line, const char *func) argument
270 xcalloc_impl(size_t nmemb, size_t size, const char *file, int line, const char *func) argument
302 xfree_impl(void *ptr, const char *file, int line, const char *func) argument
315 xrealloc_impl(void *ptr, size_t new_size, const char *file, int line, const char *func) argument
[all...]
/freebsd-10.0-release/contrib/unbound/util/
H A Dconfigparser.c18 #line 39 "util/configparser.y"
43 #line 64 "util/configparser.y"
54 #line 54 "util/configparser.c"
842 #line 1277 "util/configparser.y"
845 #line 845 "util/configparser.c"
1052 #line 118 "util/configparser.y"
1058 #line 167 "util/configparser.y"
1071 #line 183 "util/configparser.y"
1084 #line 199 "util/configparser.y"
1094 #line 20
[all...]
/freebsd-10.0-release/tools/tools/kdrv/
H A DKernelDriver58 # linttext Lines between this and a subsequent 'end' line are added
162 while {[gets $fh line] >= 0} {
165 if {([llength $line] == 0) ||
166 ([string index $line 0] == "\#")} {
171 switch -- [lindex $line 0] {
173 set Drv(description) [lindex $line 1];
176 set Drv(driver) [lindex $line 1];
179 set path [lindex $line 1];
184 set name [lindex $line 2];
189 set path [lindex $line
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dcomplaints.c57 int line; member in struct:complain
127 int line, const char *fmt)
141 && complaint->line == line)
149 complaint->line = line;
170 vcomplaint (struct complaints **c, const char *file, int line, const char *fmt, argument
174 struct complain *complaint = find_complaint (complaints, file, line, fmt);
188 internal_vwarning (complaint->file, complaint->line, complaint->fmt, args);
208 /* Force a line
126 find_complaint(struct complaints *complaints, const char *file, int line, const char *fmt) argument
253 internal_complaint(struct complaints **complaints, const char *file, int line, const char *fmt, ...) argument
[all...]
/freebsd-10.0-release/crypto/heimdal/appl/login/
H A Dlogin_access.c20 * addresses (or network numbers), or on terminal line names in case of
61 char line[BUFSIZ]; local
77 * Process the table one line at a time and stop at the first match.
85 while (!match && fgets(line, sizeof(line), fp)) {
87 if (line[end = strlen(line) - 1] != '\n') {
88 syslog(LOG_ERR, "%s: line %d: missing newline or line too long",
92 if (line[
[all...]
/freebsd-10.0-release/crypto/heimdal/appl/rsh/
H A Dlogin_access.c20 * addresses (or network numbers), or on terminal line names in case of
61 char line[BUFSIZ]; local
77 * Process the table one line at a time and stop at the first match.
85 while (!match && fgets(line, sizeof(line), fp)) {
87 if (line[end = strlen(line) - 1] != '\n') {
88 syslog(LOG_ERR, "%s: line %d: missing newline or line too long",
92 if (line[
[all...]
/freebsd-10.0-release/lib/libpam/modules/pam_login_access/
H A Dlogin_access.c4 * addresses (or network numbers), or on terminal line names in case of
57 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-10.0-release/libexec/fingerd/
H A Dfingerd.c77 char **ap, *av[ENTRIES + 1], **comp, line[1024], *prog; local
118 if (!fgets(line, sizeof(line), stdin))
136 end = memchr(line, 0, sizeof(line));
138 if ((t = malloc(sizeof(line) + 1)) == NULL)
140 memcpy(t, line, sizeof(line));
141 t[sizeof(line)] = 0;
143 if ((t = strdup(line))
[all...]
/freebsd-10.0-release/usr.bin/lam/
H A Dlam.c62 char eol; /* end of line character */
63 const char *sepstring; /* string to print before each line */
68 static int nofinalnl; /* normally append \n to each output line */
69 static char line[BIGBUFSIZ]; variable
88 linep = line;
93 fputs(line, stdout);
181 strlcpy(lp, ip->sepstring, line + sizeof(line) - lp);
184 snprintf(lp, line + sizeof(line)
[all...]
/freebsd-10.0-release/usr.sbin/chkgrp/
H A Dchkgrp.c60 char *line, *f[4], *p; local
87 /* check line by line */
89 if ((line = fgetln(gf, &len)) == NULL)
91 if (len > 0 && line[len - 1] != '\n') {
92 warnx("%s: line %d: no newline character", gfn, n);
95 while (len && isspace(line[len-1]))
99 for (p = line; p < (line + len); p++)
104 printf("%*.*s\n", len, len, line);
[all...]
/freebsd-10.0-release/sys/kern/
H A Dkern_sx.c140 #define _sx_assert(sx, what, file, line)
247 _sx_slock(struct sx *sx, int opts, const char *file, int line) argument
255 curthread, sx->lock_object.lo_name, file, line));
257 ("sx_slock() of destroyed sx @ %s:%d", file, line));
258 WITNESS_CHECKORDER(&sx->lock_object, LOP_NEWORDER, file, line, NULL);
259 error = __sx_slock(sx, opts, file, line);
261 LOCK_LOG_LOCK("SLOCK", &sx->lock_object, 0, 0, file, line);
262 WITNESS_LOCK(&sx->lock_object, 0, file, line);
270 sx_try_slock_(struct sx *sx, const char *file, int line) argument
279 curthread, sx->lock_object.lo_name, file, line));
300 _sx_xlock(struct sx *sx, int opts, const char *file, int line) argument
325 sx_try_xlock_(struct sx *sx, const char *file, int line) argument
357 _sx_sunlock(struct sx *sx, const char *file, int line) argument
373 _sx_xunlock(struct sx *sx, const char *file, int line) argument
396 sx_try_upgrade_(struct sx *sx, const char *file, int line) argument
429 sx_downgrade_(struct sx *sx, const char *file, int line) argument
499 _sx_xlock_hard(struct sx *sx, uintptr_t tid, int opts, const char *file, int line) argument
720 _sx_xunlock_hard(struct sx *sx, uintptr_t tid, const char *file, int line) argument
782 _sx_slock_hard(struct sx *sx, int opts, const char *file, int line) argument
967 _sx_sunlock_hard(struct sx *sx, const char *file, int line) argument
1061 _sx_assert(const struct sx *sx, int what, const char *file, int line) argument
[all...]
H A Dkern_rmlock.c73 #define _rm_assert(c, what, file, line)
587 _rm_wlock_debug(struct rmlock *rm, const char *file, int line) argument
595 curthread, rm->lock_object.lo_name, file, line));
597 ("rm_wlock() of destroyed rmlock @ %s:%d", file, line));
598 _rm_assert(rm, RA_UNLOCKED, file, line);
601 file, line, NULL);
605 LOCK_LOG_LOCK("RMWLOCK", &rm->lock_object, 0, 0, file, line);
607 WITNESS_LOCK(&rm->lock_object, LOP_EXCLUSIVE, file, line);
614 _rm_wunlock_debug(struct rmlock *rm, const char *file, int line) argument
621 ("rm_wunlock() of destroyed rmlock @ %s:%d", file, line));
630 _rm_rlock_debug(struct rmlock *rm, struct rm_priotracker *tracker, int trylock, const char *file, int line) argument
643 rm->lock_object.lo_name, file, line)); local
679 _rm_runlock_debug(struct rmlock *rm, struct rm_priotracker *tracker, const char *file, int line) argument
702 _rm_wlock_debug(struct rmlock *rm, const char *file, int line) argument
709 _rm_wunlock_debug(struct rmlock *rm, const char *file, int line) argument
716 _rm_rlock_debug(struct rmlock *rm, struct rm_priotracker *tracker, int trylock, const char *file, int line) argument
724 _rm_runlock_debug(struct rmlock *rm, struct rm_priotracker *tracker, const char *file, int line) argument
744 _rm_assert(const struct rmlock *rm, int what, const char *file, int line) argument
[all...]
/freebsd-10.0-release/contrib/byacc/test/
H A Dgrammar.tab.c98 #line 9 "grammar.y"
108 #line 81 "grammar.y"
323 * the parameter declaration on the same line. If the lexer scans a comment
326 * after scanning a comment or end of line.
347 unsigned line_num; /* current line number in input file */
385 #line 386 "grammar.tab.c"
913 #line 1014 "grammar.y"
941 put_error(); /* tell what line we're on, and what file */
1084 #line 1085 "grammar.tab.c"
1291 #line 37
[all...]
/freebsd-10.0-release/usr.bin/csup/
H A Dauth.c95 char *line, *cmd, *challenge, *realm, *client, *srvresponse, *msg; local
103 line = stream_getln(s, NULL);
104 cmd = proto_get_ascii(&line);
105 realm = proto_get_ascii(&line);
106 challenge = proto_get_ascii(&line);
108 line != NULL ||
136 line = stream_getln(s, NULL);
137 cmd = proto_get_ascii(&line);
138 if (cmd == NULL || line == NULL)
141 srvresponse = proto_get_ascii(&line);
167 char *home, *line, authfile[FILENAME_MAX]; local
221 auth_parsetoken(char **line, char *buf, int len) argument
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_diff/
H A Dparse-diff.c185 * so we can comfortably parse the line
198 /* Try to parse the line number the hunk starts at. */
274 /* Read a line of original or modified hunk text from the specified
276 * Leading unidiff symbols ('+', '-', and ' ') are removed from the line,
335 /* Return the line as-is. */
389 svn_stringbuf_t *line; local
408 SVN_ERR(svn_io_file_readline(hunk->apr_file, &line, eol, eof, max_len,
418 if (parse_hunk_header(line->data, &dummy, "@@", scratch_pool))
421 line = svn_stringbuf_createf(result_pool,
428 else if (parse_hunk_header(line
496 svn_stringbuf_t *line; local
815 grab_filename(const char **file_name, const char *line, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
840 diff_minus(enum parse_state *new_state, char *line, svn_patch_t *patch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
859 diff_plus(enum parse_state *new_state, char *line, svn_patch_t *patch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
878 git_start(enum parse_state *new_state, char *line, svn_patch_t *patch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
983 git_minus(enum parse_state *new_state, char *line, svn_patch_t *patch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1005 git_plus(enum parse_state *new_state, char *line, svn_patch_t *patch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1027 git_move_from(enum parse_state *new_state, char *line, svn_patch_t *patch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1040 git_move_to(enum parse_state *new_state, char *line, svn_patch_t *patch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1055 git_copy_from(enum parse_state *new_state, char *line, svn_patch_t *patch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1068 git_copy_to(enum parse_state *new_state, char *line, svn_patch_t *patch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1082 git_new_file(enum parse_state *new_state, char *line, svn_patch_t *patch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1095 git_deleted_file(enum parse_state *new_state, char *line, svn_patch_t *patch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1260 svn_stringbuf_t *line; local
[all...]
/freebsd-10.0-release/usr.sbin/lpr/common_source/
H A Ddisplayq.c140 while ((i = read(fd, line, sizeof(line))) > 0)
141 (void) fwrite(line, 1, i, stdout);
197 while ((i = read(fd, line,
198 sizeof(line))) > 0)
199 fwrite(line, 1, i, stdout);
231 (void) snprintf(line, sizeof(line), "%c%s", format ? '\4' : '\3',
233 cp = line;
234 for (i = 0; i < requests && cp-line
[all...]
/freebsd-10.0-release/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;

Completed in 177 milliseconds

1234567891011>>