Lines Matching refs:return

145      * @return string
149 return $this->_host;
169 * @return bool true if the connection should stay alive, false otherwise
173 return $this->_keepAlive;
194 * @return bool true if the socket should be persistent, false otherwise
198 return $this->_persistentSocket;
215 * @return int number of milliseconds before connect will timeout
219 return $this->_connectTimeout;
236 * @return int number of milliseconds before read will timeout
240 return $this->_readWriteTimeout;
247 * @return bool
251 return false;
253 return stream_set_timeout(
301 * @return string
306 return chr(self::VERSION_1) /* version */
322 * @return string FastCGI Name value pair
345 return $nvpair . $name . $value;
352 * @return array of NVPair
384 return $array;
391 * @return array
402 return $ret;
409 * @return array
433 return $resp;
435 return false;
443 * @return array
458 return $this->readNvpair($resp['content'], $resp['contentLength']);
465 * Execute a request to the FastCGI application and return response body
469 * @return string
477 return $this->wait_for_response($id);
481 * Execute a request to the FastCGI application and return request data
486 * @return array
494 return $this->wait_for_response_data($id, 0, $readLimit);
510 * @return int
565 return $id;
593 * @return array response data
604 // If we already read the response during an earlier call for different id, just return it
608 return $this->_requests[$requestId]['response'];
677 return $this->_requests[$requestId];
686 * @return string The response content.
693 return $this->wait_for_response_data($requestId, $timeoutMs)['response'];