/bind-9.6-ESV-R11/unit/atf-src/atf-c/ |
H A D | build.c | 83 append_optargs(const char *const optargs[], atf_list_t *argv) argument 88 while (*optargs != NULL && !atf_is_error(err)) { 89 err = append_arg1(strdup(*optargs), argv); 90 optargs++; 151 const char *const optargs[], 173 if (optargs != NULL) { 174 err = append_optargs(optargs, &argv_list); 196 const char *const optargs[], 214 if (optargs != NULL) { 215 err = append_optargs(optargs, 149 atf_build_c_o(const char *sfile, const char *ofile, const char *const optargs[], char ***argv) argument 194 atf_build_cpp(const char *sfile, const char *ofile, const char *const optargs[], char ***argv) argument 239 atf_build_cxx_o(const char *sfile, const char *ofile, const char *const optargs[], char ***argv) argument [all...] |
H A D | h_build.h | 48 const char *const optargs[16]; member in struct:c_o_test 186 const char *const optargs[16]; member in struct:cpp_test 285 const char *const optargs[16]; member in struct:cxx_o_test
|
H A D | build_test.c | 175 RE(atf_build_c_o(test->sfile, test->ofile, test->optargs, 204 RE(atf_build_cpp(test->sfile, test->ofile, test->optargs, 234 RE(atf_build_cxx_o(test->sfile, test->ofile, test->optargs,
|
H A D | check.c | 402 const char *const optargs[], 408 err = atf_build_c_o(sfile, ofile, optargs, &argv); 422 const char *const optargs[], 428 err = atf_build_cpp(sfile, ofile, optargs, &argv); 442 const char *const optargs[], 448 err = atf_build_cxx_o(sfile, ofile, optargs, &argv); 400 atf_check_build_c_o(const char *sfile, const char *ofile, const char *const optargs[], bool *success) argument 420 atf_check_build_cpp(const char *sfile, const char *ofile, const char *const optargs[], bool *success) argument 440 atf_check_build_cxx_o(const char *sfile, const char *ofile, const char *const optargs[], bool *success) argument
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/ |
H A D | build.cpp | 81 const atf::process::argv_array& optargs) 86 optargs.exec_argv(), &l); 95 const atf::process::argv_array& optargs) 100 optargs.exec_argv(), &l); 109 const atf::process::argv_array& optargs) 114 optargs.exec_argv(), &l); 80 c_o(const std::string& sfile, const std::string& ofile, const atf::process::argv_array& optargs) argument 94 cpp(const std::string& sfile, const std::string& ofile, const atf::process::argv_array& optargs) argument 108 cxx_o(const std::string& sfile, const std::string& ofile, const atf::process::argv_array& optargs) argument
|
H A D | check.cpp | 108 const atf::process::argv_array& optargs) 113 optargs.exec_argv(), &success); 122 const atf::process::argv_array& optargs) 127 optargs.exec_argv(), &success); 136 const atf::process::argv_array& optargs) 141 optargs.exec_argv(), &success); 107 build_c_o(const std::string& sfile, const std::string& ofile, const atf::process::argv_array& optargs) argument 121 build_cpp(const std::string& sfile, const std::string& ofile, const atf::process::argv_array& optargs) argument 135 build_cxx_o(const std::string& sfile, const std::string& ofile, const atf::process::argv_array& optargs) argument
|
H A D | build_test.cpp | 175 atf::process::argv_array(test->optargs)); 197 atf::process::argv_array(test->optargs)); 220 atf::process::argv_array(test->optargs));
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/ |
H A D | test_helpers.cpp | 47 std::vector< std::string > optargs; local 48 optargs.push_back("-I" + atf::config::get("atf_includedir")); 49 optargs.push_back("-Wall"); 50 optargs.push_back("-Werror"); 53 sfile.str(), "test.o", atf::process::argv_array(optargs));
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/ |
H A D | test_helpers.c | 53 const char *optargs[4]; local 57 optargs[0] = atf_dynstr_cstring(&iflag); 58 optargs[1] = "-Wall"; 59 optargs[2] = "-Werror"; 60 optargs[3] = NULL; 62 RE(atf_check_build_c_o(path, "test.o", optargs, &success));
|