Lines Matching refs:p

257 			char *s, *p;  in php_stream_url_wrap_http_ex()  local
267 p = s; in php_stream_url_wrap_http_ex()
268 while (*p != 0 && *p != ':' && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
269 if (*p == ':') { in php_stream_url_wrap_http_ex()
270 p++; in php_stream_url_wrap_http_ex()
271 if (p - s == sizeof("Proxy-Authorization:") - 1 && in php_stream_url_wrap_http_ex()
274 while (*p != 0 && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
275 smart_str_appendl(&header, s, p - s); in php_stream_url_wrap_http_ex()
279 while (*p != 0 && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
282 s = p; in php_stream_url_wrap_http_ex()
291 p = s; in php_stream_url_wrap_http_ex()
292 while (*p != 0 && *p != ':' && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
293 if (*p == ':') { in php_stream_url_wrap_http_ex()
294 p++; in php_stream_url_wrap_http_ex()
295 if (p - s == sizeof("Proxy-Authorization:") - 1 && in php_stream_url_wrap_http_ex()
298 while (*p != 0 && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
299 smart_str_appendl(&header, s, p - s); in php_stream_url_wrap_http_ex()
303 while (*p != 0 && *p != '\r' && *p !='\n') p++; in php_stream_url_wrap_http_ex()
306 s = p; in php_stream_url_wrap_http_ex()
495 char *p = s + sizeof("proxy-authorization:") - 1; in php_stream_url_wrap_http_ex() local
498 while (*p != 0 && *p != '\r' && *p != '\n') p++; in php_stream_url_wrap_http_ex()
499 while (*p == '\r' || *p == '\n') p++; in php_stream_url_wrap_http_ex()
500 if (*p == 0) { in php_stream_url_wrap_http_ex()
509 memmove(user_headers + (s - t), user_headers + (p - t), strlen(p) + 1); in php_stream_url_wrap_http_ex()