Searched refs:ifdstream (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/external/bsd/kyua-cli/dist/utils/process/
H A Dfdstream.cpp38 /// Private implementation fields for ifdstream.
39 struct ifdstream::impl {
57 /// Constructs a new ifdstream based on an open file descriptor.
62 process::ifdstream::ifdstream(const int fd) : function in class:process::ifdstream
70 /// Destroys an ifdstream object.
73 process::ifdstream::~ifdstream(void)
H A Dfdstream.hpp30 /// Provides the utils::process::ifdstream class.
48 class ifdstream : public std::istream, noncopyable class in namespace:utils::process
56 explicit ifdstream(const int);
57 ~ifdstream(void);
H A Dfdstream_test.cpp39 using utils::process::ifdstream;
43 ATF_TEST_CASE(ifdstream);
44 ATF_TEST_CASE_HEAD(ifdstream)
46 set_md_var("descr", "Tests the ifdstream class");
48 ATF_TEST_CASE_BODY(ifdstream)
53 ifdstream rend(fds[0]);
72 ATF_ADD_TEST_CASE(tcs, ifdstream);
H A Dchild.cpp68 std::unique_ptr< process::ifdstream > _output;
74 impl(const pid_t pid, process::ifdstream* output) :
293 new process::child(new impl(pid, new process::ifdstream(fds[0]))));

Completed in 187 milliseconds