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

1 2 3 4 5

  /external/boringssl/src/ssl/test/runner/
ticket.go 68 func (s *sessionState) unmarshal(data []byte) bool { func
207 ok := state.unmarshal(plaintext)
  /prebuilts/go/darwin-x86/src/crypto/tls/
ticket.go 89 func (s *sessionState) unmarshal(data []byte) bool { func
198 ok := state.unmarshal(plaintext)
handshake_messages.go 297 func (m *clientHelloMsg) unmarshal(data []byte) bool { func
689 func (m *serverHelloMsg) unmarshal(data []byte) bool { func
879 func (m *certificateMsg) unmarshal(data []byte) bool { func
947 func (m *serverKeyExchangeMsg) unmarshal(data []byte) bool { func
1001 func (m *certificateStatusMsg) unmarshal(data []byte) bool { func
1035 func (m *serverHelloDoneMsg) unmarshal(data []byte) bool { func
1070 func (m *clientKeyExchangeMsg) unmarshal(data []byte) bool { func
1111 func (m *finishedMsg) unmarshal(data []byte) bool { func
1163 func (m *nextProtoMsg) unmarshal(data []byte) bool { func
1269 func (m *certificateRequestMsg) unmarshal(data []byte) bool func
1397 func (m *certificateVerifyMsg) unmarshal(data []byte) bool { func
1467 func (m *newSessionTicketMsg) unmarshal(data []byte) bool { func
1496 func (*helloRequestMsg) unmarshal(data []byte) bool { func
    [all...]
  /prebuilts/go/linux-x86/src/crypto/tls/
ticket.go 89 func (s *sessionState) unmarshal(data []byte) bool { func
198 ok := state.unmarshal(plaintext)
handshake_messages.go 297 func (m *clientHelloMsg) unmarshal(data []byte) bool { func
689 func (m *serverHelloMsg) unmarshal(data []byte) bool { func
879 func (m *certificateMsg) unmarshal(data []byte) bool { func
947 func (m *serverKeyExchangeMsg) unmarshal(data []byte) bool { func
1001 func (m *certificateStatusMsg) unmarshal(data []byte) bool { func
1035 func (m *serverHelloDoneMsg) unmarshal(data []byte) bool { func
1070 func (m *clientKeyExchangeMsg) unmarshal(data []byte) bool { func
1111 func (m *finishedMsg) unmarshal(data []byte) bool { func
1163 func (m *nextProtoMsg) unmarshal(data []byte) bool { func
1269 func (m *certificateRequestMsg) unmarshal(data []byte) bool func
1397 func (m *certificateVerifyMsg) unmarshal(data []byte) bool { func
1467 func (m *newSessionTicketMsg) unmarshal(data []byte) bool { func
1496 func (*helloRequestMsg) unmarshal(data []byte) bool { func
    [all...]
  /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
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableBoolean.java 44 public Boolean unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableBoolean.MarshalerBoolean
MarshalQueryableNativeByteToInteger.java 46 public Integer unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableNativeByteToInteger.MarshalerNativeByteToInteger
MarshalQueryableBlackLevelPattern.java 50 public BlackLevelPattern unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableBlackLevelPattern.MarshalerBlackLevelPattern
MarshalQueryableColorSpaceTransform.java 55 public ColorSpaceTransform unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableColorSpaceTransform.MarshalerColorSpaceTransform
MarshalQueryableReprocessFormatsMap.java 72 public ReprocessFormatsMap unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableReprocessFormatsMap.MarshalerReprocessFormatsMap
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
MarshalQueryableMeteringRectangle.java 57 public MeteringRectangle unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableMeteringRectangle.MarshalerMeteringRectangle
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);
MarshalQueryableRect.java 49 public Rect unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableRect.MarshalerRect
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
MarshalQueryableString.java 63 public String unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableString.MarshalerString
79 "unmarshal - scanned " + stringLength + " characters; found null? "
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);
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.
MarshalQueryableHighSpeedVideoConfiguration.java 56 public HighSpeedVideoConfiguration unmarshal(ByteBuffer buffer) { method in class:MarshalQueryableHighSpeedVideoConfiguration.MarshalerHighSpeedVideoConfiguration
  /prebuilts/go/darwin-x86/src/encoding/xml/
read.go 24 // Unmarshal parses the XML-encoded data and stores the result in
29 // Because Unmarshal uses the reflect package, it can only assign
30 // to exported (upper case) fields. Unmarshal uses a case-sensitive
34 // Unmarshal maps an XML element to a struct using the following rules.
39 // ",innerxml", Unmarshal accumulates the raw XML nested inside the
43 // Unmarshal records the element name in that field.
47 // the given name (and, optionally, name space) or else Unmarshal
53 // Unmarshal records the attribute value in that field.
57 // ",any,attr", Unmarshal records the attribute value in the first
71 // the prefix of a tag formatted as "a" or "a>b>c", unmarshal
299 func (p *Decoder) unmarshal(val reflect.Value, start *StartElement) error { func
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
read.go 24 // Unmarshal parses the XML-encoded data and stores the result in
29 // Because Unmarshal uses the reflect package, it can only assign
30 // to exported (upper case) fields. Unmarshal uses a case-sensitive
34 // Unmarshal maps an XML element to a struct using the following rules.
39 // ",innerxml", Unmarshal accumulates the raw XML nested inside the
43 // Unmarshal records the element name in that field.
47 // the given name (and, optionally, name space) or else Unmarshal
53 // Unmarshal records the attribute value in that field.
57 // ",any,attr", Unmarshal records the attribute value in the first
71 // the prefix of a tag formatted as "a" or "a>b>c", unmarshal
299 func (p *Decoder) unmarshal(val reflect.Value, start *StartElement) error { func
    [all...]

Completed in 412 milliseconds

1 2 3 4 5