Home | History | Annotate | Download | only in tools

Lines Matching defs:out

62 static int write_human(FILE *out, char modname[], char devname[], char type, unsigned int maj, unsigned int min)
66 ret = fprintf(out,
86 static int write_tmpfiles(FILE *out, char modname[], char devname[], char type, unsigned int maj, unsigned int min)
93 ret = fprintf(out, "d /dev/%.*s 0755 - - -\n",
99 ret = fprintf(out, "%c! /dev/%s 0600 - - - %u:%u\n",
113 static int write_devname(FILE *out, char modname[], char devname[], char type, unsigned int maj, unsigned int min)
117 ret = fprintf(out, "%s %s %c%u:%u\n", modname, devname, type, maj, min);
160 FILE *in = NULL, *out = NULL;
237 out = fopen(output, "we");
238 if (out == NULL) {
262 format->write(out, modname, devname, type, maj, min);
268 if (out)
269 fclose(out);