Home
last modified time | relevance | path

Searched refs:statusCode (Results 1 – 25 of 44) sorted by relevance

12

/plugin/gtime/gtlib/tsp/
H A DGTVerificationResultBase.php35 private $statusCode; variable in GTVerifificationResultBase
45 if (is_null($statusCode)) {
46 $statusCode = self::NO_CHECKS;
53 $this->statusCode = $statusCode;
63 return $this->statusCode;
78 * @param int $statusCode the status code to check for
81 public function hasStatus($statusCode) { argument
82 return ($statusCode & $this->statusCode) > 0;
107 * @param int $statusCode the status code to set
110 public function updateStatus($statusCode) { argument
[all …]
H A DGTTimestamp.php366 $statusCode = $certTokenResponse->getStatusCode();
368 if ($statusCode < 0 || $statusCode > 1) {
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DResponse.php81 private $statusCode = 200; variable in GuzzleHttp\\Psr7\\Response
101 $this->statusCode = $status;
108 if ($reason == '' && isset(self::$phrases[$this->statusCode])) {
109 $this->reasonPhrase = self::$phrases[$this->statusCode];
119 return $this->statusCode;
134 $new->statusCode = $code;
136 $reasonPhrase = self::$phrases[$new->statusCode];
142 private function assertStatusCodeIsInteger($statusCode) argument
144 if (filter_var($statusCode, FILTER_VALIDATE_INT) === false) {
149 private function assertStatusCodeRange($statusCode) argument
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Calendar/
H A DConferenceRequestStatus.php25 public $statusCode; variable in Google\\Service\\Calendar\\ConferenceRequestStatus
30 public function setStatusCode($statusCode) argument
32 $this->statusCode = $statusCode;
39 return $this->statusCode;
/plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/src/WebService/
H A DClient.php116 list($statusCode, $contentType, $body) = $request->post($body);
119 $statusCode,
131 list($statusCode, $contentType, $body) = $request->get();
134 $statusCode,
173 * @param int $statusCode the HTTP status code of the response
191 $statusCode, argument
197 if ($statusCode >= 400 && $statusCode <= 499) {
199 } elseif ($statusCode >= 500) {
200 $this->handle5xx($statusCode, $service, $path);
201 } elseif ($statusCode !== 200) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
H A DQueryCountByStatus.php29 public $statusCode; variable in Google\\Service\\CloudSearch\\QueryCountByStatus
48 public function setStatusCode($statusCode) argument
50 $this->statusCode = $statusCode;
57 return $this->statusCode;
H A DItemCountByStatus.php33 public $statusCode; variable in Google\\Service\\CloudSearch\\ItemCountByStatus
66 public function setStatusCode($statusCode) argument
68 $this->statusCode = $statusCode;
75 return $this->statusCode;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/
H A DActionStatus.php25 public $statusCode; variable in Google\\Service\\HangoutsChat\\ActionStatus
34 public function setStatusCode($statusCode) argument
36 $this->statusCode = $statusCode;
43 return $this->statusCode;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php668 $statusCode = $response['status'];
679 $responseBody = $this->convertBodyToString($response['body'], $statusCode, $exception);
680 if ($statusCode === 401) {
681 $exception = new Unauthorized401Exception($responseBody, $statusCode);
682 } elseif ($statusCode === 403) {
683 $exception = new Forbidden403Exception($responseBody, $statusCode);
684 } elseif ($statusCode === 404) {
685 $exception = new Missing404Exception($responseBody, $statusCode);
686 } elseif ($statusCode === 409) {
687 $exception = new Conflict409Exception($responseBody, $statusCode);
737 convertBodyToString($body, int $statusCode, Exception $exception) global() argument
[all...]
/plugin/webdav/vendor/sabre/http/lib/
H A DResponse.php154 $statusCode = $status;
159 $statusCode,
163 if ($statusCode < 100 || $statusCode > 999) {
167 $this->status = $statusCode;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1PodStatus.php53 public $statusCode; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1PodStatus
160 public function setStatusCode($statusCode) argument
162 $this->statusCode = $statusCode;
169 return $this->statusCode;
H A DGoogleCloudApigeeV1Result.php47 public $statusCode; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1Result
148 public function setStatusCode($statusCode) argument
150 $this->statusCode = $statusCode;
157 return $this->statusCode;
/plugin/davcal/vendor/sabre/http/lib/
H A DResponse.php155 $statusCode = $status;
160 $statusCode,
164 if ($statusCode < 100 || $statusCode > 999) {
168 $this->status = $statusCode;
/plugin/gtime/gtlib/http/
H A DGTHttpClient.php202 $statusCode = ($response === null) ? -1 : $response->getStatusCode();
204 if ($statusCode == 0) {
207 } else if ($statusCode == 1) {
210 } else if ($statusCode == 2) {
213 } else if ($statusCode == 3) {
216 } else if ($statusCode == 4) {
219 } else if ($statusCode == 5) {
224 if ($statusCode == 0 || $statusCode == 1) {
245 } else if ($statusCode > 1) {
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DRedirectMiddleware.php126 private function withTracking(PromiseInterface $promise, $uri, $statusCode) argument
129 function (ResponseInterface $response) use ($uri, $statusCode) {
136 array_unshift($statusHeader, $statusCode);
185 $statusCode = $response->getStatusCode();
186 if ($statusCode == 303 ||
187 ($statusCode <= 302 && !$options['allow_redirects']['strict'])
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Element/
H A DResponse.php207 $statusCode = null;
223 list(, $statusCode, ) = explode(' ', $elem['value'], 3);
230 return new self($href, $propertyLists, $statusCode);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Element/
H A DResponse.php226 $statusCode = null;
242 list(, $statusCode, ) = explode(' ', $elem['value'], 3);
249 return new self($href, $propertyLists, $statusCode);
/plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/src/WebService/Http/
H A DCurlRequest.php104 $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
108 return [$statusCode, $contentType, $body];
/plugin/combo/ComboStrap/
H A DHttpResponse.php95 $statusCode = $response->getStatusCode();
96 if ($statusCode === null) {
97 $statusCode = HttpResponseStatus::ALL_GOOD;
107 ->setStatus($statusCode)
/plugin/sequencediagram/bower_components/lodash/test/
H A Dsaucelabs.js363 var statusCode = _.get(res, 'statusCode'),
366 if (error || !taskId || statusCode != 200) {
373 statusStr = _.isFinite(statusCode) ? statusCode : na;
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dpusher-http-java-1.0.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/pusher/ com/ ...
H A Dhttpcore-4.4.9.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
/plugin/jcapture/lib/
H A Dhttpcore-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jdraw/lib/
H A Dhttpcore-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/diagramsnet/lib/js/dropbox/
H A DDropbox-sdk.min.js9statusCode=e.status):(e.rawResponse=null,e.status=null),r.callback(e)}r.emit("response",t);var n;t…

12