| /bind-9.11.3/unit/atf-src/atf-c++/ |
| H A D | build.cpp | 77 const atf::process::argv_array& optargs) 82 optargs.exec_argv(), &l); 91 const atf::process::argv_array& optargs) 96 optargs.exec_argv(), &l); 105 const atf::process::argv_array& optargs) 110 optargs.exec_argv(), &l); 76 c_o(const std::string& sfile, const std::string& ofile, const atf::process::argv_array& optargs) argument 90 cpp(const std::string& sfile, const std::string& ofile, const atf::process::argv_array& optargs) argument 104 cxx_o(const std::string& sfile, const std::string& ofile, const atf::process::argv_array& optargs) argument
|
| H A D | check.cpp | 104 const atf::process::argv_array& optargs) 109 optargs.exec_argv(), &success); 118 const atf::process::argv_array& optargs) 123 optargs.exec_argv(), &success); 132 const atf::process::argv_array& optargs) 137 optargs.exec_argv(), &success); 103 build_c_o(const std::string& sfile, const std::string& ofile, const atf::process::argv_array& optargs) argument 117 build_cpp(const std::string& sfile, const std::string& ofile, const atf::process::argv_array& optargs) argument 131 build_cxx_o(const std::string& sfile, const std::string& ofile, const atf::process::argv_array& optargs) argument
|
| /bind-9.11.3/unit/atf-src/atf-c++/detail/ |
| H A D | test_helpers.cpp | 55 std::vector< std::string > optargs; local 56 optargs.push_back("-I" + atf::env::get("ATF_INCLUDEDIR", ATF_INCLUDEDIR)); 57 optargs.push_back("-Wall"); 58 optargs.push_back("-Werror"); 61 atf::process::argv_array(optargs));
|
| /bind-9.11.3/unit/atf-src/atf-c/ |
| H A D | h_build.h | 44 const char *const optargs[16]; member in struct:c_o_test 182 const char *const optargs[16]; member in struct:cpp_test 281 const char *const optargs[16]; member in struct:cxx_o_test
|
| H A D | build.c | 80 append_optargs(const char *const optargs[], atf_list_t *argv) argument 85 while (*optargs != NULL && !atf_is_error(err)) { 86 err = append_arg1(strdup(*optargs), argv); 87 optargs++; 148 const char *const optargs[], 171 if (optargs != NULL) { 172 err = append_optargs(optargs, &argv_list); 194 const char *const optargs[], 213 if (optargs != NULL) { 214 err = append_optargs(optargs, 146 atf_build_c_o(const char *sfile, const char *ofile, const char *const optargs[], char ***argv) argument 192 atf_build_cpp(const char *sfile, const char *ofile, const char *const optargs[], char ***argv) argument 238 atf_build_cxx_o(const char *sfile, const char *ofile, const char *const optargs[], char ***argv) argument [all...] |
| H A D | check.c | 398 const char *const optargs[], 404 err = atf_build_c_o(sfile, ofile, optargs, &argv); 418 const char *const optargs[], 424 err = atf_build_cpp(sfile, ofile, optargs, &argv); 438 const char *const optargs[], 444 err = atf_build_cxx_o(sfile, ofile, optargs, &argv); 396 atf_check_build_c_o(const char *sfile, const char *ofile, const char *const optargs[], bool *success) argument 416 atf_check_build_cpp(const char *sfile, const char *ofile, const char *const optargs[], bool *success) argument 436 atf_check_build_cxx_o(const char *sfile, const char *ofile, const char *const optargs[], bool *success) argument
|
| /bind-9.11.3/unit/atf-src/atf-c/detail/ |
| H A D | test_helpers.c | 48 const char *optargs[4]; local 53 optargs[0] = atf_dynstr_cstring(&iflag); 54 optargs[1] = "-Wall"; 55 optargs[2] = "-Werror"; 56 optargs[3] = NULL; 58 RE(atf_check_build_c_o(path, "test.o", optargs, &success));
|