scratch_len       124 ext/standard/http_fopen_wrapper.c 	size_t scratch_len = 0;
scratch_len       373 ext/standard/http_fopen_wrapper.c 				scratch_len = strlen(path) + 29 + Z_STRLEN_P(tmpzval);
scratch_len       374 ext/standard/http_fopen_wrapper.c 				scratch = emalloc(scratch_len);
scratch_len       386 ext/standard/http_fopen_wrapper.c 		scratch_len = strlen(path) + 29 + protocol_version_len;
scratch_len       387 ext/standard/http_fopen_wrapper.c 		scratch = emalloc(scratch_len);
scratch_len       388 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       556 ext/standard/http_fopen_wrapper.c 		if (snprintf(scratch, scratch_len, "Authorization: Basic %s\r\n", ZSTR_VAL(stmp)) > 0) {
scratch_len       566 ext/standard/http_fopen_wrapper.c 		if (snprintf(scratch, scratch_len, "From: %s\r\n", FG(from_address)) > 0)
scratch_len       574 ext/standard/http_fopen_wrapper.c 			if (snprintf(scratch, scratch_len, "Host: %s:%i\r\n", resource->host, resource->port) > 0)
scratch_len       577 ext/standard/http_fopen_wrapper.c 			if (snprintf(scratch, scratch_len, "Host: %s\r\n", resource->host) > 0) {
scratch_len       632 ext/standard/http_fopen_wrapper.c 			scratch_len = slprintf(scratch, scratch_len, "Content-Length: %d\r\n", Z_STRLEN_P(tmpzval));
scratch_len       633 ext/standard/http_fopen_wrapper.c 			php_stream_write(stream, scratch, scratch_len);
scratch_len       647 ext/standard/http_fopen_wrapper.c 			scratch_len = slprintf(scratch, scratch_len, "Content-Length: %d\r\n", Z_STRLEN_P(tmpzval));
scratch_len       648 ext/standard/http_fopen_wrapper.c 			php_stream_write(stream, scratch, scratch_len);