Lines Matching refs:d
120 d = {}
125 d[k] = v[k]
126 return d
194 for d in self.duts:
195 if d.connected and d.platform != 'unknown':
196 self.options.platform.append(d.platform)
221 for d in self.duts:
222 d.fixtures.extend(self.options.fixture)
230 for d in self.duts:
231 if d.connected and d.platform in selected_platforms:
232 row = [d.platform, d.id, d.counter, d.failures]
348 for d in serial_devices:
350 d.manufacturer
351 and d.manufacturer.casefold() in [m.casefold() for m in self.manufacturer]
356 if d.manufacturer == 'Texas Instruments' and not d.location.endswith('0'):
359 if d.product is None:
360 d.product = 'unknown'
363 id=d.serial_number,
364 serial=persistent_map.get(d.device, d.device),
365 product=d.product,
371 if d.product in products:
376 if re.match(p, d.product):
412 new_duts = list(filter(lambda d: not d.match, self.detected))
414 for d in new_duts:
415 new.append(d.to_dict())
438 d = {
446 dl.append(d)