Searched refs:respData (Results 1 – 3 of 3) sorted by relevance
/plugin/authgoogle/google/io/ |
H A D | Google_CurlIO.php | 107 $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);
|
/plugin/vimeo/ |
H A D | syntax.php | 123 $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/authgooglesheets/vendor/google/apiclient/src/Http/ |
H A D | Batch.php | 226 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);
|