Lines Matching refs:tmp_line
161 char tmp_line[128]; in php_stream_url_wrap_http_ex() local
179 tmp_line[0] = '\0'; in php_stream_url_wrap_http_ex()
655 php_stream_get_line(stream, tmp_line, sizeof(tmp_line) - 1, &tmp_line_len) != NULL) { in php_stream_url_wrap_http_ex()
659 response_code = atoi(tmp_line + 9); in php_stream_url_wrap_http_ex()
678 && php_stream_get_line(stream, tmp_line, sizeof(tmp_line) - 1, &tmp_line_len) != NULL in php_stream_url_wrap_http_ex()
679 …&& ( tmp_line_len < sizeof("HTTP/1") - 1 || strncasecmp(tmp_line, "HTTP/1", sizeof("HTTP/1") - 1) ) in php_stream_url_wrap_http_ex()
683 response_code = atoi(tmp_line + 9); in php_stream_url_wrap_http_ex()
697 tmp_line, response_code); in php_stream_url_wrap_http_ex()
702 tmp_line[0] = '\0'; in php_stream_url_wrap_http_ex()
705 tmp_line, response_code); in php_stream_url_wrap_http_ex()
708 if (tmp_line_len >= 1 && tmp_line[tmp_line_len - 1] == '\n') { in php_stream_url_wrap_http_ex()
710 if (tmp_line_len >= 1 &&tmp_line[tmp_line_len - 1] == '\r') { in php_stream_url_wrap_http_ex()
718 ZVAL_STRINGL(&http_response, tmp_line, tmp_line_len); in php_stream_url_wrap_http_ex()
935 php_stream_wrapper_log_error(wrapper, options, "HTTP request failed! %s", tmp_line); in php_stream_url_wrap_http_ex()