Home
last modified time | relevance | path

Searched refs:f (Results 1 – 1 of 1) sorted by relevance

/libpciaccess/src/
H A Dcommon_device_name.c72 #define pci_id_file_gets(l, s, f) gzgets(f, l, s) argument
73 #define pci_id_file_close(f) gzclose(f) argument
77 #define pci_id_file_gets(l, s, f) fgets(l, s, f) argument
78 #define pci_id_file_close(f) fclose(f) argument
205 pci_id_file * f; in populate_vendor() local
217 f = pci_id_file_open(); in populate_vendor()
221 if (f == NULL) { in populate_vendor()
225 while( pci_id_file_gets( buf, sizeof( buf ), f ) != NULL ) { in populate_vendor()
318 pci_id_file_close( f ); in populate_vendor()