Home
last modified time | relevance | path

Searched refs:respData (Results 1 – 3 of 3) sorted by last modified time

/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DBatch.php226 private function parseHttpResponse($respData, $headerSize) argument
230 if (stripos($respData, $established_header) !== false) {
232 $respData = str_ireplace($established_header, '', $respData);
245 $responseBody = substr($respData, $headerSize);
246 $responseHeaders = substr($respData, 0, $headerSize);
248 $responseSegments = explode("\r\n\r\n", $respData, 2);
/plugin/vimeo/
H A Dsyntax.php123 $respData = $this->sendVimeoRequest($accessToken, $endpoint, $errors);
124 $videos = $respData['data'];
126 if (!empty($respData['paging']['next'])) {
128 … $respData = $this->sendVimeoRequest($accessToken, $respData['paging']['next'], $errors);
129 $videos = array_merge($videos, $respData['videos']);
130 if (empty($respData['paging']['next'])) {
/plugin/authgoogle/google/io/
H A DGoogle_CurlIO.php107 $respData = curl_exec($ch);
114 $respData = curl_exec($ch);
128 self::parseHttpResponse($respData, $respHeaderSize);
165 private static function parseHttpResponse($respData, $headerSize) { argument
166 if (stripos($respData, parent::CONNECTION_ESTABLISHED) !== false) {
167 $respData = str_ireplace(parent::CONNECTION_ESTABLISHED, '', $respData);
171 $responseBody = substr($respData, $headerSize);
172 $responseHeaders = substr($respData, 0, $headerSize);
174 list($responseHeaders, $responseBody) = explode("\r\n\r\n", $respData, 2);