HomeSort by relevance Sort by last modified time
    Searched refs:Marshal (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /external/syzkaller/vendor/google.golang.org/grpc/
codec.go 30 Marshal(v interface{}) ([]byte, error)
43 // Marshal returns the wire format of v.
44 Marshal(v interface{}) ([]byte, error)
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
Marshal.java 30 public interface Marshal {
58 * Register this Marshal with Envelope
MarshalBase64.java 31 public class MarshalBase64 implements Marshal {
MarshalDate.java 29 * Marshal class for Dates.
31 public class MarshalDate implements Marshal {
  /external/mdnsresponder/mDNSWindows/DLL.NET/
PString.h 35 m_p = Marshal::AllocHGlobal(utf8Bytes->Length + 1);
50 Marshal::FreeHGlobal(m_p);
  /external/clang/test/SemaTemplate/
destructor-template.cpp 68 template <typename T> struct Marshal {
73 template <typename T> int Marshal<T>::gc() {
80 Marshal<int>::gc();
  /external/syzkaller/vendor/google.golang.org/grpc/encoding/proto/
proto.go 53 func marshal(v interface{}, cb *cachedProtoBuffer) ([]byte, error) { func
59 if err := cb.Marshal(protoMsg); err != nil {
67 func (codec) Marshal(v interface{}) ([]byte, error) {
69 // object can marshal itself, no need for buffer
70 return pm.Marshal()
74 out, err := marshal(v, cb)
  /external/flatbuffers/go/
grpc.go 8 func (FlatbuffersCodec) Marshal(v interface{}) ([]byte, error) {
  /external/grpc-grpc/src/csharp/Grpc.Core/Internal/
AuthContextSafeHandle.cs 49 var peerIdentityPropertyName = Marshal.PtrToStringAnsi(Native.grpcsharp_auth_context_peer_identity_property_name(this));
78 // We need to use the obsolete non-generic version of Marshal.PtrToStructure, because the generic version is not available in net45
79 var nativeAuthProperty = (NativeAuthProperty) Marshal.PtrToStructure(authPropertyPtr, typeof(NativeAuthProperty));
81 var name = Marshal.PtrToStringAnsi(nativeAuthProperty.Name);
83 Marshal.Copy(nativeAuthProperty.Value, valueBytes, 0, (int)nativeAuthProperty.ValueLength);
NativeLogRedirector.cs 60 string severityString = Marshal.PtrToStringAnsi(severityStringPtr);
63 Marshal.PtrToStringAnsi(fileStringPtr),
65 Marshal.PtrToStringAnsi(msgPtr));
CStringSafeHandle.cs 35 return Marshal.PtrToStringAnsi(handle);
  /external/webrtc/talk/app/webrtc/
proxy.h 141 R Marshal(rtc::Thread* t) {
161 R Marshal(rtc::Thread* t) {
181 R Marshal(rtc::Thread* t) {
202 R Marshal(rtc::Thread* t) {
223 R Marshal(rtc::Thread* t) {
246 R Marshal(rtc::Thread* t) {
271 R Marshal(rtc::Thread* t) {
297 R Marshal(rtc::Thread* t) {
322 call.Marshal(owner_thread_); \
333 return call.Marshal(owner_thread_);
    [all...]
  /external/grpc-grpc/src/csharp/Grpc.Core.Tests/Internal/
CompletionQueueEventTest.cs 35 // We need to use the obsolete non-generic version of Marshal.SizeOf because the generic version is not available in net45
36 Assert.AreEqual(CompletionQueueEvent.NativeSize, Marshal.SizeOf(typeof(CompletionQueueEvent)));
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/serialization/
MarshalFloat.java 28 public class MarshalFloat implements Marshal {
  /external/golang-protobuf/proto/
all_test.go 177 err := o.Marshal(pb)
179 fmt.Printf("overify marshal-1 err = %v", err)
197 err = o.Marshal(pbd)
199 t.Errorf("overify marshal-2 err = %v", err)
286 func (f *fakeMarshaler) Marshal() ([]byte, error) { return f.b, f.err }
310 err: errors.New("some marshal err"),
313 // Since the Marshal method returned bytes, they should be written to the
314 // buffer. (For efficiency, we assume that Marshal implementations are
317 errType: reflect.TypeOf(errors.New("some marshal err")),
345 err := b.Marshal(test.m
    [all...]
encode.go 44 // errRepeatedHasNil is the error returned if Marshal is called with
48 // errOneofHasNil is the error returned if Marshal is called with
52 // ErrNil is the error returned if Marshal is called with nil.
53 ErrNil = errors.New("proto: Marshal called with nil")
55 // ErrTooLarge is the error returned if Marshal is called with a
183 // Marshaler is the interface representing objects that can marshal themselves.
185 Marshal() ([]byte, error)
193 return p.Marshal(pb)
map_test.go 42 b, err := proto.Marshal(m)
44 panic(fmt.Sprintf("Can't marshal %+v: %v", m, err))
proto3_test.go 52 b, err := proto.Marshal(test.m)
54 t.Errorf("%s: proto.Marshal: %v", test.desc, err)
80 b, err := proto.Marshal(m)
82 t.Fatalf("proto.Marshal: %v", err)
  /external/syzkaller/vendor/github.com/golang/protobuf/proto/
encode.go 44 // RequiredNotSetError is an error type returned by either Marshal or Unmarshal.
45 // Marshal reports this when a required field is not initialized.
59 // errRepeatedHasNil is the error returned if Marshal is called with
63 // errOneofHasNil is the error returned if Marshal is called with
67 // ErrNil is the error returned if Marshal is called with nil.
68 ErrNil = errors.New("proto: Marshal called with nil")
70 // ErrTooLarge is the error returned if Marshal is called with a
198 // Marshaler is the interface representing objects that can marshal themselves.
200 Marshal() ([]byte, error)
208 return p.Marshal(pb
    [all...]
  /external/perf_data_converter/src/
builder.h 70 static bool Marshal(const Profile &profile, string *output);
  /external/syzkaller/vendor/google.golang.org/grpc/encoding/
encoding.go 75 // Marshal returns the wire format of v.
76 Marshal(v interface{}) ([]byte, error)
  /external/golang-protobuf/protoc-gen-go/testdata/imports/fmt/
m.pb.go 13 var _ = proto.Marshal
40 return xxx_messageInfo_M.Marshal(b, m, deterministic)
  /external/golang-protobuf/protoc-gen-go/testdata/imports/test_a_1/
m2.pb.go 13 var _ = proto.Marshal
40 return xxx_messageInfo_M2.Marshal(b, m, deterministic)
  /external/golang-protobuf/protoc-gen-go/testdata/imports/test_a_2/
m3.pb.go 13 var _ = proto.Marshal
40 return xxx_messageInfo_M3.Marshal(b, m, deterministic)
m4.pb.go 13 var _ = proto.Marshal
40 return xxx_messageInfo_M4.Marshal(b, m, deterministic)

Completed in 2937 milliseconds

1 2 3 4 5 6 7