Lines Matching refs:tmp_line_len
683 size_t tmp_line_len; in php_stream_url_wrap_http_ex() local
686 if (php_stream_get_line(stream, tmp_line, sizeof(tmp_line) - 1, &tmp_line_len) != NULL) { in php_stream_url_wrap_http_ex()
689 if (tmp_line_len > 9) { in php_stream_url_wrap_http_ex()
709 && php_stream_get_line(stream, tmp_line, sizeof(tmp_line) - 1, &tmp_line_len) != NULL in php_stream_url_wrap_http_ex()
710 …&& ( tmp_line_len < sizeof("HTTP/1") - 1 || strncasecmp(tmp_line, "HTTP/1", sizeof("HTTP/1") - 1) ) in php_stream_url_wrap_http_ex()
713 if (tmp_line_len > 9) { in php_stream_url_wrap_http_ex()
732 if (!tmp_line_len) { in php_stream_url_wrap_http_ex()
739 if (tmp_line_len >= 1 && tmp_line[tmp_line_len - 1] == '\n') { in php_stream_url_wrap_http_ex()
740 --tmp_line_len; in php_stream_url_wrap_http_ex()
741 if (tmp_line_len >= 1 &&tmp_line[tmp_line_len - 1] == '\r') { in php_stream_url_wrap_http_ex()
742 --tmp_line_len; in php_stream_url_wrap_http_ex()
745 ZVAL_STRINGL(&http_response, tmp_line, tmp_line_len); in php_stream_url_wrap_http_ex()