HomeSort by relevance Sort by last modified time
    Searched refs:grpc (Results 1 - 25 of 2927) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/syzkaller/vendor/google.golang.org/grpc/
doc.go 3 * Copyright 2015 gRPC authors.
20 Package grpc implements an RPC system called gRPC.
22 See grpc.io for more information about gRPC.
24 package grpc package
version.go 3 * Copyright 2018 gRPC authors.
19 package grpc package
21 // Version is the current grpc version.
  /external/grpc-grpc-java/core/src/main/java/io/grpc/
package-info.java 2 * Copyright 2015 The gRPC Authors
18 * The gRPC core public API.
20 * <p>gRPC is based on a client-server model of remote procedure calls. A client creates a channel
25 * <p>To send an RPC, first create a {@link io.grpc.Channel} using {@link
26 * io.grpc.ManagedChannelBuilder#forTarget}. When using auto generate Protobuf stubs, the stub class
31 * <p>To receive RPCs, create a {@link io.grpc.Server} using {@link io.grpc.ServerBuilder#forPort}.
34 * io.grpc.ServerBuilder#addService}. Once your server is built, call {@link io.grpc.Server#start}
37 * <p>Both Clients and Servers should use a custom {@link java.util.concurrent.Executor}. The gRPC
    [all...]
  /external/grpc-grpc/src/core/lib/surface/
version.cc 3 * Copyright 2015 gRPC authors.
22 #include <grpc/support/port_platform.h>
24 #include <grpc/grpc.h>
event_string.h 3 * Copyright 2015 gRPC authors.
22 #include <grpc/support/port_platform.h>
24 #include <grpc/grpc.h>
  /external/grpc-grpc/test/cpp/util/
string_ref_helper.cc 3 * Copyright 2015 gRPC authors.
21 namespace grpc { namespace
24 grpc::string ToString(const grpc::string_ref& r) {
25 return grpc::string(r.data(), r.size());
29 } // namespace grpc
service_describer.h 3 * Copyright 2016 gRPC authors.
25 namespace grpc { namespace
28 grpc::string DescribeServiceList(std::vector<grpc::string> service_list,
29 grpc::protobuf::DescriptorPool& desc_pool);
31 grpc::string DescribeService(const grpc::protobuf::ServiceDescriptor* service);
33 grpc::string DescribeMethod(const grpc::protobuf::MethodDescriptor* method);
35 grpc::string SummarizeService(const grpc::protobuf::ServiceDescriptor* service)
    [all...]
string_ref_helper.h 3 * Copyright 2015 gRPC authors.
24 namespace grpc { namespace
27 grpc::string ToString(const grpc::string_ref& r);
30 } // namespace grpc
  /external/grpc-grpc-java/auth/src/main/java/io/grpc/auth/
package-info.java 2 * Copyright 2017 The gRPC Authors
18 * Implementations of {@link io.grpc.CallCredentials} and authentication related API.
20 package io.grpc.auth;
  /external/grpc-grpc-java/core/src/main/java/io/grpc/inprocess/
package-info.java 2 * Copyright 2015 The gRPC Authors
20 package io.grpc.inprocess;
  /external/grpc-grpc-java/core/src/main/java/io/grpc/util/
package-info.java 2 * Copyright 2017 The gRPC Authors
20 package io.grpc.util;
  /external/grpc-grpc-java/okhttp/src/main/java/io/grpc/okhttp/
package-info.java 2 * Copyright 2015 The gRPC Authors
22 package io.grpc.okhttp;
  /external/grpc-grpc-java/protobuf/src/main/java/io/grpc/protobuf/
package-info.java 2 * Copyright 2017 The gRPC Authors
18 * API for gRPC over Protocol Buffers, including tools for serializing and de-serializing protobuf
21 package io.grpc.protobuf;
  /external/grpc-grpc-java/services/src/main/java/io/grpc/services/
package-info.java 2 * Copyright 2016 The gRPC Authors
18 * Service definitions and utilities for the pre-defined gRPC services.
20 package io.grpc.services;
  /external/grpc-grpc-java/stub/src/main/java/io/grpc/stub/
package-info.java 2 * Copyright 2017 The gRPC Authors
20 * <p>The gRPC Java API is split into two main parts: The stub layer and the call layer. The stub
23 * <p>In the most common case of gRPC over Protocol Buffers, stub classes are automatically
25 * href="https://grpc.io/docs/reference/java/generated-code.html">gRPC Java Generated Code Guide</a>
29 * to implement/override. These classes internally use {@link io.grpc.stub.ServerCalls} to interact
30 * with the call layer. The RPC methods consume a {@link io.grpc.stub.StreamObserver} object {@code
32 * methods in the server application, they may call the {@link io.grpc.stub.StreamObserver#onNext
33 * onNext()}, {@link io.grpc.stub.StreamObserver#onError onError()} and {@link
34 * io.grpc.stub.StreamObserver#onCompleted onCompleted()} methods on the {@code responseObserver
    [all...]
  /external/grpc-grpc-java/testing/src/main/java/io/grpc/testing/
package-info.java 2 * Copyright 2015 The gRPC Authors
18 * API that is useful for testing gRPC.
20 package io.grpc.testing;
  /external/grpc-grpc/src/cpp/common/
version_cc.cc 3 * Copyright 2016 gRPC authors.
24 namespace grpc { namespace
25 grpc::string Version() { return "1.16.0-dev"; }
26 } // namespace grpc
  /external/grpc-grpc/test/distrib/python/
distribtest.py 1 # Copyright 2016 gRPC authors.
15 import grpc
19 channel = grpc.insecure_channel('localhost:1000')
  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
package-info.java 2 * Copyright 2015 The gRPC Authors
18 * Interfaces and implementations that are internal to gRPC.
21 * io.grpc.Internal}.
23 @io.grpc.Internal
24 package io.grpc.internal;
  /external/grpc-grpc/test/core/handshake/
server_ssl_common.h 3 * Copyright 2016 gRPC authors.
22 #include <grpc/grpc.h>
23 #include <grpc/grpc_security.h>
24 #include <grpc/support/alloc.h>
25 #include <grpc/support/log.h>
26 #include <grpc/support/string_util.h>
27 #include <grpc/support/sync.h>
  /external/grpc-grpc/include/grpc/
byte_buffer.h 3 * Copyright 2015 gRPC authors.
22 #include <grpc/support/port_platform.h>
24 #include <grpc/impl/codegen/byte_buffer.h>
25 #include <grpc/slice_buffer.h>
census.h 3 * Copyright 2015-2016 gRPC authors.
22 #include <grpc/support/port_platform.h>
24 #include <grpc/grpc.h>
  /external/grpc-grpc/src/core/ext/transport/chttp2/client/
authority.h 3 * Copyright 2018 gRPC authors.
22 #include <grpc/support/port_platform.h>
24 #include <grpc/grpc.h>
  /external/grpc-grpc/tools/run_tests/helper_scripts/
run_grpc-node.sh 2 # Copyright 2015 gRPC authors.
16 # This script runs grpc/grpc-node tests with their grpc submodule updated
19 # cd to gRPC root directory
24 rm -rf ./../grpc-node
25 git clone --recursive https://github.com/grpc/grpc-node ./../grpc-node
26 cd ./../grpc-nod
    [all...]
  /external/flatbuffers/tests/
monster_test.grpc.fb.h 1 // Generated by the gRPC C++ plugin.
8 #include "flatbuffers/grpc.h"
10 #include <grpc++/impl/codegen/async_stream.h>
11 #include <grpc++/impl/codegen/async_unary_call.h>
12 #include <grpc++/impl/codegen/method_handler_impl.h>
13 #include <grpc++/impl/codegen/proto_utils.h>
14 #include <grpc++/impl/codegen/rpc_method.h>
15 #include <grpc++/impl/codegen/service_type.h>
16 #include <grpc++/impl/codegen/status.h>
17 #include <grpc++/impl/codegen/stub_options.h
20 namespace grpc { namespace
    [all...]

Completed in 1336 milliseconds

1 2 3 4 5 6 7 8 91011>>