Home
last modified time | relevance | path

Searched defs:pipe_in (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/process/detail/posix/
Dpipe_in.hpp21 struct pipe_in : handler_base_ext, ::boost::process::detail::uses_handles struct
23 int source;
24 int sink; //opposite end
26 pipe_in(int sink, int source) : source(source), sink(sink) {} in pipe_in() argument
28 std::array<int, 3> get_used_handles() in get_used_handles()
35 pipe_in(T & p) : source(p.native_source()), sink(p.native_sink()) in pipe_in() argument
41 void on_error(Executor &, const std::error_code &) const in on_error()
47 void on_success(Executor &) const in on_success()
53 void on_exec_setup(Executor &e) const in on_exec_setup()
/third_party/boost/boost/process/detail/windows/
Dpipe_in.hpp20 struct pipe_in : public ::boost::process::detail::handler_base, ::boost::process::detail::uses_hand… struct
24 ::boost::winapi::HANDLE_ get_used_handles() const { return handle; } in get_used_handles()
26 pipe_in(::boost::winapi::HANDLE_ handle) : handle(handle) {} in pipe_in() argument
29 pipe_in(T & p) : handle(p.native_source()) in pipe_in() argument
35 void on_setup(WindowsExecutor &e) const in on_setup()
46 void on_error(WindowsExecutor &, const std::error_code &) const in on_error()
52 void on_success(WindowsExecutor &) const in on_success()