Searched refs:regexp (Results 1 - 8 of 8) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/rdata/generic/
H A Dnaptr_35.h35 char *regexp; member in struct:dns_rdata_naptr
H A Dnaptr_35.c319 REQUIRE(naptr->regexp != NULL || naptr->regexp_len == 0);
331 RETERR(mem_tobuffer(target, naptr->regexp, naptr->regexp_len));
353 naptr->regexp = NULL;
382 naptr->regexp = mem_maybedup(mctx, r.base, naptr->regexp_len);
383 if (naptr->regexp == NULL)
401 if (mctx != NULL && naptr->regexp != NULL)
402 isc_mem_free(mctx, naptr->regexp);
420 if (naptr->regexp != NULL)
421 isc_mem_free(naptr->mctx, naptr->regexp);
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dutils.hpp55 grep_collection(const std::string& regexp, const Collection& collection) argument
59 if (grep_string(regexp, *iter))
H A Dmacros.hpp127 #define ATF_REQUIRE_MATCH(regexp, string) \
129 if (!atf::tests::detail::match(regexp, string)) { \
132 << "match regexp '" << regexp << "'"; \
159 #define ATF_REQUIRE_THROW_RE(type, regexp, x) \
168 if (!atf::tests::detail::match(regexp, e.what())) { \
171 << e.what() << "), but does not match '" << regexp \
H A Dmacros_test.cpp155 const std::string regexp = get_config_var("regexp"); local
159 ATF_REQUIRE_MATCH(regexp, string);
475 const char *regexp; member in struct:test
487 for (t = &tests[0]; t->regexp != NULL; t++) {
489 config["regexp"] = t->regexp;
492 std::cout << "Checking with " << t->regexp << ", " << t->string
H A Dtests.cpp120 detail::match(const std::string& regexp, const std::string& str) argument
122 return atf::text::match(str, regexp);
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dmacros.h184 #define ATF_REQUIRE_MATCH(regexp, string) \
185 ATF_REQUIRE_MSG(atf_utils_grep_string("%s", string, regexp), \
186 "'%s' not matched in '%s'", regexp, string);
188 #define ATF_CHECK_MATCH(regexp, string) \
189 ATF_CHECK_MSG(atf_utils_grep_string("%s", string, regexp), \
190 "'%s' not matched in '%s'", regexp, string);
192 #define ATF_REQUIRE_MATCH_MSG(regexp, string, fmt, ...) \
193 ATF_REQUIRE_MSG(atf_utils_grep_string("%s", string, regexp), \
194 "'%s' not matched in '%s': " fmt, regexp, string, \
197 #define ATF_CHECK_MATCH_MSG(regexp, strin
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-sh/
H A Datf-check.cpp375 grep_file(const atf::fs::path& path, const std::string& regexp) argument
385 if (atf::text::match(line, regexp))
644 std::cerr << "Fail: regexp " + oc.value + " not in " << stdxxx
649 std::cerr << "Fail: regexp " + oc.value + " is in " << stdxxx
763 "one of: empty ignore file:<path> inline:<val> match:regexp "
766 "one of: empty ignore file:<path> inline:<val> match:regexp "

Completed in 19 milliseconds