Lines Matching defs:const
48 fix_plain_name(const char *filename)
50 const atf::fs::path filepath(filename);
59 construct_script(const char* filename)
61 const std::string libexecdir = atf::env::get(
63 const std::string pkgdatadir = atf::env::get(
65 const std::string shell = atf::env::get("ATF_SHELL", ATF_SHELL);
78 const char**
79 construct_argv(const std::string& shell, const int interpreter_argc,
80 const char* const* interpreter_argv)
85 const std::string* script = construct_script(interpreter_argv[0]);
87 const int count = 4 + (interpreter_argc - 1) + 1;
88 const char** argv = new const char*[count];
109 static const char* m_description;
113 options_set specific_options(void) const;
114 void process_option(int, const char*);
122 const char* atf_sh::m_description =
134 const
147 atf_sh::process_option(int ch, const char* arg)
165 const atf::fs::path script(m_argv[0]);
170 const char** argv = construct_argv(m_shell.str(), m_argc, m_argv);
174 const int ret = execv(m_shell.c_str(), const_cast< char** >(argv));
182 main(int argc, char* const* argv)