Lines Matching refs:f_print

63 		f_print(fout, "\n");
99 f_print(fout, "\n");
135 f_print(fout, "extern bool_t xdr_%s(XDR *, %s%s);\n", name,
166 f_print(fout, "struct %s {\n", name);
172 f_print(fout, "};\n");
173 f_print(fout, "typedef struct %s %s;\n",
176 f_print(fout, "\n");
188 f_print(fout, "struct %s {\n", name);
192 f_print(fout, "};\n");
193 f_print(fout, "typedef struct %s %s;\n", name, name);
203 f_print(fout, "struct %s {\n", name);
206 f_print(fout, "\tbool_t %s;\n", decl->name);
208 f_print(fout, "\t%s %s;\n", decl->type, decl->name);
210 f_print(fout, "\tunion {\n");
219 f_print(fout, "\t} %s_u;\n", name);
220 f_print(fout, "};\n");
221 f_print(fout, "typedef struct %s %s;\n", name, name);
227 f_print(fout, "#define\t%s %s\n", name, num);
233 f_print(fout, "#define\t%s ((unsigned long)(%s))\n", name, num);
258 f_print(fout, "extern int ");
260 f_print(fout, "_freeresult(SVCXPRT *, xdrproc_t, caddr_t);\n");
267 f_print(fout, "void ");
269 f_print(fout, "(struct svc_req *rqstp, SVCXPRT *transp);\n");
284 f_print(fout,
287 f_print(fout,
293 f_print(fout, "\n");
296 f_print(fout, "%s", ext);
303 f_print(fout, "%s", ext);
305 f_print(fout, "%s", ext);
317 f_print(fout, "bool_t ");
319 f_print(fout, "enum clnt_stat ");
322 f_print(fout, "* ");
340 f_print(fout, "(");
349 f_print(fout, "*");
351 f_print(fout, ", ");
357 f_print(fout, "*, ");
360 f_print(fout, "%s);\n", addargtype);
372 f_print(fout, "enum %s {\n", name);
374 f_print(fout, "\t%s", l->name);
376 f_print(fout, " = %s", l->assignment);
381 f_print(fout, " = %d", count++);
383 f_print(fout, " = %s + %d", last, count++);
387 f_print(fout, ",\n");
389 f_print(fout, "\n");
391 f_print(fout, "};\n");
392 f_print(fout, "typedef enum %s %s;\n", name, name);
418 f_print(fout, "typedef ");
421 f_print(fout, "struct {\n");
422 f_print(fout, "\tu_int %s_len;\n", name);
423 f_print(fout, "\t%s%s *%s_val;\n", prefix, old, name);
424 f_print(fout, "} %s", name);
427 f_print(fout, "%s%s *%s", prefix, old, name);
430 f_print(fout, "%s%s %s[%s]", prefix, old, name,
434 f_print(fout, "%s%s %s", prefix, old, name);
437 f_print(fout, ";\n");
453 f_print(fout, "struct ");
456 f_print(fout, "char *%s", dec->name);
472 f_print(fout, "%s%s %s", prefix, type, dec->name);
475 f_print(fout, "%s%s %s[%s]", prefix, type, dec->name,
479 f_print(fout, "%s%s *%s", prefix, type, dec->name);
482 f_print(fout, "struct {\n");
484 f_print(fout, "\tu_int %s_len;\n", dec->name);
486 f_print(fout,
489 f_print(fout, "} %s", dec->name);