Searched refs:line (Results 351 - 375 of 1629) sorted by relevance

<<11121314151617181920>>

/freebsd-10-stable/contrib/ntp/sntp/unity/auto/
H A Dunity_test_summary.rb37 lines = File.readlines(result_file).map { |line| line.chomp }
98 lines.each do |line|
99 src_file,src_line,test_name,status,msg = line.split(/:/)
100 line_out = ((@root && (@root != 0)) ? "#{@root}#{line}" : line ).gsub(/\//, "\\")
/freebsd-10-stable/contrib/gcc/
H A Dxcoffout.c58 emitted from. In case a line is emitted from a different file,
59 (by including that file of course), then the line number will be
81 /* Output source line numbers via ".line". */
86 fprintf (FILE, "\t.line\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM)); \
323 /* Output a line number symbol entry for location (FILENAME, LINE). */ argument
326 xcoffout_source_line (unsigned int line, const char *filename)
329 || (int) line < xcoff_begin_function_line);
333 ASM_OUTPUT_LINE (asm_out_file, line);
384 xcoffout_begin_block (unsigned int line, unsigne
380 xcoffout_begin_block(unsigned int line, unsigned int n) argument
396 xcoffout_end_block(unsigned int line, unsigned int n) argument
439 xcoffout_begin_prologue(unsigned int line, const char *file ATTRIBUTE_UNUSED) argument
[all...]
/freebsd-10-stable/usr.sbin/lpr/common_source/
H A Drmjob.c170 cur_daemon = atoi(line);
202 switch (line[0]) {
204 if (strchr(line+1, '/') || strncmp(line+1, "df", 2))
206 do_unlink(line+1);
255 if (line[0] == 'P')
259 if (line[0] != 'P')
263 return(!strcmp(file, current) && isowner(line+1, file, cfhost));
268 if (*r == jnum && isowner(line+1, file, cfhost))
274 if (!strcmp(*u, line
[all...]
/freebsd-10-stable/lib/libkse/test/
H A Dverify45 # Parse command-line arguments.
115 foreach $line (@TSTATS)
117 printf STDOUT "$line";
175 while (defined($line = <STEST_OUT>))
177 if ($line =~ /1\.\.(\d+)/)
188 print STDERR "Malformed or missing 1..n line\n";
195 while (defined($line = <STEST_OUT>))
197 if ($line =~ /^not\s+ok\s+(\d+)?/)
203 elsif ($line =~ /^ok\s+(\d+)?/)
210 if (defined($line))
[all...]
/freebsd-10-stable/sys/sys/
H A Dlockmgr.h70 const char *wmesg, int prio, int timo, const char *file, int line);
72 void _lockmgr_assert(const struct lock *lk, int what, const char *file, int line);
74 void _lockmgr_disown(struct lock *lk, const char *file, int line);
95 int prio, int timo, const char *file, int line)
99 NULL, wmesg, prio, timo, file, line));
104 const char *wmesg, int prio, int timo, const char *file, int line)
108 NULL, wmesg, prio, timo, file, line));
94 _lockmgr_args(struct lock *lk, u_int flags, struct mtx *ilk, const char *wmesg, int prio, int timo, const char *file, int line) argument
103 _lockmgr_args_rw(struct lock *lk, u_int flags, struct rwlock *ilk, const char *wmesg, int prio, int timo, const char *file, int line) argument
/freebsd-10-stable/contrib/libarchive/libarchive/test/
H A Dtest_archive_string_conversion.c261 int line = 0; local
323 line++;
361 nfd, nfc, line);
370 nfc, line);
379 nfc, line);
388 nfd, nfc, line);
397 nfd, nfc, line);
417 "to WCS NFC(%s):%d", nfd, nfc, line);
428 "to WCS NFC(%s):%d", nfd, nfc, line);
439 "to WCS NFC(%s):%d", nfd, nfc, line);
472 int line = 0; local
[all...]
/freebsd-10-stable/contrib/dtc/
H A Ddtc-lexer.l80 <*>^"#"(line)?[ \t]+[0-9]+[ \t]+{STRING}([ \t]+[0-9]+)? {
81 char *line, *tmp, *fn;
82 /* skip text before line # */
83 line = yytext;
84 while (!isdigit((unsigned char)*line))
85 line++;
86 /* skip digits in line # */
87 tmp = line;
90 /* "NULL"-terminate line # */
97 /* -1 since #line i
[all...]
/freebsd-10-stable/usr.sbin/pc-sysinstall/backend/
H A Dfunctions-localize.sh465 while read line
468 echo $line | grep -q "^localizeLang=" 2>/dev/null
473 get_value_from_string "$line"
476 get_value_from_string "$line"
491 echo $line | grep -q "^localizeKeyLayout=" 2>/dev/null
493 get_value_from_string "$line"
498 echo $line | grep -q "^localizeKeyModel=" 2>/dev/null
500 get_value_from_string "$line"
505 echo $line | grep -q "^localizeKeyVariant=" 2>/dev/null
507 get_value_from_string "$line"
[all...]
H A Dfunctions-networking.sh70 while read line
72 NIC="`echo $line | cut -d ':' -f 1`"
97 while read line
99 NIC="`echo $line | cut -d ':' -f 1`"
100 DESC="`echo $line | cut -d ':' -f 2`"
140 while read line
142 NIC="`echo $line | cut -d ':' -f 1`"
143 DESC="`echo $line | cut -d ':' -f 2`"
308 while read line
310 NIC="`echo $line | cu
[all...]
/freebsd-10-stable/usr.sbin/ac/
H A Dac.c54 char line[sizeof(((struct utmpx *)0)->ut_line)]; member in struct:utmpx_entry
73 char line[sizeof(((struct utmpx *)0)->ut_line) + 2]; member in struct:tty_entry
101 add_tty(const char *line) argument
112 if (*line == '!') { /* don't do if match */
114 line++;
116 strlcpy(tp->line, line, sizeof(tp->line));
118 if ((rcp = strchr(tp->line, '*')) != NULL) {
121 tp->len = strlen(tp->line);
130 do_tty(const char *line) argument
[all...]
/freebsd-10-stable/sbin/atm/atmconfig/
H A Dmain.c94 char line[LINE_MAX]; /* current line */ member in struct:help_file
275 * Get next line from a help file
282 if (fgets(hp->line, sizeof(hp->line), hp->fp) != NULL)
283 return (hp->line);
306 const char *line; local
312 while ((line = help_next_line(hp)) != NULL) {
313 if (line[0] == '^' && line[
327 const char *line; local
[all...]
/freebsd-10-stable/crypto/openssl/crypto/
H A Dcryptlib.c188 const char *file, int line) = 0;
191 int line) = 0;
197 (const char *file, int line) = 0;
200 const char *file, int line) = 0;
203 int line) = 0;
357 (const char *file, int line) {
364 int line) {
369 (struct CRYPTO_dynlock_value *l, const char *file, int line) {
374 (const char *file, int line))
383 int line))
373 CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*func) (const char *file, int line)) argument
379 CRYPTO_set_dynlock_lock_callback(void (*func) (int mode, struct CRYPTO_dynlock_value *l, const char *file, int line)) argument
388 CRYPTO_set_dynlock_destroy_callback(void (*func) (struct CRYPTO_dynlock_value *l, const char *file, int line)) argument
405 CRYPTO_set_locking_callback(void (*func) (int mode, int type, const char *file, int line)) argument
416 CRYPTO_set_add_lock_callback(int (*func) (int *num, int mount, int type, const char *file, int line)) argument
557 CRYPTO_lock(int mode, int type, const char *file, int line) argument
599 CRYPTO_add_lock(int *pointer, int amount, int type, const char *file, int line) argument
973 OpenSSLDie(const char *file, int line, const char *assertion) argument
[all...]
/freebsd-10-stable/usr.bin/csup/
H A Dstatus.c99 statusrec_cook(struct statusrec *sr, char *line) argument
106 clientattr = proto_get_ascii(&line);
107 if (clientattr == NULL || line != NULL)
115 if (line != NULL)
119 sr->sr_tag = proto_get_ascii(&line);
120 sr->sr_date = proto_get_ascii(&line);
121 serverattr = proto_get_ascii(&line);
122 sr->sr_revnum = proto_get_ascii(&line);
123 sr->sr_revdate = proto_get_ascii(&line);
124 clientattr = proto_get_ascii(&line);
164 char *line; local
182 char *cmd, *line, *file; local
330 status_wrraw(struct status *st, struct statusrec *sr, char *line) argument
472 char *id, *line; local
610 char *line; local
816 char *line, *name; local
[all...]
/freebsd-10-stable/contrib/wpa/wpa_supplicant/
H A Dconfig.c35 int line, const char *value);
58 int line, const char *value)
74 line, data->name,
89 "min_len=%ld)", line, data->name,
97 "max_len=%ld)", line, data->name,
179 int line, const char *value)
189 "min_value=%ld)", line, data->name, *dst,
197 "max_value=%ld)", line, data->name, *dst,
231 struct wpa_ssid *ssid, int line,
242 line, valu
56 wpa_config_parse_str(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
177 wpa_config_parse_int(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
230 wpa_config_parse_bssid(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
275 wpa_config_parse_psk(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
375 wpa_config_parse_proto(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
459 wpa_config_parse_key_mgmt(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
630 wpa_config_parse_cipher(int line, const char *value) argument
760 wpa_config_parse_pairwise(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
790 wpa_config_parse_group(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
820 wpa_config_parse_auth_alg(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
919 wpa_config_parse_freqs(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
962 wpa_config_parse_scan_freq(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
978 wpa_config_parse_freq_list(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
1044 wpa_config_parse_eap(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
1152 wpa_config_parse_password(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
1268 wpa_config_parse_wep_key(u8 *key, size_t *len, int line, const char *value, int idx) argument
1300 wpa_config_parse_wep_key0(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
1310 wpa_config_parse_wep_key1(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
1320 wpa_config_parse_wep_key2(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
1330 wpa_config_parse_wep_key3(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
1381 wpa_config_parse_p2p_client_list(const struct parse_data *data, struct wpa_ssid *ssid, int line, const char *value) argument
2067 wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value, int line) argument
2282 wpa_config_set_cred(struct wpa_cred *cred, const char *var, const char *value, int line) argument
2687 wpa_global_config_parse_int(const struct global_parse_data *data, struct wpa_config *config, int line, const char *pos) argument
2716 wpa_global_config_parse_str(const struct global_parse_data *data, struct wpa_config *config, int line, const char *pos) argument
2751 wpa_global_config_parse_bin(const struct global_parse_data *data, struct wpa_config *config, int line, const char *pos) argument
2780 wpa_config_process_country(const struct global_parse_data *data, struct wpa_config *config, int line, const char *pos) argument
2796 wpa_config_process_load_dynamic_eap( const struct global_parse_data *data, struct wpa_config *config, int line, const char *so) argument
2818 wpa_config_process_uuid(const struct global_parse_data *data, struct wpa_config *config, int line, const char *pos) argument
2833 wpa_config_process_device_type( const struct global_parse_data *data, struct wpa_config *config, int line, const char *pos) argument
2841 wpa_config_process_os_version(const struct global_parse_data *data, struct wpa_config *config, int line, const char *pos) argument
2855 wpa_config_process_wps_vendor_ext_m1( const struct global_parse_data *data, struct wpa_config *config, int line, const char *pos) argument
2894 wpa_config_process_sec_device_type( const struct global_parse_data *data, struct wpa_config *config, int line, const char *pos) argument
2916 wpa_config_process_p2p_pref_chan( const struct global_parse_data *data, struct wpa_config *config, int line, const char *pos) argument
2967 wpa_config_process_hessid( const struct global_parse_data *data, struct wpa_config *config, int line, const char *pos) argument
3086 wpa_config_process_global(struct wpa_config *config, char *pos, int line) argument
[all...]
H A Dconfig_file.c48 * wpa_config_get_line - Read the next configuration file line
49 * @s: Buffer for the line
52 * @line: Pointer to a variable storing the file line number
53 * @_pos: Buffer for the pointer to the beginning of data on the text line or
55 * Returns: Pointer to the beginning of data on the text line or %NULL if no
58 * This function reads the next non-empty line from the configuration file and
61 static char * wpa_config_get_line(char *s, int size, FILE *stream, int *line, argument
67 (*line)++;
71 * The line wa
123 wpa_config_validate_network(struct wpa_ssid *ssid, int line) argument
150 wpa_config_read_network(FILE *f, int *line, int id) argument
210 wpa_config_read_cred(FILE *f, int *line, int id) argument
266 wpa_config_read_blob(FILE *f, int *line, const char *name) argument
322 wpa_config_process_blob(struct wpa_config *config, FILE *f, int *line, char *bname) argument
352 int errors = 0, line = 0; local
[all...]
/freebsd-10-stable/sys/kern/
H A Dkern_lock.c72 #define _lockmgr_assert(lk, what, file, line)
236 wakeupshlk(struct lock *lk, const char *file, int line) argument
242 WITNESS_UNLOCK(&lk->lock_object, 0, file, line);
243 LOCK_LOG_LOCK("SUNLOCK", &lk->lock_object, 0, 0, file, line);
458 const char *wmesg, int pri, int timo, const char *file, int line)
484 ("%s: Invalid requested operation @ %s:%d", __func__, file, line));
488 __func__, file, line));
491 __func__, file, line));
494 lk->lock_object.lo_name, file, line));
512 file, line);
457 __lockmgr_args(struct lock *lk, u_int flags, struct lock_object *ilk, const char *wmesg, int pri, int timo, const char *file, int line) argument
1314 _lockmgr_disown(struct lock *lk, const char *file, int line) argument
1422 _lockmgr_assert(const struct lock *lk, int what, const char *file, int line) argument
[all...]
/freebsd-10-stable/contrib/unbound/util/
H A Dconfiglexer.lex42 int line;
97 s->line = cfg_parser->line;
102 cfg_parser->line = 1;
163 cfg_parser->line = s->line;
370 <INITIAL,val>{NEWLINE} { LEXOUT(("NL\n")); cfg_parser->line++; }
381 cfg_parser->line++; BEGIN(INITIAL); }
402 cfg_parser->line++; BEGIN(INITIAL); }
422 <include>{NEWLINE} { LEXOUT(("NL\n")); cfg_parser->line
[all...]
/freebsd-10-stable/contrib/ldns/
H A Dhigher.c139 /* read a line, put it in a buffer, parse the buffer */
151 char *line; local
162 line = LDNS_XMALLOC(char, LDNS_MAX_LINELEN + 1);
169 if(!line || !word || !addr || !rr_str || !list) {
170 LDNS_FREE(line);
178 for(i = ldns_fget_token_l(fp, line, "\n", LDNS_MAX_LINELEN, line_nr);
179 i > 0; i = ldns_fget_token_l(fp, line, "\n", LDNS_MAX_LINELEN, line_nr)) {
181 if (line[0] == '#') {
187 LDNS_FREE(line);
195 ldns_buffer_new_frm_data(linebuf, line, (size_
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DLineTable.h44 /// @brief A line table class.
53 /// The compile unit to which this line table belongs.
63 /// Adds a new line entry to this line table.
65 /// All line entries are maintained in file address order.
68 /// A const reference to a new line_entry to add to this line
79 uint32_t line,
93 // inserted in this line table.
97 uint32_t line,
106 // Insert a sequence of entries into this line tabl
365 uint32_t line; ///< The source line number, or zero if there is no line number information. member in struct:lldb_private::LineTable::Entry
[all...]
/freebsd-10-stable/contrib/texinfo/info/
H A Dnodemenu.c27 /* Return a line describing the format of a node information line. */
37 /* Produce a formatted line of information about NODE. Here is what we want
154 char *line; local
156 line = format_node_info (node);
158 (line, lines_index, lines, lines_slots, 20, char *);
175 of info in each line is the file name of the node. */
306 char *line; local
315 line =
322 if (!line)
[all...]
/freebsd-10-stable/sys/boot/fdt/
H A Dfdt_loader_cmd.c837 char line[80]; local
847 sprintf(line, "\nFlattened device tree header (%p):\n", fdtp);
848 pager_output(line);
849 sprintf(line, " magic = 0x%08x\n", fdt_magic(fdtp));
850 pager_output(line);
851 sprintf(line, " size = %d\n", fdt_totalsize(fdtp));
852 pager_output(line);
853 sprintf(line, " off_dt_struct = 0x%08x\n",
855 pager_output(line);
856 sprintf(line, " off_dt_string
1161 char *line, *buf; local
1537 char line[FDT_CWD_LEN]; local
1551 char line[80]; local
[all...]
/freebsd-10-stable/usr.sbin/pkg_install/info/
H A Dshow.c36 char line[1024]; local
46 while ((n = fread(line, 1, 1024, fp)) != 0)
47 fwrite(line, 1, n, stdout);
49 append_nl = (line[n - 1] != '\n'); /* Do we have a trailing \n ? */
60 char line[MAXINDEXSIZE+2]; local
62 strlcpy(line, "???\n", sizeof(line));
72 if(fgets(line, MAXINDEXSIZE + 1, fp)) {
73 size_t line_length = strlen(line);
75 if (line[line_lengt
[all...]
/freebsd-10-stable/bin/sh/
H A Dmknodes.c92 static char line[1024]; variable
119 if (line[0] == ' ' || line[0] == '\t')
121 else if (line[0] != '\0')
144 error("Garbage at end of line");
201 error("Garbage at end of line");
263 while (fgets(line, sizeof line, patfile) != NULL) {
264 for (p = line ; *p == ' ' || *p == '\t' ; p++);
272 fputs(line, cfil
[all...]
/freebsd-10-stable/contrib/less/
H A Dtags.c58 * Use either pattern or line number.
59 * findgtag() always uses line number, so pattern is always NULL.
60 * findctag() uses either pattern (in which case line number is 0),
61 * or line number (in which case pattern is NULL).
70 LINENUM tag_linenum; /* Appropriate line number in source file */
309 * The line contains the tag, the filename and the
311 * The location is either a decimal line number,
313 * Parse the line and extract these parts.
339 * First see if it is a line number.
391 curtag_match(char const *line, POSITIO argument
425 char *line; local
570 char *name, *file, *line; local
[all...]
/freebsd-10-stable/contrib/groff/src/preproc/refer/
H A Drefer.cpp107 static void split_punct(string &line, string &punct);
438 string line; local
441 line.clear();
445 if (line.length() > 0)
446 line += '\n';
452 line += c;
457 int len = line.length();
461 if (len >= 2 && line[0] == '.' && line[1] == '[') {
466 string pre(line
653 split_punct(string &line, string &punct) argument
[all...]

Completed in 303 milliseconds

<<11121314151617181920>>