Lines Matching refs:p

256 			char *s, *p;  in php_stream_url_wrap_http_ex()  local
266 p = s; in php_stream_url_wrap_http_ex()
267 while (*p != 0 && *p != ':' && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
268 if (*p == ':') { in php_stream_url_wrap_http_ex()
269 p++; in php_stream_url_wrap_http_ex()
270 if (p - s == sizeof("Proxy-Authorization:") - 1 && in php_stream_url_wrap_http_ex()
273 while (*p != 0 && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
274 smart_str_appendl(&header, s, p - s); in php_stream_url_wrap_http_ex()
278 while (*p != 0 && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
281 s = p; in php_stream_url_wrap_http_ex()
290 p = s; in php_stream_url_wrap_http_ex()
291 while (*p != 0 && *p != ':' && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
292 if (*p == ':') { in php_stream_url_wrap_http_ex()
293 p++; in php_stream_url_wrap_http_ex()
294 if (p - s == sizeof("Proxy-Authorization:") - 1 && in php_stream_url_wrap_http_ex()
297 while (*p != 0 && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
298 smart_str_appendl(&header, s, p - s); in php_stream_url_wrap_http_ex()
302 while (*p != 0 && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
305 s = p; in php_stream_url_wrap_http_ex()
494 char *p = s + sizeof("proxy-authorization:") - 1; in php_stream_url_wrap_http_ex() local
497 while (*p != 0 && *p != '\r' && *p != '\n') p++; in php_stream_url_wrap_http_ex()
498 while (*p == '\r' || *p == '\n') p++; in php_stream_url_wrap_http_ex()
499 if (*p == 0) { in php_stream_url_wrap_http_ex()
508 memmove(user_headers + (s - t), user_headers + (p - t), strlen(p) + 1); in php_stream_url_wrap_http_ex()