HomeSort by relevance Sort by last modified time
    Searched full:marshal (Results 176 - 200 of 970) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/python/cpython2/Python/
frozen.c 10 /* To regenerate this data after the bytecode or marshal format has changed,
  /external/python/cpython2/Tools/pynche/
Switchboard.py 18 ~/.pynche file. This dictionary is saved using marshal. The namespace
46 import marshal
67 self.__optiondb = marshal.load(fp)
126 marshal.dump(self.__optiondb, fp)
  /external/python/cpython3/Lib/test/
double_const.py 9 # the marshal format for doubles. It's also possible that repr() doesn't
  /external/python/cpython3/Tools/pynche/
Switchboard.py 18 ~/.pynche file. This dictionary is saved using marshal. The namespace
45 import marshal
66 self.__optiondb = marshal.load(fp)
125 marshal.dump(self.__optiondb, fp)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
double_const.py 9 # the marshal format for doubles. It's also possible that repr() doesn't
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
double_const.py 9 # the marshal format for doubles. It's also possible that repr() doesn't
  /prebuilts/go/darwin-x86/src/encoding/asn1/
marshal_test.go 177 data, err := Marshal(test.in)
228 _, err := Marshal(test.in)
241 _, err := Marshal(string([]byte{0xff, 0xff}))
252 Marshal(test.in)
  /prebuilts/go/darwin-x86/src/encoding/json/
example_marshaling_test.go 50 return json.Marshal(s)
  /prebuilts/go/darwin-x86/src/hash/
example_test.go 30 log.Fatal("unable to marshal hash:", err)
  /prebuilts/go/linux-x86/src/encoding/asn1/
marshal_test.go 177 data, err := Marshal(test.in)
228 _, err := Marshal(test.in)
241 _, err := Marshal(string([]byte{0xff, 0xff}))
252 Marshal(test.in)
  /prebuilts/go/linux-x86/src/encoding/json/
example_marshaling_test.go 50 return json.Marshal(s)
  /prebuilts/go/linux-x86/src/hash/
example_test.go 30 log.Fatal("unable to marshal hash:", err)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
double_const.py 9 # the marshal format for doubles. It's also possible that repr() doesn't
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
double_const.py 9 # the marshal format for doubles. It's also possible that repr() doesn't
  /external/golang-protobuf/proto/
encode.go 45 // RequiredNotSetError is the error returned if Marshal is called with
63 // errRepeatedHasNil is the error returned if Marshal is called with
67 // errOneofHasNil is the error returned if Marshal is called with
71 // ErrNil is the error returned if Marshal is called with nil.
72 ErrNil = errors.New("proto: Marshal called with nil")
74 // ErrTooLarge is the error returned if Marshal is called with a
223 // Marshaler is the interface representing objects that can marshal themselves.
225 Marshal() ([]byte, error)
228 // Marshal takes the protocol buffer
230 func Marshal(pb Message) ([]byte, error)
    [all...]
decode_test.go 54 raw, err := proto.Marshal(&tpb.Message{
79 raw, err := proto.Marshal(&tpb.Message{
104 raw, err := proto.Marshal(&tpb.Message{
129 raw, err := proto.Marshal(&tpb.Message{
162 raw, err := proto.Marshal(msg)
248 raw, err := proto.Marshal(&tpb.Message{})
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraMetadataNative.java 25 import android.hardware.camera2.marshal.MarshalQueryable;
26 import android.hardware.camera2.marshal.MarshalRegistry;
27 import android.hardware.camera2.marshal.Marshaler;
28 import android.hardware.camera2.marshal.impl.MarshalQueryableArray;
29 import android.hardware.camera2.marshal.impl.MarshalQueryableBlackLevelPattern;
30 import android.hardware.camera2.marshal.impl.MarshalQueryableBoolean;
31 import android.hardware.camera2.marshal.impl.MarshalQueryableColorSpaceTransform;
32 import android.hardware.camera2.marshal.impl.MarshalQueryableEnum;
33 import android.hardware.camera2.marshal.impl.MarshalQueryableHighSpeedVideoConfiguration;
34 import android.hardware.camera2.marshal.impl.MarshalQueryableMeteringRectangle
    [all...]
  /external/python/cpython3/Python/
marshal.c 14 #include "marshal.h"
662 "marshal data too short");
795 "bad marshal data (long size out of range)");
831 /* topmost marshal digit should be nonzero */
835 "bad marshal data (unnormalized long data)");
851 "bad marshal data (digit out of range in long)");
862 PyErr_SetString(PyExc_ValueError, "bad marshal data (index list too large)");
1089 PyErr_SetString(PyExc_ValueError, "bad marshal data (string size out of range)");
1113 PyErr_SetString(PyExc_ValueError, "bad marshal data (unicode size out of range)");
1153 PyErr_SetString(PyExc_ValueError, "bad marshal data (unicode size out of range)")
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
handshake_messages_test.go 32 marshal() []byte
55 marshaled := m1.marshal()
61 m2.marshal() // to fill any marshal cache in the message
284 serverHelloBytes := serverHello.marshal()
327 serverHelloBytes := serverHello.marshal()
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/cryptobyte/
builder.go 295 // Marshal is called by Builder.AddValue. It receives a pointer to a builder
296 // to marshal itself into. It may return an error that occurred during
298 Marshal(b *Builder) error
301 // AddValue calls Marshal on v, passing a pointer to the builder to append to.
302 // If Marshal returns an error, it is set on the Builder so that subsequent
305 err := v.Marshal(b)
  /prebuilts/go/linux-x86/src/crypto/tls/
handshake_messages_test.go 32 marshal() []byte
55 marshaled := m1.marshal()
61 m2.marshal() // to fill any marshal cache in the message
284 serverHelloBytes := serverHello.marshal()
327 serverHelloBytes := serverHello.marshal()
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/cryptobyte/
builder.go 295 // Marshal is called by Builder.AddValue. It receives a pointer to a builder
296 // to marshal itself into. It may return an error that occurred during
298 Marshal(b *Builder) error
301 // AddValue calls Marshal on v, passing a pointer to the builder to append to.
302 // If Marshal returns an error, it is set on the Builder so that subsequent
305 err := v.Marshal(b)
  /external/boringssl/src/ssl/test/runner/
handshake_server.go 171 c.writeRecord(recordTypeHandshake, helloVerifyRequest.marshal())
425 hs.writeClientHash(hs.clientHello.marshal())
593 oldClientHelloBytes := hs.clientHello.marshal()
594 hs.writeServerHash(helloRetryRequest.marshal())
595 c.writeRecord(recordTypeHandshake, helloRetryRequest.marshal())
616 hs.writeClientHash(newClientHello.marshal())
682 if err := verifyPSKBinder(c.wireVersion, newClientHello, hs.sessionState, binderToVerify, oldClientHelloBytes, helloRetryRequest.marshal()); err != nil {
793 hs.writeServerHash(hs.hello.marshal())
795 helloBytes := hs.hello.marshal()
801 c.writeRecord(recordTypeHandshake, hs.hello.marshal())
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
config.c 144 {"marshal", PyMarshal_Init}, /* We get this for free from Python/marshal.c */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
longintrepr.h 8 /* This is published for the benefit of "friend" marshal.c only. */
34 - the marshal code currently expects that PyLong_SHIFT is a multiple of 15

Completed in 1434 milliseconds

1 2 3 4 5 6 78 91011>>