Home
last modified time | relevance | path

Searched refs:unmarshal (Results 1 – 25 of 28) sorted by relevance

12

/external/grpc-grpc/src/ruby/lib/grpc/generic/
Dclient_stub.rb148 def request_response(method, req, marshal, unmarshal, argument
154 c = new_active_call(method, marshal, unmarshal,
225 def client_streamer(method, requests, marshal, unmarshal, argument
231 c = new_active_call(method, marshal, unmarshal,
316 def server_streamer(method, req, marshal, unmarshal, argument
323 c = new_active_call(method, marshal, unmarshal,
438 def bidi_streamer(method, requests, marshal, unmarshal, argument
445 c = new_active_call(method, marshal, unmarshal,
485 def new_active_call(method, marshal, unmarshal, argument
497 ActiveCall.new(call, marshal, unmarshal, deadline,
Dservice.rb165 unmarshal = desc.unmarshal_proc(:output)
170 request_response(route, req, marshal, unmarshal, metadata)
175 client_streamer(route, reqs, marshal, unmarshal, metadata)
180 server_streamer(route, req, marshal, unmarshal, metadata, &blk)
185 bidi_streamer(route, reqs, marshal, unmarshal, metadata, &blk)
Dbidi_call.rb44 def initialize(call, marshal, unmarshal, metadata_received: false, argument
50 @unmarshal = unmarshal
Dactive_call.rb89 def initialize(call, marshal, unmarshal, deadline, started: true, argument
95 @unmarshal = unmarshal
/external/golang-protobuf/proto/
Dtable_unmarshal.go56 u := atomicLoadUnmarshalInfo(&a.unmarshal)
60 atomicStoreUnmarshalInfo(&a.unmarshal, u)
63 err := u.unmarshal(toPointer(&msg), b)
96 unmarshal unmarshaler member
134 func (u *unmarshalInfo) unmarshal(m pointer, b []byte) error { func
171 if fn := f.unmarshal; fn != nil {
347 unmarshal := fieldUnmarshaler(&f)
361 u.setTag(tag, toField(&f), unmarshal, reqMask, name)
398 unmarshal := makeUnmarshalOneof(typ, of.ityp, baseUnmarshal)
399 u.setTag(fieldNum, of.field, unmarshal, 0, name)
[all …]
Dextensions.go418 unmarshal := typeUnmarshaler(t, extension.Tag)
433 b, err = unmarshal(b, valToPointer(value.Addr()), wire)
Dlib.go962 unmarshal *unmarshalInfo member
Dall_test.go2408 func benchmarkUnmarshal(b *testing.B, pb Message, unmarshal func([]byte, Message) error) {
2415 unmarshal(d, pbd)
/external/boringssl/src/ssl/test/runner/
Dhandshake_messages.go768 func (m *clientHelloMsg) unmarshal(data []byte) bool { func
1198 func (m *serverHelloMsg) unmarshal(data []byte) bool { func
1280 } else if !m.extensions.unmarshal(extensions, vers) {
1320 func (m *encryptedExtensionsMsg) unmarshal(data []byte) bool { func
1327 return m.extensions.unmarshal(extensions, VersionTLS13)
1511 func (m *serverExtensions) unmarshal(data byteReader, version uint16) bool { func
1680 func (m *clientEncryptedExtensionsMsg) unmarshal(data []byte) bool { func
1774 func (m *helloRetryRequestMsg) unmarshal(data []byte) bool { func
1918 func (m *certificateMsg) unmarshal(data []byte) bool { func
2017 func (m *compressedCertificateMsg) unmarshal(data []byte) bool { func
[all …]
Dticket.go94 func (s *sessionState) unmarshal(data []byte) bool { func
194 ok := state.unmarshal(plaintext)
Dcommon.go2020 unmarshal([]byte) bool methodSpec
/external/libffi/src/riscv/
Dffi.c254 static void *unmarshal(call_builder *cb, ffi_type *type, int var, void *data) { in unmarshal() function
376 unmarshal(&cb, cif->rtype, 0, rvalue); in ffi_call_int()
467 unmarshal(&cb, &ffi_type_pointer, 0, &rvalue); in ffi_closure_inner()
472 avalue[i] = unmarshal(&cb, cif->arg_types[i], in ffi_closure_inner()
/external/grpc-grpc/src/ruby/spec/generic/
Dclient_stub_spec.rb529 unmarshal = proc { fail(ArgumentError, 'test unmarshalling error') }
531 get_responses(stub, unmarshal: unmarshal).collect { |r| r }
538 def get_responses(stub, unmarshal: noop)
539 e = stub.server_streamer(@method, @sent_msg, noop, unmarshal,
552 def get_responses(stub, run_start_call_first: false, unmarshal: noop)
553 @op = stub.server_streamer(@method, @sent_msg, noop, unmarshal,
Dservice_spec.rb25 def self.unmarshal(_o) singletonMethod in GoodMsg
Dactive_call_spec.rb448 unmarshal = proc { |x| 'unmarshalled:' + x }
450 unmarshal, deadline)
Drpc_server_spec.rb320 stub.request_response('/unknown', req, marshal, unmarshal)
335 stub.request_response('/an_rpc', req, marshal, unmarshal)
/external/mesa3d/src/mapi/glapi/gen/
Dgl_marshal.py84 def print_sync_call(self, func, unmarshal = 0): argument
89 if func.marshal_call_after and not unmarshal:
256 self.print_sync_call(func, unmarshal = 1)
/external/grpc-grpc/src/ruby/bin/
Dnoproto_server.rb34 def self.unmarshal(_o) singletonMethod in NoProtoMsg
Dnoproto_client.rb34 def self.unmarshal(_o) singletonMethod in NoProtoMsg
/external/grpc-grpc/src/ruby/spec/support/
Dservices.rb24 def self.unmarshal(_o) singletonMethod in EchoMsg
/external/boringssl/src/ssl/test/runner/hrss/
Dhrss.go532 func (out *poly) unmarshal(in []byte) bool { func
1035 if !ret.h.unmarshal(in) {
1113 if !e.unmarshal(ciphertext) {
/external/python/cpython3/Doc/library/
Dmarshal.rst34 maliciously constructed data. Never unmarshal data received from an
/external/python/cpython2/Doc/library/
Dmarshal.rst34 maliciously constructed data. Never unmarshal data received from an
/external/starlark-go/lib/proto/
Dproto.go150 "unmarshal": starlark.NewBuiltin("proto.unmarshal", unmarshal),
246 func unmarshal(thread *starlark.Thread, fn *starlark.Builtin, args starlark.Tuple, kwargs []starlar… func
/external/tpm2-tss/
DCHANGELOG.md121 - Changed TPM2B type unmarshal to use sizeof of the dest buffer instead of dest
146 - Changed TPM2B type unmarshal to use sizeof of the dest buffer instead of dest
189 - Changed TPM2B type unmarshal to use sizeof of the dest buffer instead of dest
391 try to unmarshal non-existent response data. Added test case for this.

12