Lines Matching refs:name

19  * 3. Neither the name of the University nor the names of its contributors
157 if (in.name == NULL) {
158 in.name = "stdin";
161 in.fd = open(in.name, O_RDONLY, 0);
164 in.name, strerror(errno));
182 if (out.name == NULL) {
185 out.name = "stdout";
189 out.fd = open(out.name, O_RDWR | OFLAGS, DEFFILEMODE);
196 out.fd = open(out.name, O_WRONLY | OFLAGS, DEFFILEMODE);
201 out.name, strerror(errno));
255 io->name, strerror(errno));
335 in.name, strerror(errno));
351 in.name, strerror(errno));
498 out.name, strerror(errno));
506 out.name);
512 out.name, strerror(errno));
539 "device\n", out.name);
544 out.name);
596 in.name, strerror(errno));
640 in.name);
646 fprintf(stderr, "%s: read error: %s", in.name, strerror(errno));
667 out.name, strerror(errno));
680 fprintf(stderr, "%s: cannot read", out.name);
693 out.name, strerror(errno));
706 fprintf(stderr, "%s: cannot position\n", out.name);
715 out.name, strerror(errno));
941 warnx("%s: short input record", in.name);
1031 const char *name;
1074 tmp.name = oper;
1078 fprintf(stderr, "unknown operand %s\n", tmp.name);
1085 tmp.name);
1155 return (strcmp(((const struct arg *)a)->name,
1156 ((const struct arg *)b)->name));
1159 static long long strsuftoll(const char* name, const char* arg, int def, unsigned int max)
1212 in.name = arg;
1227 out.name = arg;
1265 const char *name;
1289 tmp.name = strsep(&arg, ",");
1293 errx(EXIT_FAILURE, "unknown conversion %s", tmp.name);
1297 errx(EXIT_FAILURE, "%s: illegal conversion combination", tmp.name);
1310 return (strcmp(((const struct conv *)a)->name,
1311 ((const struct conv *)b)->name));