HomeSort by relevance Sort by last modified time
    Searched refs:_FIELDS (Results 1 - 9 of 9) sorted by null

  /external/autotest/client/cros/cellular/mbim_compliance/
mbim_command_message.py 25 _FIELDS = (('I', 'session_id', ''),
45 _FIELDS = (('I', 'session_id', ''),
65 _FIELDS = (('I', 'session_id', ''),
88 _FIELDS = (('I', 'device_type', ''),
123 _FIELDS = (('I', 'device_services_count', ''),
134 _FIELDS = (('I', 'hw_radio_state', ''),
141 _FIELDS = (('I', 'session_id', ''),
179 _FIELDS = (('I', 'session_id', ''),
mbim_message_response.py 25 _FIELDS = (('I', 'message_type', mbim_message.FIELD_TYPE_PAYLOAD_ID),
33 _FIELDS = (('I', 'status_codes', ''),)
40 _FIELDS = (('I', 'status_codes', ''),)
47 _FIELDS = (('I', 'total_fragments', mbim_message.FIELD_TYPE_NUM_FRAGMENTS),
54 _FIELDS = (('I', 'total_fragments', mbim_message.FIELD_TYPE_NUM_FRAGMENTS),
68 _FIELDS = (('I', 'total_fragments', mbim_message.FIELD_TYPE_NUM_FRAGMENTS),
75 _FIELDS = (('I', 'total_fragments', mbim_message.FIELD_TYPE_NUM_FRAGMENTS),
88 _FIELDS = (('I', 'error_status_code', ''),)
usb_descriptors.py 81 _FIELDS: A list of field definitions specified as a nested tuple. The
89 class must define its own _FIELDS attribute, which must have
102 if '_FIELDS' not in attrs:
104 '%s must define a _FIELDS attribute' % name)
106 field_formats, field_names = zip(*attrs['_FIELDS'])
188 _FIELDS = (('B', 'bLength'),
195 _FIELDS = (('B', 'bLength'),
214 _FIELDS = (('B', 'bLength'),
227 _FIELDS = (('B', 'bLength'),
241 _FIELDS = (('B', 'bLength')
    [all...]
mbim_message_request.py 25 _FIELDS = (('I', 'message_type', mbim_message.FIELD_TYPE_PAYLOAD_ID),
33 _FIELDS = (('I', 'max_control_transfer', ''),)
46 _FIELDS = (('I', 'total_fragments', mbim_message.FIELD_TYPE_NUM_FRAGMENTS),
53 _FIELDS = (('I', 'total_fragments', mbim_message.FIELD_TYPE_NUM_FRAGMENTS),
70 _FIELDS = (('I', 'error_status_code', ''),)
mbim_data_transfer.py 397 _FIELDS: Used to define structure elements. Each element contains a format
405 fields = attrs['_FIELDS']
443 return cls._FIELDS
509 _FIELDS = (('I', 'signature'),
518 _FIELDS = (('I', 'signature'),
525 _FIELDS = (('H', 'datagram_index'),
531 _FIELDS = (('I', 'signature'),
540 _FIELDS = (('I', 'signature'),
549 _FIELDS = (('I', 'datagram_index'),
usb_descriptors_unittest.py 18 _FIELDS = (('B', 'bLength'),
30 subclass that does not define a _FIELDS attribute.
34 'DescriptorFieldsNotDefined must define a _FIELDS attribute$'):
36 """ Descriptor without _FIELDS attribute. """
47 _FIELDS = (('B', 'bLength'), ('B', 'bDescriptorType'))
103 fields specified by the _FIELDS attribute.
115 by the _FIELDS attribute.
mbim_message.py 126 # |cls._FIELDS| attribute.
149 _FIELDS(optional): Used to define structure elements. The fields of a
150 message is the concatenation of the _FIELDS attribute
151 along with all the _FIELDS attribute from it's parent
188 if '_FIELDS' in attrs:
189 fields = fields + map(list, attrs['_FIELDS'])
249 return cls._FIELDS
mbim_message_unittest.py 23 _FIELDS = (('I', 'message_type', mbim_message.FIELD_TYPE_PAYLOAD_ID),
36 subclass that does not define a _FIELDS attribute.
42 """ MBIMMessage without _FIELDS attribute. """
96 fields specified by the _FIELDS attribute.
109 by the _FIELDS attribute. The additional data is put into
  /external/autotest/client/cros/cellular/mbim_compliance/sequences/
open_sequence.py 22 _FIELDS = [('H','wLength'),
37 _, field_names = zip(*self._FIELDS)
54 field_formats, _ = zip(*cls._FIELDS)

Completed in 210 milliseconds