Home
last modified time | relevance | path

Searched refs:rawHeaders (Results 1 – 7 of 7) sorted by relevance

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DMessage.php132 list($rawHeaders, $body) = $messageParts;
133 $rawHeaders .= "\r\n"; // Put back the delimiter we split previously
134 $headerParts = preg_split("/\r?\n/", $rawHeaders, 2);
140 list($startLine, $rawHeaders) = $headerParts;
144 $rawHeaders = preg_replace(Rfc7230::HEADER_FOLD_REGEX, ' ', $rawHeaders);
148 $count = preg_match_all(Rfc7230::HEADER_REGEX, $rawHeaders, $headerLines, PREG_SET_ORDER);
151 if ($count !== substr_count($rawHeaders, "\n")) {
153 if (preg_match(Rfc7230::HEADER_FOLD_REGEX, $rawHeaders)) {
/plugin/authfacebook/lib/HttpClients/
H A DFacebookStreamHttpClient.php67 $rawHeaders = $this->facebookStream->getResponseHeaders();
69 if ($rawBody === false || empty($rawHeaders)) {
73 $rawHeaders = implode("\r\n", $rawHeaders);
75 return new GraphRawResponse($rawHeaders, $rawBody);
H A DFacebookGuzzleHttpClient.php73 $rawHeaders = $this->getHeadersAsString($rawResponse);
77 return new GraphRawResponse($rawHeaders, $rawBody, $httpStatusCode);
90 $rawHeaders = [];
92 $rawHeaders[] = $name . ": " . implode(", ", $values);
95 return implode("\r\n", $rawHeaders);
H A DFacebookCurlHttpClient.php77 list($rawHeaders, $rawBody) = $this->extractResponseHeadersAndBody();
81 return new GraphRawResponse($rawHeaders, $rawBody);
159 $rawHeaders = implode("\r\n\r\n", $parts);
161 return [trim($rawHeaders), trim($rawBody)];
/plugin/authfacebook/lib/Http/
H A DGraphRawResponse.php114 * @param string $rawHeaders The raw headers from the response.
116 protected function setHeadersFromString($rawHeaders) argument
119 $rawHeaders = str_replace("\r\n", "\n", $rawHeaders);
123 $headerCollection = explode("\n\n", trim($rawHeaders));
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DBatch.php166 list($rawHeaders, $part) = explode("\r\n\r\n", $part, 2);
167 $headers = $this->parseRawHeaders($rawHeaders);
201 private function parseRawHeaders($rawHeaders) argument
204 $responseHeaderLines = explode("\r\n", $rawHeaders);
/plugin/authgoogle/google/io/
H A DGoogle_CurlIO.php181 private static function parseResponseHeaders($rawHeaders) { argument
184 $responseHeaderLines = explode("\r\n", $rawHeaders);