tmp_line_len      682 ext/standard/http_fopen_wrapper.c 		size_t tmp_line_len;
tmp_line_len      685 ext/standard/http_fopen_wrapper.c 		if (php_stream_get_line(stream, tmp_line, sizeof(tmp_line) - 1, &tmp_line_len) != NULL) {
tmp_line_len      688 ext/standard/http_fopen_wrapper.c 			if (tmp_line_len > 9) {
tmp_line_len      713 ext/standard/http_fopen_wrapper.c 						if (!tmp_line_len) {
tmp_line_len      720 ext/standard/http_fopen_wrapper.c 			if (tmp_line[tmp_line_len - 1] == '\n') {
tmp_line_len      721 ext/standard/http_fopen_wrapper.c 				--tmp_line_len;
tmp_line_len      722 ext/standard/http_fopen_wrapper.c 				if (tmp_line[tmp_line_len - 1] == '\r') {
tmp_line_len      723 ext/standard/http_fopen_wrapper.c 					--tmp_line_len;
tmp_line_len      726 ext/standard/http_fopen_wrapper.c 			ZVAL_STRINGL(&http_response, tmp_line, tmp_line_len);