/external/grpc-grpc/src/ruby/lib/grpc/generic/ |
D | client_stub.rb | 148 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,
|
D | service.rb | 165 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)
|
D | bidi_call.rb | 44 def initialize(call, marshal, unmarshal, metadata_received: false, argument 50 @unmarshal = unmarshal
|
D | active_call.rb | 89 def initialize(call, marshal, unmarshal, deadline, started: true, argument 95 @unmarshal = unmarshal
|
/external/golang-protobuf/proto/ |
D | table_unmarshal.go | 56 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 …]
|
D | extensions.go | 418 unmarshal := typeUnmarshaler(t, extension.Tag) 433 b, err = unmarshal(b, valToPointer(value.Addr()), wire)
|
D | lib.go | 962 unmarshal *unmarshalInfo member
|
D | all_test.go | 2408 func benchmarkUnmarshal(b *testing.B, pb Message, unmarshal func([]byte, Message) error) { 2415 unmarshal(d, pbd)
|
/external/boringssl/src/ssl/test/runner/ |
D | handshake_messages.go | 768 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 …]
|
D | ticket.go | 94 func (s *sessionState) unmarshal(data []byte) bool { func 194 ok := state.unmarshal(plaintext)
|
D | common.go | 2020 unmarshal([]byte) bool methodSpec
|
/external/libffi/src/riscv/ |
D | ffi.c | 254 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/ |
D | client_stub_spec.rb | 529 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,
|
D | service_spec.rb | 25 def self.unmarshal(_o) singletonMethod in GoodMsg
|
D | active_call_spec.rb | 448 unmarshal = proc { |x| 'unmarshalled:' + x } 450 unmarshal, deadline)
|
D | rpc_server_spec.rb | 320 stub.request_response('/unknown', req, marshal, unmarshal) 335 stub.request_response('/an_rpc', req, marshal, unmarshal)
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | gl_marshal.py | 84 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/ |
D | noproto_server.rb | 34 def self.unmarshal(_o) singletonMethod in NoProtoMsg
|
D | noproto_client.rb | 34 def self.unmarshal(_o) singletonMethod in NoProtoMsg
|
/external/grpc-grpc/src/ruby/spec/support/ |
D | services.rb | 24 def self.unmarshal(_o) singletonMethod in EchoMsg
|
/external/boringssl/src/ssl/test/runner/hrss/ |
D | hrss.go | 532 func (out *poly) unmarshal(in []byte) bool { func 1035 if !ret.h.unmarshal(in) { 1113 if !e.unmarshal(ciphertext) {
|
/external/python/cpython3/Doc/library/ |
D | marshal.rst | 34 maliciously constructed data. Never unmarshal data received from an
|
/external/python/cpython2/Doc/library/ |
D | marshal.rst | 34 maliciously constructed data. Never unmarshal data received from an
|
/external/starlark-go/lib/proto/ |
D | proto.go | 150 "unmarshal": starlark.NewBuiltin("proto.unmarshal", unmarshal), 246 func unmarshal(thread *starlark.Thread, fn *starlark.Builtin, args starlark.Tuple, kwargs []starlar… func
|
/external/tpm2-tss/ |
D | CHANGELOG.md | 121 - 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.
|