Home | History | Annotate | Download | only in nfc

Lines Matching refs:record_type

383     def _create_record_data(self, record_type, params):
384 if record_type == 'Text':
387 elif record_type == 'URI':
391 print_message('Writing record type "' + record_type +
400 def write_tag(self, tag, record_type, params):
405 @param record_type: The type of the record, e.g. Text or URI.
409 tag_data = self._create_record_data(record_type, params)
420 def push_to_device(self, device, record_type, params):
425 @param record_type: The type of the record, e.g. Text or URI.
429 record_data = self._create_record_data(record_type, params)
562 def _parse_record_args(self, record_type, args):
563 if record_type == 'Text':
576 if record_type == 'URI':
593 record_type = args[1]
594 params = self._parse_record_args(record_type, args)
598 record_type, params)
625 record_type = args[1]
626 params = self._parse_record_args(record_type, args)
630 record_type, params)