Searched defs:str (Results 1 - 25 of 53) sorted by relevance

123

/httpd/server/
H A Deoc_bucket.c20 static apr_status_t eoc_bucket_read(apr_bucket *b, const char **str, argument
23 *str = NULL;
H A Deor_bucket.c43 static apr_status_t eor_bucket_read(apr_bucket *b, const char **str, argument
46 *str = NULL;
H A Derror_bucket.c24 static apr_status_t error_bucket_read(apr_bucket *b, const char **str, argument
27 *str = NULL;
H A Dutil_regex.c44 const char *str = pattern; local
50 delim = *str++;
55 str += 2;
59 str += 2;
66 endp = ap_strchr_c(str, delim);
80 rxstr = apr_pstrndup(pool, str, endp-str);
87 str = endp+1;
88 if (!*str || (endp = ap_strchr_c(str, deli
[all...]
H A Dapreq_util.c952 apr_status_t spool_bucket_read(apr_bucket *e, const char **str, argument
955 return apr_bucket_type_file.read(e, str, len, block);
H A Dcore_filters.c100 const char *str; local
179 rv = apr_bucket_read(e, &str, &len, APR_NONBLOCK_READ);
184 c = str;
185 while (c < str + len) {
235 rv = apr_bucket_read(e, &str, &len, block);
284 rv = apr_bucket_read(e, &str, &bucket_len,
/httpd/include/
H A Dapreq_util.h220 * @param str The string to decode
224 static APR_INLINE apr_ssize_t apreq_unescape(char *str) argument
227 apr_status_t rv = apreq_decode(str, &len, str, strlen(str));
H A Dhttp_protocol.h407 * @param str The string to output
412 static APR_INLINE int ap_rputs(const char *str, request_rec *r) argument
414 return ap_rwrite(str, (int)strlen(str), r);
/httpd/modules/echo/
H A Dmod_echo.c73 const char *str; local
77 if ((rv = apr_bucket_read(b, &str, &len, APR_NONBLOCK_READ))
81 if ((pos = memchr(str, APR_ASCII_LF, len)) != NULL)
82 len = pos - str;
85 memcpy (buff + readbytes, str, len);
/httpd/modules/filters/
H A Dmod_ratelimit.c233 rl_bucket_read(apr_bucket *b, const char **str, argument
236 *str = NULL;
H A Dmod_request.c248 const char *str; local
257 apr_bucket_read(ec, &str, &len, APR_BLOCK_READ);
H A Dregexp.c58 static void getrnge(char *str, step_vars_storage *vars);
593 static void getrnge(char *str, step_vars_storage *vars) argument
595 vars->low = *str++ & 0377;
596 vars->size = ((*str & 0377) == 255)? 20000: (*str &0377) - vars->low;
H A Dmod_xml2enc.c275 char* str = apr_palloc(r->pool, strlen(r->content_type) + 13 local
277 memcpy(str, r->content_type, match[1].rm_so);
278 memcpy(str + match[1].rm_so, "utf-8", 5);
279 strcpy(str + match[1].rm_so + 5, r->content_type+match[1].rm_eo);
280 r->content_type = str;
H A Dmod_filter.c221 const char *str = apr_table_get(r->headers_out, local
223 if (str) {
224 if (ap_strcasestr(str, "no-transform")) {
H A Dmod_reqtimeout.c108 const char *str; local
118 rv = apr_bucket_read(b, &str, &len, APR_BLOCK_READ);
125 if (str[len-1] == APR_ASCII_LF)
139 const char *str; local
143 rv = apr_bucket_read(e, &str, &len, APR_BLOCK_READ);
154 rv = apr_brigade_write(bbOut, NULL, NULL, str, len);
/httpd/modules/metadata/
H A Dmod_unique_id.c190 char *str; local
225 /* alloc str and do the uuencoding */
226 str = (char *)apr_palloc(r->pool, unique_id_rec_size_uu + 1);
230 str[k++] = uuencoder[y[0] >> 2];
231 str[k++] = uuencoder[((y[0] & 0x03) << 4) | ((y[1] & 0xf0) >> 4)];
233 str[k++] = uuencoder[((y[1] & 0x0f) << 2) | ((y[2] & 0xc0) >> 6)];
235 str[k++] = uuencoder[y[2] & 0x3f];
237 str[k++] = '\0';
244 return str;
/httpd/support/win32/
H A Dwintty.c66 char str[1024]; local
71 wvsprintf(str, fmt, args);
72 OutputDebugString(str);
84 char str[1024], *contitle = NULL; local
160 else if (!GetUserObjectInformation(hsavewinsta, UOI_NAME, str, sizeof(str), &len)) {
163 else if (strnicmp(str, "Service-", 8) == 0) {
164 printerr("WindowStation Name %s is a service\n", str);
328 while (ReadFile(hstdin, str, sizeof(str),
364 char *str[1024]; local
[all...]
/httpd/modules/aaa/
H A Dmod_authn_dbd.c159 char *str = apr_pstrcat(r->pool, AUTHN_PREFIX, local
163 while (str[j]) {
164 if (!apr_isalnum(str[j])) {
165 str[j] = '_';
168 str[j] = apr_toupper(str[j]);
172 apr_table_set(r->subprocess_env, str,
255 char *str = apr_pstrcat(r->pool, AUTHN_PREFIX, local
259 while (str[j]) {
260 if (!apr_isalnum(str[
[all...]
/httpd/modules/loggers/
H A Dmod_journald.c187 char *str; local
192 str = apr_palloc(r->pool, len + 1);
195 for (i = 0, s = str; i < nelts - 1; ++i) {
200 journald_log(r->pool, (char *) handle, str, len,
/httpd/os/unix/
H A Dunixd.c62 char *str; local
77 if (*(str = ap_getword_conf(cmd->temp_pool, &arg)) != '\0') {
78 if (!strcasecmp(str, "max")) {
82 cur = atol(str);
91 if (arg2 && (*(str = ap_getword_conf(cmd->temp_pool, &arg2)) != '\0')) {
92 max = atol(str);
/httpd/modules/arch/win32/
H A Dmod_win32.c105 static void prep_string(const char ** str, apr_pool_t *p) argument
107 const char *ch = *str;
122 widen += (ch - *str) + 1;
123 ch = *str;
124 *str = ch2 = apr_palloc(p, widen);
/httpd/modules/ldap/
H A Dutil_ldap_cache_mgr.c207 char *str, *p; local
211 str = va_arg(args, char *);
212 for (p = str; *p; ++p) {
/httpd/modules/proxy/balancers/
H A Dmod_lbmethod_heartbeat.c65 argstr_to_table(apr_pool_t *p, char *str, apr_table_t *parms) argument
71 key = apr_strtok(str, "&", &strtok_state);
/httpd/modules/ssl/
H A Dssl_util_ssl.c585 char *str, int strsize)
595 ap_bin2hex(id, idlen, str);
597 return str;
584 SSL_SESSION_id2sz(unsigned char *id, int idlen, char *str, int strsize) argument
/httpd/modules/proxy/
H A Dmod_proxy_scgi.c93 static apr_status_t bucket_socket_ex_read(apr_bucket *a, const char **str, argument
108 *str = NULL;
133 *str = buf;
139 *str = a->data;

Completed in 53 milliseconds

123