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

/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dio.hpp46 // The "file_handle" class.
52 //! The \a file_handle class is a simple RAII model for native system file
58 //! A \a file_handle object can be copied but doing so invalidates the
59 //! source object. There can only be a single valid \a file_handle object
66 class file_handle class in namespace:atf::atf_run
85 //! This constructor creates a new \a file_handle object that represents
91 file_handle(void);
96 //! This constructor creates a new \a file_handle object that takes
106 file_handle(handle_type h);
114 //! avoids having two live \a file_handle object
[all...]
H A Dio.cpp54 // The "file_handle" class.
57 impl::file_handle::file_handle(void) : function in class:impl::file_handle
62 impl::file_handle::file_handle(handle_type h) : function in class:impl::file_handle
68 impl::file_handle::file_handle(const file_handle& fh) : function in class:impl::file_handle
74 impl::file_handle::~file_handle(voi
[all...]
H A Dio_test.cpp129 // Test cases for the "file_handle" class.
135 set_md_var("descr", "Tests file_handle's constructors");
139 using atf::atf_run::file_handle;
141 file_handle fh1;
144 file_handle fh2(STDOUT_FILENO);
152 set_md_var("descr", "Tests file_handle's copy constructor");
156 using atf::atf_run::file_handle;
158 file_handle fh1;
159 file_handle fh2(STDOUT_FILENO);
161 file_handle fh
[all...]
H A Dtest-program.cpp757 impl::file_handle outfh = child.stdout_fd();
758 impl::file_handle errfh = child.stderr_fd();

Completed in 14 milliseconds