Home
last modified time | relevance | path

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

123

/plugin/gtime/gtlib/tsp/
DGTVerificationResultBase.php35 private $statusCode; variable in GTVerifificationResultBase
40 * @param int $statusCode verification status code bitfield
43 public function __construct($statusCode = null, $errorCode = null) { argument
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;
[all …]
DGTTimestamp.php366 $statusCode = $certTokenResponse->getStatusCode();
368 if ($statusCode < 0 || $statusCode > 1) {
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DResponse.php85 private $statusCode; variable in GuzzleHttp\\Psr7\\Response
103 $this->statusCode = $status;
110 if ($reason == '' && isset(self::PHRASES[$this->statusCode])) {
111 $this->reasonPhrase = self::PHRASES[$this->statusCode];
121 return $this->statusCode;
136 $new->statusCode = $code;
137 if ($reasonPhrase == '' && isset(self::PHRASES[$new->statusCode])) {
138 $reasonPhrase = self::PHRASES[$new->statusCode];
146 * @param mixed $statusCode
148 private function assertStatusCodeIsInteger($statusCode): void argument
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
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;
135 if ($reasonPhrase == '' && isset(self::$phrases[$new->statusCode])) {
136 $reasonPhrase = self::$phrases[$new->statusCode];
142 private function assertStatusCodeIsInteger($statusCode) argument
144 if (filter_var($statusCode, FILTER_VALIDATE_INT) === false) {
[all …]
/plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/src/WebService/
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) {
198 $this->handle4xx($statusCode, $contentType, $body, $service, $path);
199 } elseif ($statusCode >= 500) {
200 $this->handle5xx($statusCode, $service, $path);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Calendar/
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/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
DQueryCountByStatus.php29 public $statusCode; variable in Google\\Service\\CloudSearch\\QueryCountByStatus
48 public function setStatusCode($statusCode) argument
50 $this->statusCode = $statusCode;
57 return $this->statusCode;
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/
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/
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);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
DGoogleCloudApigeeV1PodStatus.php53 public $statusCode; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1PodStatus
160 public function setStatusCode($statusCode) argument
162 $this->statusCode = $statusCode;
169 return $this->statusCode;
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/webdav/vendor/sabre/http/lib/
DResponse.php154 $statusCode = $status;
159 $statusCode,
163 if ($statusCode < 100 || $statusCode > 999) {
167 $this->status = $statusCode;
/plugin/gtime/gtlib/http/
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/asciidocjs/node_modules/clean-css/lib/reader/
Dload-remote-resource.js40 if (res.statusCode < 200 || res.statusCode > 399) {
41 return callback(res.statusCode, null);
42 } else if (res.statusCode > 299) {
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
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/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/
DRedirectMiddleware.php124 …private function withTracking(PromiseInterface $promise, string $uri, int $statusCode): PromiseInt… argument
127 static function (ResponseInterface $response) use ($uri, $statusCode) {
134 \array_unshift($statusHeader, (string) $statusCode);
168 $statusCode = $response->getStatusCode();
169 if ($statusCode == 303
170 || ($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/asciidocjs/node_modules/unxhr/lib/
DXMLHttpRequest.js420 …if (response.statusCode === 301 || response.statusCode === 302 || response.statusCode === 303 || r…
431 method: response.statusCode === 303 ? 'GET' : settings.method,
449 self.status = response.statusCode
529 self.status = result.data.statusCode
Drequest.js27 data: { statusCode: response.statusCode, headers: response.headers } property
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Element/
DResponse.php226 $statusCode = null;
242 list(, $statusCode, ) = explode(' ', $elem['value'], 3);
249 return new self($href, $propertyLists, $statusCode);
/plugin/combo/ComboStrap/
H A DHttpResponse.php95 $statusCode = $response->getStatusCode();
96 if ($statusCode === null) {
97 $statusCode = HttpResponseStatus::ALL_GOOD;
107 ->setStatus($statusCode)
/plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/src/WebService/Http/
DCurlRequest.php104 $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
108 return [$statusCode, $contentType, $body];
/plugin/sequencediagram/bower_components/lodash/test/
Dsaucelabs.js363 var statusCode = _.get(res, 'statusCode'),
366 if (error || !taskId || statusCode != 200) {
373 statusStr = _.isFinite(statusCode) ? statusCode : na;

123