Lines Matching refs:itor
301 struct nubus_dev* itor = in nubus_find_device() local
304 while (itor) { in nubus_find_device()
305 if (itor->category == category in nubus_find_device()
306 && itor->type == type in nubus_find_device()
307 && itor->dr_hw == dr_hw in nubus_find_device()
308 && itor->dr_sw == dr_sw) in nubus_find_device()
309 return itor; in nubus_find_device()
310 itor = itor->next; in nubus_find_device()
321 struct nubus_dev* itor = in nubus_find_type() local
324 while (itor) { in nubus_find_type()
325 if (itor->category == category in nubus_find_type()
326 && itor->type == type) in nubus_find_type()
327 return itor; in nubus_find_type()
328 itor = itor->next; in nubus_find_type()
338 struct nubus_dev* itor = in nubus_find_slot() local
341 while (itor) { in nubus_find_slot()
342 if (itor->board->slot == slot) in nubus_find_slot()
343 return itor; in nubus_find_slot()
344 itor = itor->next; in nubus_find_slot()