Lines Matching defs:fd
80 int fd;
84 fd = open(".temp.istream", O_RDWR | O_CREAT | O_TRUNC, 0600);
85 if (fd == -1)
87 test_assert(write(fd, "foobar", 6) == 6);
88 test_assert(lseek(fd, 0, SEEK_SET) == 0);
90 input = i_stream_create_fd_autoclose(&fd, 1024);
91 /* a working fd-dup */
100 /* non-working fd-dup: write data before sending istream */
112 /* non-working fd-dup: write data after sending istream */
124 /* non-working fd-dup: send two istreams */