Home
last modified time | relevance | path

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

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/process/include/boost/process/detail/posix/
Dcmd.hpp53 struct cmd_setter_ : handler_base_ext struct
55 typedef Char value_type;
56 typedef std::basic_string<value_type> string_type;
58 cmd_setter_(string_type && cmd_line) : _cmd_line(api::build_cmd(std::move(cmd_line))) {} in cmd_setter_() argument
59 cmd_setter_(const string_type & cmd_line) : _cmd_line(api::build_cmd(cmd_line)) {} in cmd_setter_() function
61 void on_setup(Executor& exec) in on_setup()
67 string_type str() const in str()
85 std::vector<string_type> _cmd_line;
86 std::vector<Char*> _cmd_impl = make_cmd(_cmd_line);
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/process/include/boost/process/detail/windows/
Dcmd.hpp22 struct cmd_setter_ : ::boost::process::detail::handler_base struct
24 typedef CharType value_type;
25 typedef std::basic_string<value_type> string_type;
27 cmd_setter_(string_type && cmd_line) : _cmd_line(std::move(cmd_line)) {} in cmd_setter_() argument
28 cmd_setter_(const string_type & cmd_line) : _cmd_line(cmd_line) {} in cmd_setter_() function
30 void on_setup(Executor& exec) in on_setup()
34 const string_type & str() const {return _cmd_line;} in str()
37 string_type _cmd_line;