HomeSort by relevance Sort by last modified time
    Searched defs:rpc (Results 1 - 25 of 41) sorted by null

1 2

  /external/grpc-grpc/include/grpcpp/support/
error_details.h 25 namespace rpc { namespace in namespace:google
27 } // namespace rpc
32 /// Map a \a grpc::Status to a \a google::rpc::Status.
37 Status ExtractErrorDetails(const Status& from, ::google::rpc::Status* to);
39 /// Map \a google::rpc::Status to a \a grpc::Status.
42 Status SetErrorDetails(const ::google::rpc::Status& from, Status* to);
  /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
RpcError.java 17 package com.googlecode.android_scripting.rpc;
RpcOptional.java 17 package com.googlecode.android_scripting.rpc;
26 * Use this annotation to mark RPC parameter as optional.
Converter.java 17 package com.googlecode.android_scripting.rpc;
Rpc.java 17 package com.googlecode.android_scripting.rpc;
26 * The {@link Rpc} annotation is used to annotate server-side implementations of RPCs. It describes
28 * implementation of an RPC.
33 public @interface Rpc {
RpcDeprecated.java 17 package com.googlecode.android_scripting.rpc;
26 * Use this annotation to mark RPC method as deprecated.
RpcMinSdk.java 17 package com.googlecode.android_scripting.rpc;
RpcName.java 17 package com.googlecode.android_scripting.rpc;
26 * Use this annotation to mark an RPC parameter that have a default value.
32 /** The default value of the RPC parameter. */
RpcParameter.java 17 package com.googlecode.android_scripting.rpc;
26 * An annotation that is used to document the parameters of an RPC.
38 * Description of the RPC. This should be a short descriptive statement without a full stop, such
RpcStartEvent.java 17 package com.googlecode.android_scripting.rpc;
26 * Use this annotation to mark an RPC as one that starts generating events.
RpcStopEvent.java 17 package com.googlecode.android_scripting.rpc;
26 * Use this annotation to mark an RPC as one that stops generating events.
ParameterDescriptor.java 17 package com.googlecode.android_scripting.rpc;
22 * RPC parameter description.
RpcDefault.java 17 package com.googlecode.android_scripting.rpc;
26 * Use this annotation to mark an RPC parameter that have a default value.
32 /** The default value of the RPC parameter. */
  /external/autotest/frontend/client/src/autotest/moblab/rpc/
JsonRpcEntity.java 1 package autotest.moblab.rpc;
7 * Base class for entities passing as parameters via the JSON RPC.
OperationStatus.java 1 package autotest.moblab.rpc;
9 * Moblab RPC operation status.
ConnectedBoard.java 1 package autotest.moblab.rpc;
WifiInfo.java 1 package autotest.moblab.rpc;
8 * Wifi configuration RPC entity.
ConnectedDutInfo.java 1 package autotest.moblab.rpc;
11 * The connected DUT information RPC entity.
55 // This is a read only RPC call so nothing to be submitted back to the
NetworkInfo.java 1 package autotest.moblab.rpc;
10 * The network information RPC entity.
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/
RPCUtils.cpp 16 char llvm::orc::rpc::RPCFatalError::ID = 0;
17 char llvm::orc::rpc::ConnectionClosed::ID = 0;
18 char llvm::orc::rpc::ResponseAbandoned::ID = 0;
19 char llvm::orc::rpc::CouldNotNegotiate::ID = 0;
23 namespace rpc { namespace in namespace:llvm::orc
30 OS << "RPC connection already closed";
38 OS << "RPC response abandoned";
49 OS << "Could not negotiate RPC function " << Signature;
53 } // end namespace rpc
  /external/autotest/frontend/client/test/autotest/moblab/rpc/
CloudStorageInfoTest.java 1 package autotest.moblab.rpc;
NetworkInfoTest.java 1 package autotest.moblab.rpc;
7 import autotest.moblab.rpc.NetworkInfo;
  /external/grpc-grpc/src/ruby/lib/grpc/generic/
service.rb 18 # GRPC contains the General RPC module.
44 super("rpc (#{name}) is already defined")
48 # Provides a simple DSL to describe RPC services.
53 # rpc :div DivArgs, DivReply # single request, single response
54 # rpc :sum stream(Num), Num # streamed input, single response
55 # rpc :fib FibArgs, stream(Num) # single request, streamed response
56 # rpc :div_many stream(DivArgs), stream(DivReply)
59 # Each 'rpc' adds an RpcDesc to classes including this module, and
79 # Adds an RPC spec.
81 # Takes the RPC name and the classes representing the types to b
91 def rpc(name, input, output) method in class:GRPC.GenericService.Dsl
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/
RawByteChannel.h 24 namespace rpc { namespace in namespace:llvm::orc
26 /// Interface for byte-streams to be used with RPC.
139 /// RPC channel serialization for std::strings.
165 /// RPC channel serialization for std::strings.
171 /// RPC channel deserialization for std::strings.
181 } // end namespace rpc
  /external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
JsonRpcHandler.java 21 import com.googlecode.android_scripting.rpc.MethodDescriptor;
28 * A class that parses given JSON RPC Messages, and handles their execution.
69 * @param request the JSON-RPC request message as a JSONObject
100 MethodDescriptor rpc = receiverManager.getMethodDescriptor(method); local
101 if (rpc == null) {
106 rpcResult = rpc.invoke(receiverManager, params);
108 Log.e("RPC call threw an error.", t);
115 // convert the resulting class from the RPC into valid JSON. This may happen

Completed in 445 milliseconds

1 2