/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 | 2406 func benchmarkUnmarshal(b *testing.B, pb Message, unmarshal func([]byte, Message) error) { 2413 unmarshal(d, pbd)
|
/external/boringssl/src/ssl/test/runner/ |
D | handshake_messages.go | 686 func (m *clientHelloMsg) unmarshal(data []byte) bool { func 1094 func (m *serverHelloMsg) unmarshal(data []byte) bool { func 1176 } else if !m.extensions.unmarshal(extensions, vers) { 1206 func (m *encryptedExtensionsMsg) unmarshal(data []byte) bool { func 1213 return m.extensions.unmarshal(extensions, VersionTLS13) 1383 func (m *serverExtensions) unmarshal(data byteReader, version uint16) bool { func 1564 func (m *helloRetryRequestMsg) unmarshal(data []byte) bool { func 1708 func (m *certificateMsg) unmarshal(data []byte) bool { func 1807 func (m *compressedCertificateMsg) unmarshal(data []byte) bool { func 1841 func (m *serverKeyExchangeMsg) unmarshal(data []byte) bool { func [all …]
|
D | ticket.go | 68 func (s *sessionState) unmarshal(data []byte) bool { func 207 ok := state.unmarshal(plaintext)
|
D | common.go | 1892 unmarshal([]byte) bool methodSpec
|
D | handshake_client.go | 56 if !newHello.unmarshal(ret) { 951 if !certMsg.unmarshal(decompressed) {
|
D | conn.go | 1418 if !m.unmarshal(data) {
|
/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 | active_call_spec.rb | 448 unmarshal = proc { |x| 'unmarshalled:' + x } 450 unmarshal, deadline)
|
D | service_spec.rb | 25 def self.unmarshal(_o) singletonMethod in GoodMsg
|
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/mesa3d/docs/relnotes/ |
D | 20.1.0.rst | 3070 - glthread: don't declare unmarshal functions as inline 3092 - glthread: declare marshal and unmarshal functions as non-static
|