Lines Matching refs:printf
42 printf("/*\t\$OpenBSD\$\t*/\n\n") > dfile
43 printf("/*\n") > dfile
44 printf(" * THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \
46 printf(" *\n") > dfile
47 printf(" * generated from:\n") > dfile
48 printf(" *\t%s\n", VERSION) > dfile
49 printf(" */\n") > dfile
51 printf("/*\t\$OpenBSD\$\t*/\n\n") > hfile
52 printf("/*\n") > hfile
53 printf(" * THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \
55 printf(" *\n") > hfile
56 printf(" * generated from:\n") > hfile
57 printf(" *\t%s\n", VERSION) > hfile
58 printf(" */\n") > hfile
68 printf("#define\tUSB_VENDOR_%s\t%s\t", vendors[nvendors, 1],
76 printf("\t/* ") > hfile
81 printf("(") > hfile
87 printf("%s", $f) > hfile
89 printf(" ") > hfile
94 printf("%s", vendors[nvendors, i]) > hfile
96 printf(" ") > hfile
100 printf(")") > hfile
102 printf(" */") > hfile
103 printf("\n") > hfile
113 printf("#define\tUSB_PRODUCT_%s_%s\t%s\t", products[nproducts, 1],
121 printf("\t/* ") > hfile
126 printf("(") > hfile
132 printf("%s", $f) > hfile
134 printf(" ") > hfile
139 printf("%s", products[nproducts, i]) > hfile
141 printf(" ") > hfile
145 printf(")") > hfile
147 printf(" */") > hfile
148 printf("\n") > hfile
162 printf("\n") > dfile
164 printf("/*\n") > dfile
165 printf(" * Descriptions of known vendors and devices (\"products\").\n") > dfile
166 printf(" */\n") > dfile
167 printf("struct usb_known_vendor {\n") > dfile
168 printf(" u_int16_t vendor;\n") > dfile
169 printf(" char *vendorname;\n") > dfile
170 printf("};\n\n") > dfile
172 printf("struct usb_known_product {\n") > dfile
173 printf(" u_int16_t vendor;\n") > dfile
174 printf(" u_int16_t product;\n") > dfile
175 printf(" char *productname;\n") > dfile
176 printf("};\n\n") > dfile
177 printf("const struct usb_known_product usb_known_products[] = {\n") \
180 printf("\t{\n") > dfile
181 printf("\t USB_VENDOR_%s, USB_PRODUCT_%s_%s,\n",
185 printf("\t \"") > dfile
190 printf(" ") > dfile
191 printf("%s", products[i, j]) > dfile
195 printf("\",\n") > dfile
196 printf("\t},\n") > dfile
198 printf("\t{ 0, 0, NULL }\n") > dfile
199 printf("};\n\n") > dfile
201 printf("const struct usb_known_vendor usb_known_vendors[] = {\n") \
204 printf("\t{\n") > dfile
205 printf("\t USB_VENDOR_%s,\n", vendors[i, 1]) \
208 printf("\t \"") > dfile
213 printf(" ") > dfile
214 printf("%s", vendors[i, j]) > dfile
218 printf("\",\n") > dfile
219 printf("\t},\n") > dfile
221 printf("\t{ 0, NULL }\n") > dfile
222 printf("};\n") > dfile