Home | History | Annotate | Download | only in impl

Lines Matching refs:marshal

16 package android.hardware.camera2.marshal.impl;
18 import android.hardware.camera2.marshal.Marshaler;
19 import android.hardware.camera2.marshal.MarshalQueryable;
20 import android.hardware.camera2.marshal.MarshalRegistry;
31 * Marshal {@link Pair} to/from any native type
39 /** Marshal the {@code T1} inside of {@code Pair<T1, T2>} */
41 /** Marshal the {@code T1} inside of {@code Pair<T1, T2>} */
91 public void marshal(Pair<T1, T2> value, ByteBuffer buffer) {
98 mNestedTypeMarshalerFirst.marshal(value.first, buffer);
99 mNestedTypeMarshalerSecond.marshal(value.second, buffer);