The (platform_id, encoding_id, language_id, name_id, length, name_str_offset) 6-tuple encoded in each name record C-struct.
(bufr, idx)
| 331 | |
| 332 | @staticmethod |
| 333 | def _name_header(bufr, idx): |
| 334 | """ |
| 335 | The (platform_id, encoding_id, language_id, name_id, length, |
| 336 | name_str_offset) 6-tuple encoded in each name record C-struct. |
| 337 | """ |
| 338 | name_hdr_offset = 6 + idx * 12 |
| 339 | return unpack_from(">HHHHHH", bufr, name_hdr_offset) |
| 340 | |
| 341 | @staticmethod |
| 342 | def _raw_name_string(bufr, strings_offset, str_offset, length): |
no outgoing calls