scratch_len       124 ext/standard/http_fopen_wrapper.c 	int scratch_len = 0;
scratch_len       365 ext/standard/http_fopen_wrapper.c 				scratch_len = strlen(path) + 29 + Z_STRLEN_PP(tmpzval);
scratch_len       366 ext/standard/http_fopen_wrapper.c 				scratch = emalloc(scratch_len);
scratch_len       380 ext/standard/http_fopen_wrapper.c 		scratch_len = strlen(path) + 29 + protocol_version_len;
scratch_len       381 ext/standard/http_fopen_wrapper.c 		scratch = emalloc(scratch_len);
scratch_len       382 ext/standard/http_fopen_wrapper.c 		strncpy(scratch, "GET ", scratch_len);
scratch_len       405 ext/standard/http_fopen_wrapper.c 			strlcat(scratch, resource->path, scratch_len);
scratch_len       407 ext/standard/http_fopen_wrapper.c 			strlcat(scratch, "/", scratch_len);
scratch_len       412 ext/standard/http_fopen_wrapper.c 			strlcat(scratch, "?", scratch_len);
scratch_len       413 ext/standard/http_fopen_wrapper.c 			strlcat(scratch, resource->query, scratch_len);
scratch_len       419 ext/standard/http_fopen_wrapper.c 		strlcat(scratch, " HTTP/", scratch_len);
scratch_len       420 ext/standard/http_fopen_wrapper.c 		strlcat(scratch, protocol_version, scratch_len);
scratch_len       421 ext/standard/http_fopen_wrapper.c 		strlcat(scratch, "\r\n", scratch_len);
scratch_len       423 ext/standard/http_fopen_wrapper.c 		strlcat(scratch, " HTTP/1.0\r\n", scratch_len);
scratch_len       551 ext/standard/http_fopen_wrapper.c 		if (snprintf(scratch, scratch_len, "Authorization: Basic %s\r\n", tmp) > 0) {
scratch_len       562 ext/standard/http_fopen_wrapper.c 		if (snprintf(scratch, scratch_len, "From: %s\r\n", FG(from_address)) > 0)
scratch_len       570 ext/standard/http_fopen_wrapper.c 			if (snprintf(scratch, scratch_len, "Host: %s:%i\r\n", resource->host, resource->port) > 0)
scratch_len       573 ext/standard/http_fopen_wrapper.c 			if (snprintf(scratch, scratch_len, "Host: %s\r\n", resource->host) > 0) {
scratch_len       631 ext/standard/http_fopen_wrapper.c 			scratch_len = slprintf(scratch, scratch_len, "Content-Length: %d\r\n", Z_STRLEN_PP(tmpzval));
scratch_len       632 ext/standard/http_fopen_wrapper.c 			php_stream_write(stream, scratch, scratch_len);
scratch_len       646 ext/standard/http_fopen_wrapper.c 			scratch_len = slprintf(scratch, scratch_len, "Content-Length: %d\r\n", Z_STRLEN_PP(tmpzval));
scratch_len       647 ext/standard/http_fopen_wrapper.c 			php_stream_write(stream, scratch, scratch_len);