HomeSort by relevance Sort by last modified time
    Searched full:unmarshal (Results 26 - 50 of 488) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/tpm2/
Marshal_PolicyCounterTimer.c 17 // Unmarshal request parameters.
50 // Unmarshal request parameters to input structure.
Marshal_PolicyCpHash.c 17 // Unmarshal request parameters.
42 // Unmarshal request parameters to input structure.
Marshal_PolicyDuplicationSelect.c 17 // Unmarshal request parameters.
50 // Unmarshal request parameters to input structure.
Marshal_PolicyLocality.c 17 // Unmarshal request parameters.
42 // Unmarshal request parameters to input structure.
Marshal_PolicyNV.c 19 // Unmarshal request parameters.
52 // Unmarshal request parameters to input structure.
Marshal_PolicyNameHash.c 17 // Unmarshal request parameters.
42 // Unmarshal request parameters to input structure.
Marshal_PolicyNvWritten.c 17 // Unmarshal request parameters.
42 // Unmarshal request parameters to input structure.
Marshal_PolicyOR.c 17 // Unmarshal request parameters.
42 // Unmarshal request parameters to input structure.
Marshal_PolicyPCR.c 17 // Unmarshal request parameters.
46 // Unmarshal request parameters to input structure.
Marshal_SelfTest.c 15 // Unmarshal request parameters.
40 // Unmarshal request parameters to input structure.
Marshal_SequenceUpdate.c 17 // Unmarshal request parameters.
42 // Unmarshal request parameters to input structure.
Marshal_SetAlgorithmSet.c 17 // Unmarshal request parameters.
42 // Unmarshal request parameters to input structure.
Marshal_SetCommandCodeAuditStatus.c 18 // Unmarshal request parameters.
51 // Unmarshal request parameters to input structure.
Marshal_SetPrimaryPolicy.c 17 // Unmarshal request parameters.
46 // Unmarshal request parameters to input structure.
Marshal_Shutdown.c 15 // Unmarshal request parameters.
40 // Unmarshal request parameters to input structure.
Marshal_Startup.c 15 // Unmarshal request parameters.
40 // Unmarshal request parameters to input structure.
Marshal_StirRandom.c 15 // Unmarshal request parameters.
40 // Unmarshal request parameters to input structure.
Marshal_TestParms.c 15 // Unmarshal request parameters.
40 // Unmarshal request parameters to input structure.
  /prebuilts/go/darwin-x86/src/encoding/xml/
read_test.go 19 if err := Unmarshal([]byte(atomFeedString), &f); err != nil {
20 t.Fatalf("Unmarshal: %s", err)
284 if err := Unmarshal([]byte(pathTestString), v); err != nil {
285 t.Fatalf("Unmarshal: %s", err)
334 err := Unmarshal([]byte(pathTestString), tt.v)
336 t.Fatalf("Unmarshal with %#v didn't fail properly:\nhave %#v,\nwant %#v", tt.v, err, tt.e)
353 if err := Unmarshal([]byte(withoutNameTypeData), &x); err != nil {
354 t.Fatalf("Unmarshal: %s", err)
377 if err := Unmarshal(x, p1); err != nil {
378 t.Fatalf("Unmarshal: %s", err
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
read_test.go 19 if err := Unmarshal([]byte(atomFeedString), &f); err != nil {
20 t.Fatalf("Unmarshal: %s", err)
284 if err := Unmarshal([]byte(pathTestString), v); err != nil {
285 t.Fatalf("Unmarshal: %s", err)
334 err := Unmarshal([]byte(pathTestString), tt.v)
336 t.Fatalf("Unmarshal with %#v didn't fail properly:\nhave %#v,\nwant %#v", tt.v, err, tt.e)
353 if err := Unmarshal([]byte(withoutNameTypeData), &x); err != nil {
354 t.Fatalf("Unmarshal: %s", err)
377 if err := Unmarshal(x, p1); err != nil {
378 t.Fatalf("Unmarshal: %s", err
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
decode_test.go 55 // A type that can unmarshal itself.
295 // unmarshal interface test
585 if err := Unmarshal(jsonBig, &v); err != nil {
586 t.Fatalf("Unmarshal: %v", err)
641 if err := Unmarshal(b, &s1); err != nil {
642 t.Fatalf("Unmarshal: %v", err)
657 if err := Unmarshal([]byte(`{"X":1}`), &i); err != nil {
658 t.Fatalf("Unmarshal: %v", err)
668 if err := Unmarshal([]byte(`{"X":1}`), &pxint); err != nil {
669 t.Fatalf("Unmarshal: %v", err
    [all...]
decode.go 24 // Unmarshal parses the JSON-encoded data and stores the result
27 // Unmarshal uses the inverse of the encodings that
31 // To unmarshal JSON into a pointer, Unmarshal first handles the case of
32 // the JSON being the JSON literal null. In that case, Unmarshal sets
33 // the pointer to nil. Otherwise, Unmarshal unmarshals the JSON into
34 // the value pointed at by the pointer. If the pointer is nil, Unmarshal
37 // To unmarshal JSON into a struct, Unmarshal matches incoming object
41 // To unmarshal JSON into an interface value
139 func (d *decodeState) unmarshal(v interface{}) (err error) { func
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
decode_test.go 55 // A type that can unmarshal itself.
295 // unmarshal interface test
585 if err := Unmarshal(jsonBig, &v); err != nil {
586 t.Fatalf("Unmarshal: %v", err)
641 if err := Unmarshal(b, &s1); err != nil {
642 t.Fatalf("Unmarshal: %v", err)
657 if err := Unmarshal([]byte(`{"X":1}`), &i); err != nil {
658 t.Fatalf("Unmarshal: %v", err)
668 if err := Unmarshal([]byte(`{"X":1}`), &pxint); err != nil {
669 t.Fatalf("Unmarshal: %v", err
    [all...]
decode.go 24 // Unmarshal parses the JSON-encoded data and stores the result
27 // Unmarshal uses the inverse of the encodings that
31 // To unmarshal JSON into a pointer, Unmarshal first handles the case of
32 // the JSON being the JSON literal null. In that case, Unmarshal sets
33 // the pointer to nil. Otherwise, Unmarshal unmarshals the JSON into
34 // the value pointed at by the pointer. If the pointer is nil, Unmarshal
37 // To unmarshal JSON into a struct, Unmarshal matches incoming object
41 // To unmarshal JSON into an interface value
139 func (d *decodeState) unmarshal(v interface{}) (err error) { func
    [all...]
  /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

Completed in 1100 milliseconds

12 3 4 5 6 7 8 91011>>