Searched refs:strp (Results 1 - 4 of 4) sorted by relevance

/httpd/modules/mappers/
H A Dmod_imagemap.c292 char *strp = *string; local
297 while (apr_isspace(*strp)) {
298 strp++; /* go along string until non-whitespace */
301 if (*strp == '"') { /* if that character is a double quote */
302 strp++; /* step over it */
303 *quoted_part = strp; /* note where the quoted part begins */
305 while (*strp && *strp != '"') {
306 ++strp; /* skip the quoted portion */
309 *strp
[all...]
/httpd/modules/proxy/
H A Dmod_proxy_ftp.c291 char *user, *password, *host, *path, *parms, *strp, sport[7]; local
322 strp = strchr(url, ';');
323 if (strp != NULL) {
324 *(strp++) = '\0';
325 parms = ap_proxy_canonenc(p, strp, strlen(strp), enc_parm, 0,
340 if (strp != NULL) {
341 strp = ap_proxy_canonenc(p, r->args, strlen(r->args), enc_parm, 1, r->proxyreq);
342 if (strp == NULL)
344 parms = apr_pstrcat(p, parms, "?", strp, NUL
985 char *path, *strp, *type_suffix, *cwd = NULL; local
[all...]
H A Dproxy_util.c313 char *addr, *scope_id, *strp, *host, *url = *urlp; local
331 strp = strrchr(host, '@');
333 if (strp != NULL) {
334 *strp = '\0';
336 host = strp + 1;
339 strp = strchr(user, ':');
340 if (strp != NULL) {
341 *strp = '\0';
342 password = ap_proxy_canonenc(p, strp + 1, strlen(strp
[all...]
/httpd/server/
H A Dutil.c133 char *strp; local
140 for(strp = tf, f = fmt; strp < tf + sizeof(tf) - 6 && (*strp = *f)
141 ; f++, strp++) {
145 *++strp = *++f;
148 *strp++ = 'G';
149 *strp++ = 'M';
150 *strp = 'T';
154 *strp
[all...]

Completed in 1601 milliseconds