tmp_line_len      684 ext/standard/http_fopen_wrapper.c 		size_t tmp_line_len;
tmp_line_len      687 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      690 ext/standard/http_fopen_wrapper.c 			if (tmp_line_len > 9) {
tmp_line_len      715 ext/standard/http_fopen_wrapper.c 						if (!tmp_line_len) {
tmp_line_len      722 ext/standard/http_fopen_wrapper.c 			if (tmp_line[tmp_line_len - 1] == '\n') {
tmp_line_len      723 ext/standard/http_fopen_wrapper.c 				--tmp_line_len;
tmp_line_len      724 ext/standard/http_fopen_wrapper.c 				if (tmp_line[tmp_line_len - 1] == '\r') {
tmp_line_len      725 ext/standard/http_fopen_wrapper.c 					--tmp_line_len;
tmp_line_len      729 ext/standard/http_fopen_wrapper.c 			ZVAL_STRINGL(http_response, tmp_line, tmp_line_len, 1);