Searched defs:marshall (Results 1 - 15 of 15) sorted by relevance

/frameworks/opt/net/lowpan/libandroid_net_lowpan/tests/jni/
H A DLowpanBeaconInfoTest.cpp47 * Every LowpanBeaconInfo maps to a unique parcel object, so both 'marshall(e, unmarshall(e, x))' and
48 * 'unmarshall(e, marshall(e, x))' should be fixed points.
50 static jbyteArray marshall(JNIEnv* env, const LowpanBeaconInfo& addr) { function
65 return marshall(env, value);
H A DLowpanChannelInfoTest.cpp47 * Every LowpanChannelInfo maps to a unique parcel object, so both 'marshall(e, unmarshall(e, x))' and
48 * 'unmarshall(e, marshall(e, x))' should be fixed points.
50 static jbyteArray marshall(JNIEnv* env, const LowpanChannelInfo& addr) { function
65 return marshall(env, value);
H A DLowpanCredentialTest.cpp47 * Every LowpanCredential maps to a unique parcel object, so both 'marshall(e, unmarshall(e, x))' and
48 * 'unmarshall(e, marshall(e, x))' should be fixed points.
50 static jbyteArray marshall(JNIEnv* env, const LowpanCredential& addr) { function
65 return marshall(env, value);
H A DLowpanIdentityTest.cpp47 * Every LowpanIdentity maps to a unique parcel object, so both 'marshall(e, unmarshall(e, x))' and
48 * 'unmarshall(e, marshall(e, x))' should be fixed points.
50 static jbyteArray marshall(JNIEnv* env, const LowpanIdentity& addr) { function
65 return marshall(env, value);
H A DLowpanProvisionTest.cpp47 * Every LowpanProvision maps to a unique parcel object, so both 'marshall(e, unmarshall(e, x))' and
48 * 'unmarshall(e, marshall(e, x))' should be fixed points.
50 static jbyteArray marshall(JNIEnv* env, const LowpanProvision& addr) { function
65 return marshall(env, value);
/frameworks/base/tests/net/java/android/net/
H A DUidRangeTest.java46 byte[] inParcel = marshall(original);
57 byte[] originalBytes = marshall(original);
100 private static byte[] marshall(UidRange range) { method in class:UidRangeTest
104 return p.marshall();
110 * @see marshall(UidRange)
/frameworks/base/tests/net/jni/
H A DUidRangeTest.cpp29 return marshall(env, range);
67 * Every UidRange maps to a unique parcel object, so both 'marshall(e, unmarshall(e, x))' and
68 * 'unmarshall(e, marshall(e, x))' should be fixed points.
70 jbyteArray marshall(JNIEnv* env, const UidRange& range) { function
/frameworks/opt/net/lowpan/libandroid_net_lowpan/tests/java/android/net/lowpan/
H A DLowpanBeaconInfoTest.java39 byte[] inParcel = marshall(original);
116 private static byte[] marshall(LowpanBeaconInfo addr) { method in class:LowpanBeaconInfoTest
120 return p.marshall();
126 * @see marshall(LowpanBeaconInfo)
H A DLowpanChannelInfoTest.java39 byte[] inParcel = marshall(original);
60 private static byte[] marshall(LowpanChannelInfo addr) { method in class:LowpanChannelInfoTest
64 return p.marshall();
70 * @see marshall(LowpanChannelInfo)
H A DLowpanCredentialTest.java39 byte[] inParcel = marshall(original);
74 private static byte[] marshall(LowpanCredential addr) { method in class:LowpanCredentialTest
78 return p.marshall();
84 * @see marshall(LowpanCredential)
H A DLowpanProvisionTest.java39 byte[] inParcel = marshall(original);
110 private static byte[] marshall(LowpanProvision addr) { method in class:LowpanProvisionTest
114 return p.marshall();
120 * @see marshall(LowpanProvision)
H A DLowpanIdentityTest.java41 byte[] inParcel = marshall(original);
181 private static byte[] marshall(LowpanIdentity addr) { method in class:LowpanIdentityTest
185 return p.marshall();
191 * @see marshall(LowpanIdentity)
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtypeArray.java98 final byte[] decompressedData = marshall(mInstance);
171 private static byte[] marshall(final InputMethodSubtype[] array) { method in class:InputMethodSubtypeArray
176 return parcel.marshall();
/frameworks/base/services/tests/servicestests/src/com/android/server/job/
H A DJobStoreTest.java435 final byte[] firstBytes = marshall(first);
436 final byte[] secondBytes = marshall(second);
444 private static byte[] marshall(Parcelable p) { method in class:JobStoreTest
448 return parcel.marshall();
/frameworks/base/core/java/android/os/
H A DParcel.java539 public final byte[] marshall() { method in class:Parcel

Completed in 206 milliseconds