Lines Matching refs:p
260 char *s, *p; in php_stream_url_wrap_http_ex() local
270 p = s; in php_stream_url_wrap_http_ex()
271 while (*p != 0 && *p != ':' && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
272 if (*p == ':') { in php_stream_url_wrap_http_ex()
273 p++; in php_stream_url_wrap_http_ex()
274 if (p - s == sizeof("Proxy-Authorization:") - 1 && in php_stream_url_wrap_http_ex()
277 while (*p != 0 && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
278 smart_str_appendl(&header, s, p - s); in php_stream_url_wrap_http_ex()
282 while (*p != 0 && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
285 s = p; in php_stream_url_wrap_http_ex()
294 p = s; in php_stream_url_wrap_http_ex()
295 while (*p != 0 && *p != ':' && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
296 if (*p == ':') { in php_stream_url_wrap_http_ex()
297 p++; in php_stream_url_wrap_http_ex()
298 if (p - s == sizeof("Proxy-Authorization:") - 1 && in php_stream_url_wrap_http_ex()
301 while (*p != 0 && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
302 smart_str_appendl(&header, s, p - s); in php_stream_url_wrap_http_ex()
306 while (*p != 0 && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
309 s = p; in php_stream_url_wrap_http_ex()
498 char *p = s + sizeof("proxy-authorization:") - 1; in php_stream_url_wrap_http_ex() local
501 while (*p != 0 && *p != '\r' && *p != '\n') p++; in php_stream_url_wrap_http_ex()
502 while (*p == '\r' || *p == '\n') p++; in php_stream_url_wrap_http_ex()
503 if (*p == 0) { in php_stream_url_wrap_http_ex()
512 memmove(user_headers + (s - t), user_headers + (p - t), strlen(p) + 1); in php_stream_url_wrap_http_ex()