Searched refs:line (Results 1 - 25 of 45) sorted by relevance

12

/httpd/build/
H A Dmake_var_export.awk22 if (old_filename != "") printf("%s", line)
27 line = ""
32 line = line "#ifdef " macro "\n"
39 line = line "#endif /* " macro " */\n"
44 printf("%s", line)
46 line = ""
56 line = line "\
[all...]
H A Dmake_exports.awk43 function push(line) {
44 stack[stackptr] = line
H A DNWGNUscripts.inc27 @echo $(DL)# If you have loaded Apache2.x in OS space use the line below.$(DL)>> $@
34 @echo $(DL)# If you have loaded Apache2.x in OS space use the line below.$(DL)>> $@
/httpd/support/SHA1/
H A Dconvert-sha1.pl12 while (my $line = <>) {
13 chomp $line;
14 if ( $line =~ /uid:\s*(.+)/) { $uid = $1 }
15 if ( $line =~ /userpassword:\s*(\{\w+\}.+)/) {
20 if (length($line)==0) {
/httpd/modules/core/test/conf/
H A Dtest65.conf2 <Macro Line $line>
3 # first macro line is a comment
4 Warning "Line: $line"
7 "on line 6-7"
10 "on line 8-10"
11 Error "done on line 11."
/httpd/test/
H A Dtest_find.c19 * The defines in this sample compile line are specific to Roy's system.
52 AP_DECLARE(void) ap_log_error(const char *file, int line, int level, argument
61 char line[512]; local
67 if (!gets(line))
72 printf(" [%s] == %s\n", tok, ap_find_list_item(p, line, tok)
H A Dcls.c98 char line[1035]; local
129 if (fgets(line, 1034, fp) == NULL) {
134 if (!checkmask(line, "&&&&&&&& &&&&&&&& &&&&&&&& &&&&&&&& &&&&&&&&\n")) {
139 date = hex2sec(line);
140 lmod = hex2sec(line + 9);
141 expire = hex2sec(line + 18);
142 ver = hex2sec(line + 27);
143 len = hex2sec(line + 35);
144 if (fgets(line, 1034, fp) == NULL) {
150 i = strlen(line);
[all...]
H A Dtest_parser.c19 * The defines in this sample compile line are specific to Roy's system.
52 AP_DECLARE(void) ap_log_error(const char *file, int line, int level, argument
/httpd/support/
H A Dlogresolve.c143 char * line; local
194 || (line = apr_palloc(pool, LINE_BUF_SIZE)) == NULL) {
207 while (apr_file_gets(line, LINE_BUF_SIZE, infile) == APR_SUCCESS) {
214 if (line[0] == '\0') {
222 if (!apr_isxdigit(line[0]) && line[0] != ':') {
224 apr_file_puts(line, outfile);
228 /* Terminate the line at the next space */
229 if ((space = strchr(line, ' ')) != NULL) {
237 hostname = (char *) apr_hash_get(cache, line, APR_HASH_KEY_STRIN
[all...]
H A Dhtdigest.c78 static void getword(char *word, char *line, char stop) argument
82 for (x = 0; ((line[x]) && (line[x] != stop)); x++)
83 word[x] = line[x];
86 if (line[x])
90 while ((line[y++] = line[x++]));
194 char line[3 * MAX_STRING_LEN]; local
258 while (!(get_line(line, sizeof(line),
[all...]
H A Dhttxt2dbm.c112 char line[REWRITE_MAX_TXT_MAP_LINE + 1]; /* +1 for \0 */ local
119 while (apr_file_gets(line, sizeof(line), fp) == APR_SUCCESS) {
122 if (*line == '#' || apr_isspace(*line)) {
126 c = line;
133 /* no value. solid line of data. */
137 dbmkey.dptr = apr_pstrmemdup(p, line, c - line);
138 dbmkey.dsize = (c - line);
[all...]
H A Dlogresolve.pl.in131 @buffer = (); # empty the logfile line buffer array.
136 push(@buffer, $_); # buffer the line
158 for (my $line = 0; $line <=$#buffer; $line++) {
159 # get next buffered line
160 ($ip, $rest) = split(/ /, $buffer[$line], 2);
188 # have one connection where we exchange 1 line of info with the
189 # parent.. 1 line in (IP address), 1 line ou
[all...]
H A Dhtpasswd.c32 * 2: Failure; command line syntax problem (usage message issued)
103 " -b Use the password from the command line rather than prompting "
277 char line[MAX_STRING_LEN]; local
407 while (apr_file_gets(line, sizeof(line), fpw) == APR_SUCCESS) {
410 strcpy(cp, line);
417 putline(ftemp, line);
429 * If we've not got a colon on the line, this could well
440 putline(ftemp, line);
/httpd/docs/log-message-tags/
H A Dupdate-log-msg-tags24 $list .= "$tag: $d->{file}:$d->{line}: $d->{msg}\n";
36 my $line = <$fh>;
39 while (defined $line) {
40 if ($line =~ s{APLOGNO\(\),?}{gen_tag($file)}e) {
43 if ($line =~ /APLOGNO\(\s*(\d{5})\s*\)/ ) {
47 if ($line =~ s/.*?
72 # or "\" at the end of a macro line
82 $line .= $next;
86 $result .= $line;
87 $line
[all...]
/httpd/modules/ssl/
H A Dssl_util_ocsp.c130 /* Return a pool-allocated NUL-terminated line, with CRLF stripped,
137 char *line; local
144 "failed reading line from OCSP server");
148 rv = apr_brigade_pflatten(bbout, &line, &len, p);
151 "failed reading line from OCSP server");
161 if (line[len-1] != APR_ASCII_LF) {
163 "response header line too long from OCSP server");
167 line[len-1] = '\0';
168 if (len > 1 && line[len-2] == APR_ASCII_CR) {
169 line[le
187 char *line; local
[all...]
H A Dssl_util.c92 * Run a filter program and read the first line of its stdout output
212 const char *file, int line)
228 int line; member in struct:CRYPTO_dynlock_value
239 int line)
251 ap_log_perror(file, line, APLOG_MODULE_INDEX, APLOG_TRACE1, 0, p,
259 value->line = line;
263 ap_log_perror(file, line, APLOG_MODULE_INDEX, APLOG_ERR, rv, p, APLOGNO(02186)
276 const char *file, int line)
281 ap_log_perror(file, line, APLOG_MODULE_INDE
211 ssl_util_thr_lock(int mode, int type, const char *file, int line) argument
238 ssl_dyn_create_function(const char *file, int line) argument
275 ssl_dyn_lock_function(int mode, struct CRYPTO_dynlock_value *l, const char *file, int line) argument
299 ssl_dyn_destroy_function(struct CRYPTO_dynlock_value *l, const char *file, int line) argument
[all...]
H A Dssl_engine_log.c49 { "*no start line*", "Bad file contents or format - or even just a forgotten SSLCertificateKeyFile?" },
84 void ssl_log_ssl_error(const char *file, int line, int level, server_rec *s) argument
101 ap_log_error(file, line, APLOG_MODULE_INDEX, level, 0, s,
116 static void ssl_log_cert_error(const char *file, int line, int level, argument
138 * at the beginning of the line and the trailing information about
189 ap_log_rerror(file, line, APLOG_MODULE_INDEX, level, rv, r, "%s", buf);
192 ap_log_cerror(file, line, APLOG_MODULE_INDEX, level, rv, c, "%s", buf);
195 ap_log_error(file, line, APLOG_MODULE_INDEX, level, rv, s, "%s", buf);
206 void ssl_log_xerror(const char *file, int line, int level, apr_status_t rv, argument
213 ssl_log_cert_error(file, line, leve
219 ssl_log_cxerror(const char *file, int line, int level, apr_status_t rv, conn_rec *c, X509 *cert, const char *fmt, ...) argument
231 ssl_log_rxerror(const char *file, int line, int level, apr_status_t rv, request_rec *r, X509 *cert, const char *fmt, ...) argument
[all...]
/httpd/server/
H A Dutil_expr_parse.c73 #line 31 "util_expr_parse.y"
78 #line 79 "util_expr_parse.c"
158 #line 35 "util_expr_parse.y"
166 #line 167 "util_expr_parse.c"
192 #line 102 "util_expr_parse.y"
200 #line 201 "util_expr_parse.c"
518 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
899 YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
1497 Otherwise, the following line sets YYVAL to garbage.
1510 #line 11
[all...]
H A Dutil_expr_scan.c0 #line 2 "util_expr_scan.c"
3 #line 4 "util_expr_scan.c"
241 /* Whether we're considered to be at the beginning of a line.
247 int yy_bs_lineno; /**< The line count. */
552 #line 1 "util_expr_scan.l"
581 #line 43 "util_expr_scan.l"
629 #line 630 "util_expr_scan.c"
874 #line 93 "util_expr_scan.l"
900 #line 901 "util_expr_scan.c"
984 #line 11
[all...]
H A Dutil_expr_parse.h93 #line 35 "util_expr_parse.y"
101 #line 102 "util_expr_parse.h"
H A Dutil.c27 * #define DEBUG_CFG_LINES to trace every line read from the config files
666 AP_DECLARE(char *) ap_getword_nc(apr_pool_t *atrans, char **line, char stop) argument
668 return ap_getword(atrans, (const char **) line, stop);
671 AP_DECLARE(char *) ap_getword(apr_pool_t *atrans, const char **line, char stop) argument
673 const char *pos = *line;
681 len = pos - *line;
682 res = apr_pstrmemdup(atrans, *line, len);
689 *line = pos;
694 AP_DECLARE(char *) ap_getword_white_nc(apr_pool_t *atrans, char **line) argument
696 return ap_getword_white(atrans, (const char **) line);
699 ap_getword_white(apr_pool_t *atrans, const char **line) argument
721 ap_getword_nulls_nc(apr_pool_t *atrans, char **line, char stop) argument
727 ap_getword_nulls(apr_pool_t *atrans, const char **line, char stop) argument
776 ap_getword_conf_nc(apr_pool_t *p, char **line) argument
781 ap_getword_conf(apr_pool_t *p, const char **line) argument
1303 find_list_item(apr_pool_t *p, const char *line, const char *tok, ap_etag_e type) argument
1431 ap_find_list_item(apr_pool_t *p, const char *line, const char *tok) argument
1440 ap_find_etag_strong(apr_pool_t *p, const char *line, const char *tok) argument
1449 ap_find_etag_weak(apr_pool_t *p, const char *line, const char *tok) argument
1589 ap_find_token(apr_pool_t *p, const char *line, const char *tok) argument
1624 ap_find_last_token(apr_pool_t *p, const char *line, const char *tok) argument
[all...]
/httpd/include/
H A Dhttp_log.h270 * ap_log_error() and related functions, i.e. file, line, and module_index.
273 * version, APLOG_MARK only replaced the file and line parameters.
336 * @param line The line number on which this function is called
344 * @note Use APLOG_MARK to fill out file and line
357 AP_DECLARE(void) ap_log_error(const char *file, int line, int module_index,
365 #define ap_log_error__(file, line, mi, level, status, s, ...) \
367 ap_log_error_(file, line, mi, level, status, sr__, __VA_ARGS__); \
372 AP_DECLARE(void) ap_log_error_(const char *file, int line, int module_index,
383 * @param line Th
[all...]
H A Dhttpd.h95 * --------- You shouldn't have to edit anything below this line ----------
780 /** The command line arguments */
782 /** Number of command line arguments passed to the program */
809 /** First line of request */
832 /** Status line, if set by script */
834 /** Status line */
1292 /** The line of the config file that the server was defined on */
1335 /** limit on size of the HTTP request line */
1443 * @param line The string to get the characters from
1447 AP_DECLARE(char *) ap_getword(apr_pool_t *p, const char **line, cha
[all...]
/httpd/modules/core/
H A Dmod_macro.c89 #define trim(line) while (*(line) == ' ' || *(line) == '\t') (line)++
92 return configuration-parsed arguments from line as an array.
93 the line is expected not to contain any '\n'?
95 static apr_array_header_t *get_arguments(apr_pool_t * pool, const char *line) argument
99 trim(line);
100 while (*line) {
101 char *arg = ap_getword_conf(pool, &line);
145 char line[MAX_STRING_LEN]; /* sorry, but this is expected by getline:-( */ local
461 char line[MAX_STRING_LEN]; local
[all...]
/httpd/modules/session/
H A Dmod_session_cookie.c217 char *line = apr_pstrdup(cmd->pool, args); local
219 char *cookie = apr_strtok(line, " \t", &last);
233 char *line = apr_pstrdup(cmd->pool, args); local
235 char *cookie = apr_strtok(line, " \t", &last);

Completed in 284 milliseconds

12