Lines Matching refs:t

446 			char *t;  in php_stream_url_wrap_http_ex()  local
459 t = ZSTR_VAL(tmp); in php_stream_url_wrap_http_ex()
463 strip_header(user_headers, t, "content-length:"); in php_stream_url_wrap_http_ex()
464 strip_header(user_headers, t, "content-type:"); in php_stream_url_wrap_http_ex()
467 if ((s = strstr(t, "user-agent:")) && in php_stream_url_wrap_http_ex()
468 (s == t || *(s-1) == '\r' || *(s-1) == '\n' || in php_stream_url_wrap_http_ex()
472 if ((s = strstr(t, "host:")) && in php_stream_url_wrap_http_ex()
473 (s == t || *(s-1) == '\r' || *(s-1) == '\n' || in php_stream_url_wrap_http_ex()
477 if ((s = strstr(t, "from:")) && in php_stream_url_wrap_http_ex()
478 (s == t || *(s-1) == '\r' || *(s-1) == '\n' || in php_stream_url_wrap_http_ex()
482 if ((s = strstr(t, "authorization:")) && in php_stream_url_wrap_http_ex()
483 (s == t || *(s-1) == '\r' || *(s-1) == '\n' || in php_stream_url_wrap_http_ex()
487 if ((s = strstr(t, "content-length:")) && in php_stream_url_wrap_http_ex()
488 (s == t || *(s-1) == '\r' || *(s-1) == '\n' || in php_stream_url_wrap_http_ex()
492 if ((s = strstr(t, "content-type:")) && in php_stream_url_wrap_http_ex()
493 (s == t || *(s-1) == '\r' || *(s-1) == '\n' || in php_stream_url_wrap_http_ex()
497 if ((s = strstr(t, "connection:")) && in php_stream_url_wrap_http_ex()
498 (s == t || *(s-1) == '\r' || *(s-1) == '\n' || in php_stream_url_wrap_http_ex()
503 if (use_proxy && use_ssl && (s = strstr(t, "proxy-authorization:")) && in php_stream_url_wrap_http_ex()
504 (s == t || *(s-1) == '\r' || *(s-1) == '\n' || in php_stream_url_wrap_http_ex()
508 while (s > t && (*(s-1) == ' ' || *(s-1) == '\t')) s--; in php_stream_url_wrap_http_ex()
512 if (s == t) { in php_stream_url_wrap_http_ex()
516 while (s > t && (*(s-1) == '\r' || *(s-1) == '\n')) s--; in php_stream_url_wrap_http_ex()
517 user_headers[s - t] = 0; in php_stream_url_wrap_http_ex()
520 memmove(user_headers + (s - t), user_headers + (p - t), strlen(p) + 1); in php_stream_url_wrap_http_ex()