HomeSort by relevance Sort by last modified time
    Searched refs:serialized (Results 51 - 75 of 205) sorted by null

1 23 4 5 6 7 8 9

  /prebuilts/go/linux-x86/src/crypto/tls/
key_agreement.go 436 var serialized, preMasterSecret []byte
448 serialized = ourPublic[:]
464 serialized = elliptic.Marshal(curve, mx, my)
468 ckx.ciphertext = make([]byte, 1+len(serialized))
469 ckx.ciphertext[0] = byte(len(serialized))
470 copy(ckx.ciphertext[1:], serialized)
  /cts/tests/tests/util/src/android/util/cts/
RationalTest.java 502 T serialized = deserialize(arr, klass); local
503 return serialized;
508 T serialized = serializeRoundTrip(obj); local
509 assertEquals("Expected values to be equal after serialization round-trip", obj, serialized);
  /external/protobuf/src/google/protobuf/
test_util.h 113 static void ExpectAllFieldsAndExtensionsInOrder(const string& serialized);
wire_format_unittest.cc 777 string serialized; local
778 msg1.SerializeToString(&serialized);
782 ASSERT_TRUE(msg2.ParseFromString(serialized));
787 ASSERT_TRUE(msg3.ParseFromString(serialized));
792 ASSERT_TRUE(msg4.ParseFromString(serialized));
797 ASSERT_TRUE(msg5.ParseFromString(serialized));
    [all...]
message_unittest.cc 264 Cord serialized; local
265 EXPECT_FALSE(message.AppendToCord(&serialized));
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
RationalTest.java 481 T serialized = deserialize(arr, klass); local
482 return serialized;
487 T serialized = serializeRoundTrip(obj); local
488 assertEquals("Expected values to be equal after serialization round-trip", obj, serialized);
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
elliptic_test.go 463 serialized := Marshal(p224, x, y)
464 xx, yy := Unmarshal(p224, serialized)
  /prebuilts/go/linux-x86/src/crypto/elliptic/
elliptic_test.go 463 serialized := Marshal(p224, x, y)
464 xx, yy := Unmarshal(p224, serialized)
  /system/update_engine/payload_generator/
payload_signer.cc 67 string serialized; local
68 TEST_AND_RETURN_FALSE(out_message.AppendToString(&serialized));
70 serialized.begin(),
71 serialized.end());
  /external/protobuf/js/
proto3_test.js 171 var serialized = msg.serializeBinary();
172 msg = proto.jspb.test.TestProto3.deserializeBinary(serialized);
285 var serialized = msg.serializeBinary();
286 assertEquals(0, serialized.length);
  /prebuilts/tools/common/m2/repository/com/firebase/firebase-client-android/2.5.2/
firebase-client-android-2.5.2.jar 
  /system/keymaster/
authorization_set_test.cpp 272 // This sucks. This test, as written, requires intimate knowledge of the serialized layout of
274 // broken serialized data and I can't think of a better way to write this.
354 UniquePtr<uint8_t[]> serialized(new uint8_t[serialize_size]);
355 EXPECT_EQ(serialized.get() + serialize_size,
356 growable.Serialize(serialized.get(), serialized.get() + serialize_size));
358 AuthorizationSet deserialized(serialized.get(), serialize_size);
  /external/autotest/client/bin/
base_sysinfo.py 249 def deserialize(self, serialized):
252 @param serialized: A dictionary containing parameters to store as
255 self.boot_loggables = serialized["boot"]
256 self.test_loggables = serialized["test"]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
GeneratedMessageTest.java 1490 ByteString serialized = message.toByteString(); local
1500 ByteString serialized = message.toByteString(); local
1510 ByteString serialized = message.toByteString(); local
1521 ByteString serialized = message.toByteString(); local
    [all...]
  /external/protobuf/python/google/protobuf/internal/
unknown_fields_test.py 101 serialized = raw.SerializeToString()
105 proto.MergeFromString(serialized)
107 # Verify that the unknown extension is serialized unchanged
157 # Python implementation, which stores unknown fields as serialized strings.
159 # the message is correctly serialized.
268 # Python implementation, which stores unknown fields as serialized strings.
270 # the message is correctly serialized.
  /external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
NanoTest.java 522 byte [] serialized = MessageNano.toByteArray(msg);
524 MessageWithGroup parsed = MessageWithGroup.parseFrom(serialized);
528 assertEquals(serialized.length, serialized2.length);
    [all...]
  /frameworks/base/core/java/android/content/
IntentSender.java 115 Bundle extras, boolean serialized, boolean sticky, int sendingUser) {
  /prebuilts/go/darwin-x86/src/encoding/asn1/
asn1.go 328 if serialized := ret.Format(formatStr); serialized != s {
329 err = fmt.Errorf("asn1: time did not serialize back to the original value and may be invalid: given %q, but serialized as %q", s, serialized)
351 if serialized := ret.Format(formatStr); serialized != s {
352 err = fmt.Errorf("asn1: time did not serialize back to the original value and may be invalid: given %q, but serialized as %q", s, serialized)
  /prebuilts/go/linux-x86/src/encoding/asn1/
asn1.go 328 if serialized := ret.Format(formatStr); serialized != s {
329 err = fmt.Errorf("asn1: time did not serialize back to the original value and may be invalid: given %q, but serialized as %q", s, serialized)
351 if serialized := ret.Format(formatStr); serialized != s {
352 err = fmt.Errorf("asn1: time did not serialize back to the original value and may be invalid: given %q, but serialized as %q", s, serialized)
  /external/autotest/client/common_lib/cros/network/
xmlrpc_security_types.py 17 def deserialize(serialized):
20 @param serialized dict representing a serialized SecurityConfig.
21 @return a SecurityConfig object built from |serialized|.
24 return xmlrpc_types.deserialize(serialized, module=sys.modules[__name__])
  /external/protobuf/python/google/protobuf/pyext/
message.cc 2522 PyObject* serialized = PyDict_GetItemString(state, "serialized"); local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
SyntheticPasswordTests.java 403 byte[] serialized = new byte[] {
413 PasswordData deserialized = PasswordData.fromBytes(serialized);
  /libcore/luni/src/test/java/libcore/java/security/cert/
CertificateFactoryTest.java 511 byte[] serialized = baos.toByteArray();
512 ByteArrayInputStream bais = new ByteArrayInputStream(serialized);
  /prebuilts/go/darwin-x86/src/encoding/binary/
varint.go 9 // - unsigned integers are serialized 7 bits at a time, starting with the
  /prebuilts/go/linux-x86/src/encoding/binary/
varint.go 9 // - unsigned integers are serialized 7 bits at a time, starting with the

Completed in 3028 milliseconds

1 23 4 5 6 7 8 9