Lines Matching +full:product +full:- +full:name
1 #! /usr/bin/awk -f
2 #-
5 # SPDX-License-Identifier: BSD-4-Clause
20 # This product includes software developed by Christopher G. Demetriou.
21 # 4. The name of the author may not be used to endorse or promote products
38 print "usage: sdiodevs2h.awk <srcfile> [-d|-h]";
54 vendorindex[$2] = nvendors; # record index for this name, for later.
55 vendors[nvendors, 1] = $2; # name
100 function product(hfile) function
104 products[nproducts, 1] = $2; # vendor name
105 products[nproducts, 2] = $3; # product id
156 products[nproducts, 1] = $2; # vendor name
157 products[nproducts, 2] = $3; # product id
230 if (arg !~ /^-[dh]+$/ && arg !~ /devs$/)
232 if (arg ~ /^-.*d/)
234 if (arg ~ /^-.*h/)
254 if ($1 == "product") {
255 product(hfile)