Lines Matching full:found
138 * in the global list of PCI buses. If the bus is found, a pointer to its
139 * data structure is returned. If no bus is found, %NULL is returned.
159 * @from: Previous PCI bus found, or %NULL for new search.
189 * If the device is found, its reference count is increased and this
192 * If no device is found, %NULL is returned.
223 * found, its reference count is increased and this function returns a
225 * reference count by calling pci_dev_put(). If no device is found,
255 * @from: Previous PCI device found in search, or %NULL for new search.
257 * Iterates through the list of known PCI devices. If a PCI device is found
291 * @from: Previous PCI device found in search, or %NULL for new search.
293 * Iterates through the list of known PCI devices. If a PCI device is found
320 * @from: Previous PCI device found in search, or %NULL for new search.
323 * found with a matching @vendor and @device, the reference count to the
340 * @from: Previous PCI device found in search, or %NULL for new search.
343 * found with a matching @class, the reference count to the device is
369 * @from: Previous PCI device found in search, or %NULL for new search.
371 * Iterates through the list of known PCI devices. If a PCI device is found
402 * Obvious fact: You do not have a reference to any device that might be found
410 struct pci_dev *found = NULL; in pci_dev_present() local
413 found = pci_get_dev_by_id(ids, NULL); in pci_dev_present()
414 if (found) { in pci_dev_present()
415 pci_dev_put(found); in pci_dev_present()