Home
last modified time | relevance | path

Searched refs:rpc (Results 1 – 25 of 95) sorted by relevance

1234

/third_party/ltp/testcases/network/rpc/rpc-tirpc/
D.gitignore11 /tests_pack/rpc_suite/rpc/rpc_stdcall_clnt_control/rpc_clnt_control
12 /tests_pack/rpc_suite/rpc/rpc_stdcall_clnt_control/rpc_clnt_control_dataint
13 /tests_pack/rpc_suite/rpc/rpc_stdcall_svc_sendreply/rpc_svc_sendreply
14 /tests_pack/rpc_suite/rpc/rpc_stdcall_svc_sendreply/rpc_svc_sendreply_client
15 /tests_pack/rpc_suite/rpc/rpc_createdestroy_clntraw_create/rpc_clntraw_create_performance
16 /tests_pack/rpc_suite/rpc/rpc_createdestroy_clntraw_create/rpc_clntraw_create
17 /tests_pack/rpc_suite/rpc/rpc_createdestroy_clntraw_create/rpc_clntraw_create_complex
18 /tests_pack/rpc_suite/rpc/rpc_err_clnt_sperrno/rpc_clnt_sperrno
19 /tests_pack/rpc_suite/rpc/rpc_addrmanagmt_pmap_getmaps/rpc_pmap_getmaps
20 /tests_pack/rpc_suite/rpc/rpc_regunreg_xprt_register/rpc_xprt_register
[all …]
/third_party/NuttX/fs/nfs/
Drpc_clnt.c137 static int rpcclnt_send(struct rpcclnt *rpc, int procid, int prog,
139 static int rpcclnt_receive(struct rpcclnt *rpc, struct sockaddr *aname,
141 static int rpcclnt_reply(struct rpcclnt *rpc, int procid, int prog,
146 static int rpcclnt_reconnect(struct rpcclnt *rpc, struct sockaddr *saddr);
163 static int rpcclnt_send(struct rpcclnt *rpc, int procid, int prog, in rpcclnt_send() argument
175 nbytes = sendto(rpc->rc_so, call, reqlen, 0, in rpcclnt_send()
176 rpc->rc_name, sizeof(struct sockaddr)); in rpcclnt_send()
199 static int rpcclnt_receive(struct rpcclnt *rpc, struct sockaddr *aname, in rpcclnt_receive() argument
212 FD_SET((uint32_t)(rpc->rc_so), &fdreadset); in rpcclnt_receive()
217 ret = select(rpc->rc_so + 1, &fdreadset, 0, 0, &timeval); in rpcclnt_receive()
[all …]
Drpc.h553 int rpcclnt_connect(struct rpcclnt *rpc);
554 void rpcclnt_disconnect(struct rpcclnt *rpc);
555 int rpcclnt_umount(struct rpcclnt *rpc);
556 void rpcclnt_safedisconnect(struct rpcclnt *rpc);
557 int rpcclnt_request(struct rpcclnt *rpc, int procnum, int prog, int version,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetRPCAPI.h76 namespace rpc {
172 : public rpc::Function<RegisterEHFrames,
180 : public rpc::Function<DeregisterEHFrames,
194 : public rpc::Function<CallIntVoid, int32_t(JITTargetAddress Addr)> {
202 : public rpc::Function<CallMain, int32_t(JITTargetAddress Addr,
211 : public rpc::Function<CallVoidVoid, void(JITTargetAddress FnAddr)> {
223 : public rpc::Function<CreateRemoteAllocator,
231 : public rpc::Function<DestroyRemoteAllocator,
239 : public rpc::Function<ReadMem, std::vector<uint8_t>(JITTargetAddress Src,
247 : public rpc::Function<ReserveMem,
[all …]
DRemoteObjectLayer.h47 : public rpc::Function<AddObject, Expected<ObjHandleT>(std::string)> {
53 : public rpc::Function<RemoveObject, Error(ObjHandleT)> {
59 : public rpc::Function<FindSymbol, Expected<RemoteSymbol>(std::string,
66 : public rpc::Function<FindSymbolIn,
74 : public rpc::Function<EmitAndFinalize,
81 : public rpc::Function<Lookup,
88 : public rpc::Function<LookupInLogicalDylib,
95 : public rpc::Function<ReleaseRemoteSymbol, Error(RemoteSymbolId)> {
101 : public rpc::Function<MaterializeRemoteSymbol,
DOrcRemoteTargetClient.h56 : public rpc::SingleThreadedRPCEndpoint<rpc::RawByteChannel> {
504 Create(rpc::RawByteChannel &Channel, ExecutionSession &ES) { in Create()
586 OrcRemoteTargetClient(rpc::RawByteChannel &Channel, ExecutionSession &ES, in OrcRemoteTargetClient()
588 : rpc::SingleThreadedRPCEndpoint<rpc::RawByteChannel>(Channel, true), in OrcRemoteTargetClient()
/third_party/python/Lib/idlelib/idle_test/
Dtest_rpc.py3 from idlelib import rpc
12 func, (cbytes,) = rpc.pickle_code(f.__code__)
13 self.assertIs(func, rpc.unpickle_code)
15 code = rpc.unpickle_code(cbytes)
20 rpc.CodePickler.dispatch_table)
25 self.assertIn(b'test_rpc.py', rpc.dumps(f.__code__))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/OrcError/
DRPCError.cpp20 char llvm::orc::rpc::RPCFatalError::ID = 0;
21 char llvm::orc::rpc::ConnectionClosed::ID = 0;
22 char llvm::orc::rpc::ResponseAbandoned::ID = 0;
23 char llvm::orc::rpc::CouldNotNegotiate::ID = 0;
27 namespace rpc { namespace
/third_party/python/Lib/idlelib/
Ddebugobj_r.py1 from idlelib import rpc
6 rpc.objecttable[oid] = wrapper
31 value = rpc.MethodProxy(self.sockio, self.oid, name)
Drun.py26 from idlelib import rpc # multiple objects
157 request = rpc.request_queue.get(block=True, timeout=0.05)
165 rpc.response_queue.put((seq, ret))
179 rpc.response_queue.put((seq, None))
292 rpchandler = rpc.objecttable['exec'].rpchandler
393 class MyRPCServer(rpc.RPCServer):
518 class MyHandler(rpc.RPCHandler):
532 sys.displayhook = rpc.displayhook
544 rpc.RPCHandler.getresponse(self, myseq=None, wait=0.05)
/third_party/flatbuffers/docs/source/
DGrammar.md7 attribute\_decl | rpc\_decl | object )*
24 rpc\_decl = `rpc_service` ident `{` rpc\_method+ `}`
26 rpc\_method = ident `(` ident `)` `:` ident metadata `;`
/third_party/libabigail/tests/data/test-abidiff/
Dtest-PR18166-libtirpc.so.abi288 …truct='yes' visibility='default' filepath='/home/max/src/v6/libtirpc/tirpc/rpc/auth.h' line='184' …
290 …'type-id-2' visibility='default' filepath='/home/max/src/v6/libtirpc/tirpc/rpc/auth.h' line='185' …
293 …'type-id-2' visibility='default' filepath='/home/max/src/v6/libtirpc/tirpc/rpc/auth.h' line='186' …
296 …'type-id-3' visibility='default' filepath='/home/max/src/v6/libtirpc/tirpc/rpc/auth.h' line='187' …
299 …'type-id-4' visibility='default' filepath='/home/max/src/v6/libtirpc/tirpc/rpc/auth.h' line='204' …
302 …'type-id-5' visibility='default' filepath='/home/max/src/v6/libtirpc/tirpc/rpc/auth.h' line='205' …
305 …'type-id-6' visibility='default' filepath='/home/max/src/v6/libtirpc/tirpc/rpc/auth.h' line='206' …
308 …truct='yes' visibility='default' filepath='/home/max/src/v6/libtirpc/tirpc/rpc/auth.h' line='174' …
310 …'type-id-7' visibility='default' filepath='/home/max/src/v6/libtirpc/tirpc/rpc/auth.h' line='175' …
313 …'type-id-8' visibility='default' filepath='/home/max/src/v6/libtirpc/tirpc/rpc/auth.h' line='176' …
[all …]
/third_party/ltp/testcases/network/rpc/basic_tests/rpc01/lib/
DMakefile25 include $(top_srcdir)/testcases/network/rpc/rpc-tirpc/tests_pack/Makefile.inc
/third_party/protobuf/php/tests/proto/
Dtest_service_namespace.proto11 rpc SayHello (HelloRequest) returns (HelloReply) {}
12 rpc SayHelloAgain (HelloRequest) returns (HelloReply) {}
Dtest_service.proto8 rpc SayHello (HelloRequest) returns (HelloReply) {}
9 rpc SayHelloAgain (HelloRequest) returns (HelloReply) {}
/third_party/ltp/testcases/network/rpc/
DREADME9 rpc-tirpc-full-test-suite: contains full test suite for the SunRPC and TI-RPC rpc libraries.
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/
DMakefile.inc4 LIBRELDIR := testcases/network/rpc/rpc-tirpc/tests_pack/lib
/third_party/ltp/testcases/network/
DMakefile22 FILTER_OUT_DIRS += lib6 rpc sockets
26 FILTER_OUT_DIRS += rpc
D.gitignore22 /rpc/basic_tests/rpc01/rpc1
23 /rpc/basic_tests/rpc01/rpc_server
/third_party/ltp/testcases/network/rpc/basic_tests/rpc01/
DMakefile52 include $(top_srcdir)/testcases/network/rpc/rpc-tirpc/tests_pack/Makefile.inc
/third_party/flutter/flutter/packages/flutter_tools/lib/src/
Dvmservice_record_replay.dart22 /// A [StreamChannel] that expects VM service (JSON-rpc) protocol messages and
54 /// Base class for request and response JSON-rpc messages.
94 /// A VM service JSON-rpc request (sent to the VM).
100 /// A VM service JSON-rpc response (from the VM).
115 /// A helper class that monitors a [Stream] of VM service JSON-rpc responses
162 /// A [StreamSink] that monitors VM service JSON-rpc requests and saves the
193 /// A [StreamChannel] that expects VM service (JSON-rpc) requests to be written
Dvmservice.dart10 import 'package:json_rpc_2/json_rpc_2.dart' as rpc;
113 _peer.registerMethod('streamNotify', (rpc.Parameters event) {
118 _peer.registerMethod('reloadSources', (rpc.Parameters params) async {
124 throw rpc.RpcException.invalidParams('Invalid \'isolateId\': $isolateId');
126 throw rpc.RpcException.invalidParams('Invalid \'force\': $force');
128 throw rpc.RpcException.invalidParams('Invalid \'pause\': $pause');
133 } on rpc.RpcException {
136 throw rpc.RpcException(rpc_error_code.SERVER_ERROR,
150 _peer.registerMethod('hotRestart', (rpc.Parameters params) async {
154 throw rpc.RpcException.invalidParams('Invalid \'pause\': $pause');
[all …]
/third_party/ltp/testcases/network/nfs/nfs_stress/
Dnfs_lib.sh147 for i in rpc.mountd rpc.statd; do
/third_party/protobuf/src/google/protobuf/
Dapi.proto147 // rpc GetAcl(GetAclRequest) returns (Acl) {
154 // rpc GetAcl(GetAclRequest) returns (Acl);
157 // rpc GetData(GetDataRequest) returns (Data) {
177 // rpc GetAcl(GetAclRequest) returns (Acl) {
198 // rpc GetAcl(GetAclRequest) returns (Acl) {
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/
Dvmservice_test.dart11 import 'package:json_rpc_2/json_rpc_2.dart' as rpc;
18 class MockPeer implements rpc.Peer {
21 rpc.ErrorCallback get onUnhandledError => null;
44 void registerFallback(dynamic callback(rpc.Parameters parameters)) {

1234