Lines Matching full:product
54 lua_pushstring(L, "product"); in pci_getinfo()
55 lua_pushnumber(L, pci_device->product); in pci_getinfo()
80 char product[255]; in pci_getidlist() local
123 /* if we have a tab + a char, it means this is a product id */ in pci_getidlist()
126 /* the product name the second field */ in pci_getidlist()
127 strlcpy(product,skipspace(strstr(line," ")),255); in pci_getidlist()
128 remove_eol(product); in pci_getidlist()
132 /* the product id is first field */ in pci_getidlist()
137 lua_pushstring(L, product); in pci_getidlist()
140 /* if we have two tabs, it means this is a sub product */ in pci_getidlist()
143 /* the product name is last field */ in pci_getidlist()
144 strlcpy(product,skipspace(strstr(line," ")),255); in pci_getidlist()
145 strlcpy(product,skipspace(strstr(product," ")),255); in pci_getidlist()
146 remove_eol(product); in pci_getidlist()
154 lua_pushstring(L, product); in pci_getidlist()