Searched refs:unmarshal (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/core/java/android/hardware/camera2/marshal/
H A DMarshaler.java111 public abstract T unmarshal(ByteBuffer buffer); method in class:Marshaler
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/
H A DMarshalQueryableArray.java69 public T unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableArray.MarshalerArray
93 Object elem = mComponentMarshaler.unmarshal(buffer);
102 Object elem = mComponentMarshaler.unmarshal(buffer);
H A DMarshalQueryablePair.java103 public Pair<T1, T2> unmarshal(ByteBuffer buffer) { method in class:MarshalQueryablePair.MarshalerPair
104 T1 first = mNestedTypeMarshalerFirst.unmarshal(buffer);
105 T2 second = mNestedTypeMarshalerSecond.unmarshal(buffer);
H A DMarshalQueryableRange.java82 public Range<T> unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableRange.MarshalerRange
83 T lower = mNestedTypeMarshaler.unmarshal(buffer);
84 T upper = mNestedTypeMarshaler.unmarshal(buffer);
H A DMarshalQueryableBlackLevelPattern.java50 public BlackLevelPattern unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableBlackLevelPattern.MarshalerBlackLevelPattern
H A DMarshalQueryableBoolean.java44 public Boolean unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableBoolean.MarshalerBoolean
H A DMarshalQueryableColorSpaceTransform.java55 public ColorSpaceTransform unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableColorSpaceTransform.MarshalerColorSpaceTransform
H A DMarshalQueryableNativeByteToInteger.java46 public Integer unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableNativeByteToInteger.MarshalerNativeByteToInteger
H A DMarshalQueryableRect.java49 public Rect unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableRect.MarshalerRect
H A DMarshalQueryableRggbChannelVector.java48 public RggbChannelVector unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableRggbChannelVector.MarshalerRggbChannelVector
H A DMarshalQueryableSize.java46 public Size unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableSize.MarshalerSize
H A DMarshalQueryableSizeF.java48 public SizeF unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableSizeF.MarshalerSizeF
H A DMarshalQueryableStreamConfiguration.java53 public StreamConfiguration unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableStreamConfiguration.MarshalerStreamConfiguration
H A DMarshalQueryableStreamConfigurationDuration.java62 public StreamConfigurationDuration unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableStreamConfigurationDuration.MarshalerStreamConfigurationDuration
H A DMarshalQueryableHighSpeedVideoConfiguration.java56 public HighSpeedVideoConfiguration unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableHighSpeedVideoConfiguration.MarshalerHighSpeedVideoConfiguration
H A DMarshalQueryableMeteringRectangle.java57 public MeteringRectangle unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableMeteringRectangle.MarshalerMeteringRectangle
H A DMarshalQueryableReprocessFormatsMap.java72 public ReprocessFormatsMap unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableReprocessFormatsMap.MarshalerReprocessFormatsMap
H A DMarshalQueryableString.java63 public String unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableString.MarshalerString
79 "unmarshal - scanned " + stringLength + " characters; found null? "
H A DMarshalQueryableEnum.java76 public T unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableEnum.MarshalerEnum
141 * Register a non-sequential set of values to be used with the marshal/unmarshal functions.
H A DMarshalQueryableParcelable.java102 public T unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableParcelable.MarshalerParcelable
104 Log.v(TAG, "unmarshal, buffer remaining " + buffer.remaining());
146 Log.v(TAG, "unmarshal, parcel length was " + actualLength);
147 Log.v(TAG, "unmarshal, value is " + value);
H A DMarshalQueryablePrimitive.java29 * Marshal/unmarshal built-in primitive types to and from a {@link ByteBuffer}.
64 public T unmarshal(ByteBuffer buffer) { method in class:MarshalQueryablePrimitive.MarshalerPrimitive
147 "Can't unmarshal native type " + mNativeType);
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DOMANode.java117 public static OMAConstructed unmarshal(InputStream in) throws IOException { method in class:OMANode
122 unmarshal(in, (OMAConstructed) node);
126 private static void unmarshal(InputStream in, OMAConstructed parent) throws IOException { method in class:OMANode
132 unmarshal(in, (OMAConstructed) node);
H A DMOTree.java234 public static MOTree unmarshal(InputStream in) throws IOException { method in class:MOTree
259 OMAConstructed root = OMANode.unmarshal(in);
H A DMOManager.java188 MOTree moTree = MOTree.unmarshal(in);
295 moTree = MOTree.unmarshal(in);
404 moTree = MOTree.unmarshal(in);
502 moTree = MOTree.unmarshal(in);
518 MOTree moTree = MOTree.unmarshal(in);
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
H A DProcessExpressions.java207 = (ResourceBundle.LayoutFileBundle) mUnmarshaller.unmarshal(is);

Completed in 216 milliseconds

12