HomeSort by relevance Sort by last modified time
    Searched refs:unmarshal (Results 1 - 25 of 74) sorted by null

1 2 3

  /frameworks/base/core/java/android/hardware/camera2/marshal/
Marshaler.java 103 * Unmarshal a new object instance from the byte buffer into its managed type.
111 public abstract T unmarshal(ByteBuffer buffer); method in class:Marshaler
  /prebuilts/tools/common/m2/repository/javax/xml/bind/jaxb-api/2.2.12-b140109.1041/
jaxb-api-2.2.12-b140109.1041.jar 
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableArray.java 69 public T unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableArray.MarshalerArray
93 Object elem = mComponentMarshaler.unmarshal(buffer);
102 Object elem = mComponentMarshaler.unmarshal(buffer);
MarshalQueryablePair.java 103 public Pair<T1, T2> unmarshal(ByteBuffer buffer) { method in class:MarshalQueryablePair.MarshalerPair
104 T1 first = mNestedTypeMarshalerFirst.unmarshal(buffer);
105 T2 second = mNestedTypeMarshalerSecond.unmarshal(buffer);
MarshalQueryableRange.java 82 public Range<T> unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableRange.MarshalerRange
83 T lower = mNestedTypeMarshaler.unmarshal(buffer);
84 T upper = mNestedTypeMarshaler.unmarshal(buffer);
MarshalQueryableBlackLevelPattern.java 50 public BlackLevelPattern unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableBlackLevelPattern.MarshalerBlackLevelPattern
MarshalQueryableBoolean.java 44 public Boolean unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableBoolean.MarshalerBoolean
MarshalQueryableColorSpaceTransform.java 55 public ColorSpaceTransform unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableColorSpaceTransform.MarshalerColorSpaceTransform
MarshalQueryableNativeByteToInteger.java 46 public Integer unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableNativeByteToInteger.MarshalerNativeByteToInteger
MarshalQueryableRect.java 49 public Rect unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableRect.MarshalerRect
MarshalQueryableRggbChannelVector.java 48 public RggbChannelVector unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableRggbChannelVector.MarshalerRggbChannelVector
MarshalQueryableSize.java 46 public Size unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableSize.MarshalerSize
MarshalQueryableSizeF.java 48 public SizeF unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableSizeF.MarshalerSizeF
MarshalQueryableStreamConfiguration.java 53 public StreamConfiguration unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableStreamConfiguration.MarshalerStreamConfiguration
MarshalQueryableStreamConfigurationDuration.java 62 public StreamConfigurationDuration unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableStreamConfigurationDuration.MarshalerStreamConfigurationDuration
MarshalQueryableHighSpeedVideoConfiguration.java 56 public HighSpeedVideoConfiguration unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableHighSpeedVideoConfiguration.MarshalerHighSpeedVideoConfiguration
MarshalQueryableMeteringRectangle.java 57 public MeteringRectangle unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableMeteringRectangle.MarshalerMeteringRectangle
MarshalQueryableReprocessFormatsMap.java 72 public ReprocessFormatsMap unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableReprocessFormatsMap.MarshalerReprocessFormatsMap
MarshalQueryableString.java 61 public String unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableString.MarshalerString
77 "unmarshal - scanned " + stringLength + " characters; found null? "
MarshalQueryableEnum.java 76 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.
MarshalQueryableParcelable.java 102 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);
MarshalQueryablePrimitive.java 29 * 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/
OMANode.java 119 public static OMAConstructed unmarshal(InputStream in) throws IOException { method in class:OMANode
124 unmarshal(in, (OMAConstructed) node); method
128 private static void unmarshal(InputStream in, OMAConstructed parent) throws IOException { method in class:OMANode
134 unmarshal(in, (OMAConstructed) node); method
MOTree.java 234 public static MOTree unmarshal(InputStream in) throws IOException { method in class:MOTree
259 OMAConstructed root = OMANode.unmarshal(in);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
MOTree.java 238 public static MOTree unmarshal(InputStream in) throws IOException { method in class:MOTree
263 OMAConstructed root = OMANode.unmarshal(in);

Completed in 834 milliseconds

1 2 3