Searched defs:contents (Results 1 - 4 of 4) sorted by relevance
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/ |
H A D | utils.cpp | 52 atf::utils::compare_file(const std::string& path, const std::string& contents) argument 54 return atf_utils_compare_file(path.c_str(), contents.c_str()); 58 atf::utils::create_file(const std::string& path, const std::string& contents) argument 60 atf_utils_create_file(path.c_str(), "%s", contents.c_str());
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c/ |
H A D | utils.c | 72 /** Prints the contents of a file to stdout. 112 /** Compares a file against the given golden contents. 115 * \param contents Expected contents of the file. 117 * \return True if the file matches the contents; false otherwise. */ 119 atf_utils_compare_file(const char *name, const char *contents) argument 124 const char *pos = contents; 125 ssize_t remaining = strlen(contents); 178 * \param contents Text to write into the created file. 179 * \param ... Positional parameters to the contents 181 atf_utils_create_file(const char *name, const char *contents, ...) argument [all...] |
/bind-9.6-ESV-R11/unit/atf-src/atf-run/ |
H A D | test_program_test.cpp | 77 write_test_case_result(const char *results_path, const std::string& contents) argument 82 results_file << contents; local
|
/bind-9.6-ESV-R11/lib/isccfg/ |
H A D | parser.c | 82 create_string(cfg_parser_t *pctx, const char *contents, const cfg_type_t *type, 669 create_string(cfg_parser_t *pctx, const char *contents, const cfg_type_t *type, argument 677 len = strlen(contents); 684 memmove(obj->value.string.base, contents, len);
|
Completed in 21 milliseconds