Searched defs:copy (Results 1 - 5 of 5) sorted by relevance
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/ |
H A D | text_test.cpp | 53 char* copy = duplicate(orig); local 54 ATF_REQUIRE_EQ(std::strlen(copy), 3); 55 ATF_REQUIRE(std::strcmp(copy, "foo") == 0); 57 std::strcpy(copy, "bar"); 58 ATF_REQUIRE(std::strcmp(copy, "bar") == 0);
|
H A D | text.cpp | 52 char* copy = new char[std::strlen(str) + 1]; local 53 std::strcpy(copy, str); 54 return copy;
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/ |
H A D | dynstr_test.c | 257 ATF_TC(copy); variable 258 ATF_TC_HEAD(copy, tc) 262 ATF_TC_BODY(copy, tc) 617 ATF_TP_ADD_TC(tp, copy);
|
/bind-9.6-ESV-R11/bin/named/ |
H A D | server.c | 5 * Permission to use, copy, modify, and/or distribute this software for any 3116 * string or NULL, with a dynamically allocated copy of the 3121 char *copy; local 3124 copy = isc_mem_strdup(server->mctx, value); 3125 if (copy == NULL) 3128 copy = NULL; 3134 *field = copy;
|
/bind-9.6-ESV-R11/lib/dns/ |
H A D | zone.c | 5 * Permission to use, copy, modify, and/or distribute this software for any 1235 char *copy; local 1238 copy = isc_mem_strdup(zone->mctx, value); 1239 if (copy == NULL) 1242 copy = NULL; 1248 *field = copy;
|
Completed in 83 milliseconds