Home
last modified time | relevance | path

Searched refs:response_status (Results 1 – 20 of 20) sorted by relevance

/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DStreamingOutputCallRequest.php45 private $response_status = null; variable in Grpc\\Testing\\StreamingOutputCallRequest
146 return $this->response_status;
159 $this->response_status = $var;
DSimpleRequest.php64 private $response_status = null; variable in Grpc\\Testing\\SimpleRequest
251 return $this->response_status;
264 $this->response_status = $var;
/external/python/cryptography/docs/x509/
Docsp.rst200 >>> print(ocsp_resp.response_status)
331 .. classmethod:: build_unsuccessful(response_status)
350 >>> response.response_status
412 .. attribute:: response_status
426 :raises ValueError: If ``response_status`` is not
445 :raises ValueError: If ``response_status`` is not
455 :raises ValueError: If ``response_status`` is not
466 :raises ValueError: If ``response_status`` is not
476 :raises ValueError: If ``response_status`` is not
486 :raises ValueError: If ``response_status`` is not
[all …]
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_response_cache.h79 Status response_status; member
82 cb(tensor, is_dead, response_status); in FinishResponse()
Dgrpc_response_cache.cc81 entry.response_status = status; in OnRequestFinished()
/external/tensorflow/tensorflow/core/platform/cloud/
Dhttp_request_fake.h60 Status response_status, uint64 response_code) in FakeHttpRequest() argument
61 : FakeHttpRequest(request, response, response_status, nullptr, {}, in FakeHttpRequest()
69 Status response_status, string* captured_post_body, in FakeHttpRequest() argument
74 response_status_(response_status), in FakeHttpRequest()
/external/python/cryptography/src/cryptography/x509/
Docsp.py252 def build_unsuccessful(cls, response_status): argument
254 if not isinstance(response_status, OCSPResponseStatus):
258 if response_status is OCSPResponseStatus.SUCCESSFUL:
261 return backend.create_ocsp_response(response_status, None, None, None)
305 def response_status(self): member in OCSPResponse
/external/grpc-grpc/src/ruby/pb/test/
Dserver.rb132 unless req.response_status.nil?
134 req.response_status.code, req.response_status.message)
Dclient.rb536 response_status: echo_status)
559 response_status: echo_status)
/external/grpc-grpc/test/cpp/interop/
Dinterop_server.cc186 static_cast<grpc::StatusCode>(request->response_status().code()), in UnaryCall()
187 request->response_status().message()); in UnaryCall()
264 static_cast<grpc::StatusCode>(request.response_status().code()), in FullDuplexCall()
265 request.response_status().message()); in FullDuplexCall()
/external/grpc-grpc/src/python/grpcio_tests/tests/interop/
Dmethods.py52 servicer_context.set_code(request.response_status.code)
53 servicer_context.set_details(request.response_status.message)
349 response_status=messages_pb2.EchoStatus(code=code, message=details))
360 response_status=messages_pb2.EchoStatus(code=code, message=details))
/external/grpc-grpc/src/proto/grpc/testing/
Dmessages.proto76 EchoStatus response_status = 7; field
144 EchoStatus response_status = 7; field
/external/grpc-grpc-java/benchmarks/src/main/proto/grpc/testing/
Dmessages.proto80 EchoStatus response_status = 7; field
149 EchoStatus response_status = 7; field
/external/grpc-grpc/src/objective-c/tests/RemoteTestClient/
Dmessages.proto80 EchoStatus response_status = 7; field
149 EchoStatus response_status = 7; field
/external/grpc-grpc-java/interop-testing/src/main/proto/grpc/testing/
Dmessages.proto79 EchoStatus response_status = 7; field
152 EchoStatus response_status = 7; field
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Docsp.py28 if self.response_status != OCSPResponseStatus.SUCCESSFUL:
119 response_status = utils.read_only_property("_status") variable in _OCSPResponse
Dbackend.py1570 def create_ocsp_response(self, response_status, builder, private_key, argument
1572 if response_status is ocsp.OCSPResponseStatus.SUCCESSFUL:
1580 response_status.value, basic
/external/rust/crates/grpcio-sys/grpc/src/proto/grpc/testing/
Dmessages.proto91 EchoStatus response_status = 7; field
174 EchoStatus response_status = 7; field
/external/python/cryptography/tests/x509/
Dtest_ocsp.py553 assert resp.response_status is status
583 assert resp.response_status == ocsp.OCSPResponseStatus.SUCCESSFUL
632 assert resp.response_status == ocsp.OCSPResponseStatus.UNAUTHORIZED
/external/grpc-grpc/doc/
Dinterop-test-descriptions.md760 response_status:{
771 response_status:{
801 response_status:{
1099 When the client sends a response_status in the request payload, the server closes
1100 the stream with the status code and messsage contained within said response_status.