Searched refs:line (Results 276 - 300 of 1636) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/tzdata/
H A Dziguard.awk27 # The command line should set DATAFORM.
38 # If this line should differ due to Czechoslovakia using negative SAVE values,
48 # If this line should differ due to Ireland using negative SAVE values,
64 # If this line should differ due to Namibia using negative SAVE values,
92 # In rearguard format, change the Japan rule line with "Sat>=8 25:00"
117 # If a Link line is followed by a Zone line for the same data, comment
118 # out the Link line. This can happen if backzone overrides a Link
124 sub(/^Link/, "#Link", line[linkline[$2]])
127 { line[N
[all...]
/freebsd-11-stable/tools/tools/net80211/wlanwatch/
H A Dwlanwatch.c142 static char line[MAXHOSTNAMELEN + 1]; local
158 strcpy(line, "default");
179 strncpy(line, cp, sizeof(line) - 1);
180 line[sizeof(line) - 1] = '\0';
182 (void) sprintf(line, "%s", inet_ntoa(in));
213 line, sizeof(line), NULL, 0, niflags) != 0)
214 strncpy(line, "invali
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Dmdoc.c56 * Main parse routine. Parses a single line -- really just hands off to
63 if (mdoc->last->type != ROFFT_EQN || ln > mdoc->last->line)
86 (*mdoc_macros[tok].fp)(mdoc, tok, line, ppos, pos, buf);
90 mdoc_tail_alloc(struct roff_man *mdoc, int line, int pos, enum roff_tok tok) argument
94 p = roff_node_alloc(mdoc, line, pos, ROFFT_TAIL, tok);
100 mdoc_endbody_alloc(struct roff_man *mdoc, int line, int pos, argument
107 p = roff_node_alloc(mdoc, line, pos, ROFFT_BODY, tok);
117 mdoc_block_alloc(struct roff_man *mdoc, int line, int pos, argument
122 p = roff_node_alloc(mdoc, line, pos, ROFFT_BLOCK, tok);
144 mdoc_elem_alloc(struct roff_man *mdoc, int line, in argument
179 mdoc_ptext(struct roff_man *mdoc, int line, char *buf, int offs) argument
[all...]
/freebsd-11-stable/stand/common/
H A Dcommands.c66 char line[81], *cp, *ep; local
71 if (fgetstr(line, 80, fd) < 0)
74 if (strlen(line) < 3 || line[0] != '#' || line[1] != ' ')
77 cp = line + 2;
439 char line[80]; local
444 snprintf(line, sizeof(line), "*** FILE %s BEGIN ***\n",
446 if (pager_output(line))
487 char line[80]; local
[all...]
/freebsd-11-stable/contrib/less/
H A Dlinenum.c12 * Code to handle displaying line numbers.
14 * Finding the line number of a given file position is rather tricky.
20 * So we use the function add_lnum to cache line numbers.
22 * line numbers when we run out of space in our table. A line
24 * other line numbers. For example, we'd rather keep lines
29 * The function currline() returns the line number of a given
31 * to cache the line number. Therefore currline is occasionally
32 * called to make sure we cache line numbers often enough.
38 * Structure to keep track of a line numbe
47 LINENUM line; /* Line number */ member in struct:linenum_info
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_rwlock.c150 #define __rw_assert(c, what, file, line)
265 _rw_wlock_cookie(volatile uintptr_t *c, const char *file, int line) argument
275 curthread, rw->lock_object.lo_name, file, line));
277 ("rw_wlock() of destroyed rwlock @ %s:%d", file, line));
279 line, NULL);
283 _rw_wlock_hard(rw, v, file, line);
286 0, 0, file, line, LOCKSTAT_WRITER);
288 LOCK_LOG_LOCK("WLOCK", &rw->lock_object, 0, rw->rw_recurse, file, line);
289 WITNESS_LOCK(&rw->lock_object, LOP_EXCLUSIVE, file, line);
308 curthread, rw->lock_object.lo_name, file, line));
342 __rw_try_wlock(volatile uintptr_t *c, const char *file, int line) argument
351 _rw_wunlock_cookie(volatile uintptr_t *c, const char *file, int line) argument
653 rw->lock_object.lo_name, file, line)); local
670 __rw_rlock(volatile uintptr_t *c, const char *file, int line) argument
713 __rw_try_rlock(volatile uintptr_t *c, const char *file, int line) argument
864 _rw_runlock_cookie(volatile uintptr_t *c, const char *file, int line) argument
1281 __rw_try_upgrade(volatile uintptr_t *c, const char *file, int line) argument
1357 __rw_downgrade(volatile uintptr_t *c, const char *file, int line) argument
1376 __rw_assert(const volatile uintptr_t *c, int what, const char *file, int line) argument
[all...]
H A Dkern_sx.c142 #define _sx_assert(sx, what, file, line)
279 curthread, sx->lock_object.lo_name, file, line));
284 ("sx_try_slock() of destroyed sx @ %s:%d", file, line));
288 LOCK_LOG_TRY("SLOCK", &sx->lock_object, 0, 1, file, line);
289 WITNESS_LOCK(&sx->lock_object, LOP_TRYLOCK, file, line);
291 sx, 0, 0, file, line, LOCKSTAT_READER);
297 LOCK_LOG_TRY("SLOCK", &sx->lock_object, 0, 0, file, line);
302 sx_try_slock_(struct sx *sx, const char *file, int line) argument
309 _sx_xlock(struct sx *sx, int opts, const char *file, int line) argument
317 curthread, sx->lock_object.lo_name, file, line));
389 sx_try_xlock_(struct sx *sx, const char *file, int line) argument
396 _sx_xunlock(struct sx *sx, const char *file, int line) argument
459 sx_try_upgrade_(struct sx *sx, const char *file, int line) argument
532 sx_downgrade_(struct sx *sx, const char *file, int line) argument
1164 _sx_slock(struct sx *sx, int opts, const char *file, int line) argument
1292 _sx_sunlock(struct sx *sx, const char *file, int line) argument
1309 _sx_assert(const struct sx *sx, int what, const char *file, int line) argument
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dgenmodes.c73 const char *file; /* file and line of definition, */
74 unsigned int line; /* for error reporting */ member in struct:mode_data
101 unsigned int line; member in struct:mode_adjust
147 const char *file, unsigned int line)
156 trim_filename (file), line, name);
157 error ("%s:%d: previous definition here", m->file, m->line);
167 m->line = line;
204 const char *file, unsigned int line)
213 error ("%s:%d: no mode \"%s\"", file, line, nam
146 new_mode(enum mode_class cl, const char *name, const char *file, unsigned int line) argument
200 new_adjust(const char *name, struct mode_adjust **category, const char *catname, const char *adjustment, enum mode_class required_class, const char *file, unsigned int line) argument
407 make_complex_modes(enum mode_class cl, const char *file, unsigned int line) argument
465 make_vector_modes(enum mode_class cl, unsigned int width, const char *file, unsigned int line) argument
516 make_special_mode(enum mode_class cl, const char *name, const char *file, unsigned int line) argument
527 make_int_mode(const char *name, unsigned int precision, unsigned int bytesize, const char *file, unsigned int line) argument
541 make_float_mode(const char *name, unsigned int precision, unsigned int bytesize, const char *format, const char *file, unsigned int line) argument
558 make_decimal_float_mode(const char *name, unsigned int precision, unsigned int bytesize, const char *format, const char *file, unsigned int line) argument
572 reset_float_format(const char *name, const char *format, const char *file, unsigned int line) argument
594 make_partial_integer_mode(const char *base, const char *name, unsigned int precision, const char *file, unsigned int line) argument
621 make_vector_mode(enum mode_class bclass, const char *base, unsigned int ncomponents, const char *file, unsigned int line) argument
[all...]
/freebsd-11-stable/usr.bin/tftp/
H A Dmain.c120 static void makeargv(char *line);
223 char line[MAXLINE]; local
261 sprintf(line, "get %s", path);
262 makeargv(line);
336 char line[MAXLINE]; local
339 strcpy(line, "Connect ");
341 fgets(&line[strlen(line)], sizeof line - strlen(line), stdi
423 char line[MAXLINE]; local
525 char line[MAXLINE]; local
604 char line[MAXLINE]; local
631 char line[MAXLINE]; local
720 char line[MAXLINE]; local
803 makeargv(char *line) argument
[all...]
/freebsd-11-stable/contrib/libarchive/test_utils/
H A Dtest_main.c344 unsigned int line, uintptr_t pReserved)
351 (void)line;
448 void skipping_setup(const char *filename, int line) argument
451 skipping_line = line;
456 assertion_count(const char *file, int line) argument
459 (void)line; /* UNUSED */
464 /* Uncomment to print file:line after every assertion.
466 /* printf("Checked %s:%d\n", file, line); */
474 static struct line { struct
482 failure_start(const char *filename, int line, cons argument
342 invalid_parameter_handler(const wchar_t * expression, const wchar_t * function, const wchar_t * file, unsigned int line, uintptr_t pReserved) argument
576 assertion_assert(const char *file, int line, int value, const char *condition, void *extra) argument
589 assertion_chdir(const char *file, int line, const char *pathname) argument
602 assertion_chmod(const char *file, int line, const char *pathname, int mode) argument
615 assertion_equal_int(const char *file, int line, long long v1, const char *e1, long long v2, const char *e2, void *extra) argument
777 assertion_equal_string(const char *file, int line, const char *v1, const char *e1, const char *v2, const char *e2, void *extra, int utf8) argument
839 assertion_equal_wstring(const char *file, int line, const wchar_t *v1, const char *e1, const wchar_t *v2, const char *e2, void *extra) argument
900 assertion_equal_mem(const char *file, int line, const void *_v1, const char *e1, const void *_v2, const char *e2, size_t l, const char *ld, void *extra) argument
938 assertion_memory_filled_with(const char *file, int line, const void *_v1, const char *vd, size_t l, const char *ld, char b, const char *bd, void *extra) argument
966 assertion_empty_file(const char *filename, int line, const char *f1) argument
1002 assertion_non_empty_file(const char *filename, int line, const char *f1) argument
1024 assertion_equal_file(const char *filename, int line, const char *fn1, const char *fn2) argument
1064 assertion_file_exists(const char *filename, int line, const char *f) argument
1082 assertion_file_not_exists(const char *filename, int line, const char *f) argument
1100 assertion_file_contents(const char *filename, int line, const void *buff, int s, const char *fn) argument
1137 assertion_text_file_contents(const char *filename, int line, const char *buff, const char *fn) argument
1199 assertion_file_contains_lines_any_order(const char *file, int line, const char *pathname, const char *lines[]) argument
1316 assertion_file_contains_no_invalid_strings(const char *file, int line, const char *pathname, const char *strings[]) argument
1346 is_hardlink(const char *file, int line, const char *path1, const char *path2) argument
1391 assertion_is_hardlink(const char *file, int line, const char *path1, const char *path2) argument
1403 assertion_is_not_hardlink(const char *file, int line, const char *path1, const char *path2) argument
1417 assertion_file_time(const char *file, int line, const char *pathname, long t, long nsec, char type, int recent) argument
1523 assertion_file_atime(const char *file, int line, const char *pathname, long t, long nsec) argument
1531 assertion_file_atime_recent(const char *file, int line, const char *pathname) argument
1538 assertion_file_birthtime(const char *file, int line, const char *pathname, long t, long nsec) argument
1546 assertion_file_birthtime_recent(const char *file, int line, const char *pathname) argument
1554 assertion_file_mode(const char *file, int line, const char *pathname, int expected_mode) argument
1583 assertion_file_mtime(const char *file, int line, const char *pathname, long t, long nsec) argument
1591 assertion_file_mtime_recent(const char *file, int line, const char *pathname) argument
1598 assertion_file_nlinks(const char *file, int line, const char *pathname, int nlinks) argument
1630 assertion_file_size(const char *file, int line, const char *pathname, long size) argument
1659 assertion_is_dir(const char *file, int line, const char *pathname, int mode) argument
1697 assertion_is_reg(const char *file, int line, const char *pathname, int mode) argument
1736 is_symlink(const char *file, int line, const char *pathname, const char *contents, int isdir) argument
1894 assertion_is_symlink(const char *file, int line, const char *path, const char *contents, int isdir) argument
1911 assertion_make_dir(const char *file, int line, const char *dirname, int mode) argument
1933 assertion_make_file(const char *file, int line, const char *path, int mode, int csize, const void *contents) argument
2003 assertion_make_hardlink(const char *file, int line, const char *newpath, const char *linkto) argument
2031 assertion_make_symlink(const char *file, int line, const char *newpath, const char *linkto, int targetIsDir) argument
2055 assertion_umask(const char *file, int line, int mask) argument
2066 assertion_utimes(const char *file, int line, const char *pathname, long at, long at_nsec, long mt, long mt_nsec) argument
2170 assertion_compare_fflags(const char *file, int line, const char *patha, const char *pathb, int nomatch) argument
2264 assertion_set_nodump(const char *file, int line, const char *pathname) argument
3272 assertion_entry_set_acls(const char *file, int line, struct archive_entry *ae, struct archive_test_acl_t *acls, int n) argument
3333 assertion_entry_compare_acls(const char *file, int line, struct archive_entry *ae, struct archive_test_acl_t *acls, int cnt, int want_type, int mode) argument
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dmacrocmd.c125 int line)
127 fprintf_filtered (stream, "%s:%d\n", file->filename, line);
155 d = macro_lookup_definition (ms->file, ms->line, name);
158 int line;
160 = macro_definition_location (ms->file, ms->line, name, &line);
163 show_pp_source_pos (gdb_stdout, file, line);
186 show_pp_source_pos (gdb_stdout, ms->file, ms->line);
121 show_pp_source_pos(struct ui_file *stream, struct macro_source_file *file, int line) argument
156 int line; local
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftpd/
H A Dlogwtmp.c84 ftpd_logwtmp_asl(char *line, char *name, char *host) argument
99 host, line, name, name[0] ? " " : "dis", (int)getpid());
107 ftpd_logwtmp_wtmp(char *line, char *name, char *host) argument
132 strncpy(ut.ut_line, line, sizeof(ut.ut_line));
144 strncpy(utx.ut_line, line, sizeof(utx.ut_line));
192 ftpd_logwtmp(char *line, char *name, char *host) argument
195 ftpd_logwtmp_asl(line, name, host);
197 ftpd_logwtmp_wtmp(line, name, host);
/freebsd-11-stable/crypto/heimdal/lib/sl/
H A Dtest_sl.c37 const char *line; member in struct:__anon6069
73 char *buf = strdup(lines[i].line);
/freebsd-11-stable/sys/sys/
H A Dlock_profile.h49 uint64_t waittime, const char *file, int line);
68 #define lock_profile_obtain_lock_success(lo, contested, waittime, file, line) (void)0
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/ld/
H A Dt_section.sh87 read line
88 case "$line" in
/freebsd-11-stable/contrib/top/
H A Ddisplay.h24 void i_process(int line, char *thisline);
40 void u_process(int line, char *newline);
/freebsd-11-stable/sbin/fsdb/
H A Dfsdb.h59 char **crack(char *line, int *argc);
60 char **recrack(char *line, int *argc, int argc_max);
/freebsd-11-stable/usr.bin/netstat/
H A Droute.c545 static char line[NI_MAXHOST]; local
549 error = getnameinfo(sa, sa->sa_len, line, sizeof(line),
565 return(line);
567 inet_ntop(sa->sa_family, src, line, sizeof(line) - 1);
568 return (line);
570 trimdomain(line, strlen(line));
572 return (line);
637 static char line[MAXHOSTNAMELEN + sizeof("&0xffffffff")]; local
707 static char line[NI_MAXHOST + sizeof("/xxx") - 1]; local
[all...]
/freebsd-11-stable/sbin/devd/
H A Dtoken.l114 syslog(LOG_ERR, "line %d: %s%s %s.\n", lineno, yytext, yytext?":":"", s);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBSourceManager.h29 const lldb::SBFileSpec &file, uint32_t line, uint32_t context_before,
33 const lldb::SBFileSpec &file, uint32_t line, uint32_t column,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp138 false, // Multi-line
162 std::string &line) {
163 if (line.empty()) {
170 if (line.size() == 1) {
171 switch (line[0]) {
187 if (line == "yes" || line == "YES" || line == "Yes") {
190 } else if (line == "no" || line
161 IOHandlerInputComplete(IOHandler &io_handler, std::string &line) argument
310 GetLine(std::string &line, bool &interrupted) argument
471 SetBaseLineNumber(uint32_t line) argument
497 std::string line; local
526 std::string line; local
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dclear_cache.c133 for (uintptr_t line = start_line; line < end_line; line += line_size)
134 __asm__ volatile("dcbf 0, %0" : : "r"(line));
137 for (uintptr_t line = start_line; line < end_line; line += line_size)
138 __asm__ volatile("icbi 0, %0" : : "r"(line));
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_diff_private.h42 /* The separator string used below the "Index:" or similar line of
47 /* The separator string used below the "Properties on ..." line of
52 /* The string used to mark a line in a hunk that doesn't end with a newline,
58 /* The string used to mark a line in a hunk that doesn't end with a newline,
118 /** Create a hunk object that adds a single line without newline. Return the
121 * @a line is the added text, without a trailing newline.
127 const char *line,
132 /** Create a hunk object that deletes a single line without newline. Return
135 * @a line is the deleted text, without a trailing newline.
141 const char *line,
[all...]
/freebsd-11-stable/contrib/subversion/subversion/svnfsfs/
H A Dload-index-cmd.c97 svn_stringbuf_t *line,
101 apr_array_header_t *tokens = svn_cstring_split(line->data, " ", TRUE,
127 /* Parse the space separated P2L index table from INPUT, one entry per line.
145 svn_stringbuf_t *line; local
149 /* Get the next line from the input and stop if there is none. */
151 SVN_ERR(svn_stream_readline(input, &line, "\n", &eol, iterpool));
155 /* Skip header line(s). They contain the sub-string [Ss]tart. */
156 if (strstr(line->data, "tart"))
161 svn_stringbuf_strip_whitespace(line);
162 if (line
96 parse_index_line(svn_fs_fs__p2l_entry_t **entry, svn_stringbuf_t *line, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-11-stable/contrib/gdb/gdb/tui/
H A Dtui-winsource.c110 sal.line = line_or_addr.line_no +
150 l.line_no = sal.line;
172 tui_update_source_windows_with_line (struct symtab *s, int line) argument
181 find_line_pc (s, line, &pc);
185 l.line_no = line;
189 find_line_pc (s, line, &pc);
257 /* Redraw the complete line of a source or disassembly window. */
261 struct tui_win_element * line; local
264 line = (struct tui_win_element *) win_info->generic.content[lineno - 1];
265 if (line
403 struct tui_source_element* line; local
603 tui_line_is_displayed(int line, struct tui_win_info * win_info, int check_threshold) argument
[all...]

Completed in 197 milliseconds

<<11121314151617181920>>