Home
last modified time | relevance | path

Searched refs:s_fd (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/sort/
H A Dstreams_stdio.c54 SF->s_fd = fileno(stdout); in stream_stdio_open_for_write()
56 if ((SF->s_fd = open(str->s_filename, O_CREAT | O_TRUNC | in stream_stdio_open_for_write()
339 if (cxwrite(str->s_type.SF.s_fd, NULL, 0) == 0) in stream_stdio_close()
340 (void) close(str->s_type.SF.s_fd); in stream_stdio_close()
355 if (cxwrite(str->s_type.SF.s_fd, "\n", 1) < 0) in stream_stdio_send_eol()
365 if (cxwrite(str->s_type.SF.s_fd, NULL, 0) < 0) in stream_stdio_flush()
376 if (cxwrite(str->s_type.SF.s_fd, line->l_data.sp, in stream_stdio_put_line()
H A Dstreams_mmap.c123 if (str->s_type.SF.s_fd > -1) { in stream_mmap_close()
124 (void) close(str->s_type.SF.s_fd); in stream_mmap_close()
H A Dstreams_wide.c241 if (wxwrite(str->s_type.SF.s_fd, w_crlf) < 0) in stream_wide_send_eol()
252 if (wxwrite(str->s_type.SF.s_fd, line->l_data.wp) >= 0) { in stream_wide_put_line()
H A Dstreams.c232 str->s_type.SF.s_fd = fd; in stream_open_for_read()
310 str->s_type.SF.s_fd = -1; in stream_add_file_to_chain()
H A Dtypes.h147 int s_fd; /* file descriptor */ member