Home | History | Annotate | Download | only in src

Lines Matching defs:out

26 FILE	*in, 	 *out;
31 * 160 signed 16 bit values (gsm_signals) to <out>.
118 * Try to figure out what we're supposed to do from the argv[0], if
323 if (fchmod(fileno(out), instat.st_mode & 07777)) {
343 (void)fchown(fileno(out), instat.st_uid, instat.st_gid);
498 out = stdout;
501 _fsetmode(out, "b");
511 out = fdopen(outfd, WRITE);
512 else if (errno != EEXIST) out = (FILE *)NULL;
513 else if (ok_to_replace(o)) out = fopen(o, WRITE);
516 if (!out) {
550 if (fwrite((char *)d, sizeof(d), 1, out) != 1) {
628 out = (FILE *)0;
649 if (fflush(out) < 0 || ferror(out)) {
656 if (out != stdout) {
662 if (fclose(out) < 0) {
671 out = (FILE *)0;
692 if (out && out != stdout) {
693 (void)fclose(out), out = (FILE *)0;