Home
last modified time | relevance | path

Searched refs:rpc_error (Results 1 – 6 of 6) sorted by relevance

/external/grpc-grpc/src/python/grpcio_testing/grpc_testing/_server/
D_service.py29 rpc_error = grpc.RpcError()
30 self._rpc.add_rpc_error(rpc_error)
31 raise rpc_error
D_rpc.py80 def add_rpc_error(self, rpc_error): argument
82 self._rpc_errors.append(rpc_error)
/external/grpc-grpc/src/python/grpcio_tests/tests/testing/
D_client_application.py234 except grpc.RpcError as rpc_error:
235 return Outcome(Outcome.Kind.RPC_ERROR, rpc_error.code(),
236 rpc_error.details())
/external/grpc-grpc/src/python/grpcio_tests/tests/interop/
Dmethods.py303 except grpc.RpcError as rpc_error:
304 if rpc_error.code() is not grpc.StatusCode.CANCELLED:
321 except grpc.RpcError as rpc_error:
322 if rpc_error.code() is not grpc.StatusCode.DEADLINE_EXCEEDED:
/external/syzkaller/vendor/google.golang.org/appengine/internal/remote_api/
Dremote_api.proto43 optional RpcError rpc_error = 5; field
/external/grpc-grpc/src/python/grpcio/grpc/
D_server.py109 rpc_error = grpc.RpcError()
110 state.rpc_errors.append(rpc_error)
111 raise rpc_error