OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:serialized_types
(Results
1 - 2
of
2
) sorted by null
/system/tpm/trunks/generator/
generator_test.py
58
serialized_types
= set(['int'])
63
typedef2.OutputSerialize(out_file,
serialized_types
, typemap)
64
self.assertIn('INT',
serialized_types
)
65
self.assertIn('INT2',
serialized_types
)
105
serialized_types
= set(['int', 'FOO', 'BAR', 'TPMI_ALG_SYM_OBJECT'])
117
struct.OutputSerialize(out_file,
serialized_types
, typemap)
118
self.assertIn('TPMU_SYM_MODE',
serialized_types
)
119
self.assertIn('TEST_STRUCT',
serialized_types
)
generator.py
344
def OutputSerialize(self, out_file,
serialized_types
, typemap):
349
serialized_types
: A set of types for which serialize and parse functions
353
if self.new_type in
serialized_types
:
355
if self.old_type not in
serialized_types
:
356
typemap[self.old_type].OutputSerialize(out_file,
serialized_types
,
362
serialized_types
.add(self.new_type)
716
def OutputSerialize(self, out_file,
serialized_types
, typemap):
721
serialized_types
: A set of types for which serialize and parse functions
726
if (self.name in
serialized_types
or
732
if field_type not in
serialized_types
[
all
...]
Completed in 47 milliseconds