Home | History | Annotate | Download | only in src

Lines Matching defs:product

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