Searched defs:new (Results 1 - 12 of 12) sorted by relevance

/bind-9.11.3/bin/win32/BINDInstall/
H A DBINDInstall.cpp33 #define new DEBUG_NEW macro
H A DDirBrowse.cpp33 #define new DEBUG_NEW macro
H A DVersionInfo.cpp15 #define new DEBUG_NEW macro
53 m_versionInfo = new char[viSize];
H A DBINDInstallDlg.cpp76 #define new DEBUG_NEW macro
601 /* Create a new key for named */
1173 /* Create a new key for named */
/bind-9.11.3/contrib/dlz/modules/perl/testing/
H A Ddlz_perl_example.pm29 sub new { subroutine
/bind-9.11.3/unit/atf-src/atf-c++/detail/
H A Dauto_array_test.cpp57 void* operator new(size_t size ATF_DEFS_ATTRIBUTE_UNUSED)
59 ATF_FAIL("New called but should have been new[]");
60 return new int(5);
63 void* operator new[](size_t size)
66 void* mem = ::operator new(size);
100 auto_array< test_array > t(new test_array[10]);
118 auto_array< test_array > t1(new test_array[10]);
142 auto_array< test_array > t1(new test_array[10]);
164 test_array* ta = new test_array[10];
179 test_array* ta1 = new test_arra
[all...]
/bind-9.11.3/unit/atf-src/tools/
H A Dauto_array_test.cpp58 void* operator new(size_t size ATF_DEFS_ATTRIBUTE_UNUSED)
60 ATF_FAIL("New called but should have been new[]");
61 return new int(5);
64 void* operator new[](size_t size)
67 void* mem = ::operator new(size);
101 auto_array< test_array > t(new test_array[10]);
119 auto_array< test_array > t1(new test_array[10]);
143 auto_array< test_array > t1(new test_array[10]);
165 test_array* ta = new test_array[10];
180 test_array* ta1 = new test_arra
[all...]
/bind-9.11.3/contrib/idn/idnkit-1.0-src/util/
H A DSparseMap.pm51 sub new { subroutine
369 sub new { subroutine
371 my $self = $class->SUPER::new(@_);
446 sub new { subroutine
448 my $self = $class->SUPER::new(@_);
/bind-9.11.3/lib/isc/
H A Dlog.c177 * When adding new categories, a corresponding ISC_LOGCATEGORY_foo
253 * Establish a new logging context, with default channels.
595 * Update the id number of the category with its new global id.
662 * Update the id number of the module with its new global id.
769 * point to the new default_stderr.
1216 char new[PATH_MAX + 1]; local
1266 n = snprintf(new, sizeof(new), "%s.%u", path, i);
1267 if (n >= (int)sizeof(new) || n < 0)
1271 result = isc_file_rename(current, new);
[all...]
/bind-9.11.3/lib/dns/
H A Drpz.c1397 * Get ready for a new set of policy zones for a view.
1401 dns_rpz_zones_t *new; local
1408 new = isc_mem_get(mctx, sizeof(*new));
1409 if (new == NULL)
1411 memset(new, 0, sizeof(*new));
1413 result = isc_rwlock_init(&new->search_lock, 0, 0);
1415 isc_mem_put(mctx, new, sizeof(*new));
[all...]
/bind-9.11.3/contrib/dlz/modules/mysqldyn/
H A Ddlz_mysqldyn_mod.c157 * Arguments: new serial number (in text format), zone-id (from Q_WRITEABLE)
519 char *new; local
521 new = (char *) malloc(strlen(name) + 1);
522 if (new == NULL)
529 strcpy(new, name);
530 return (new);
532 strcpy(new, "@");
533 return (new);
541 strcpy(new, name);
542 return (new);
[all...]
/bind-9.11.3/bin/named/
H A Dserver.c259 * new zones to be added at runtime.
1856 dns_rpz_zone_t *new; local
1871 new = isc_mem_get(view->rpzs->mctx, sizeof(*new));
1872 if (new == NULL) {
1878 memset(new, 0, sizeof(*new));
1879 result = isc_refcount_init(&new->refs, 1);
1881 isc_mem_put(view->rpzs->mctx, new, sizeof(*new));
2005 dns_rpz_zones_t *new; local
[all...]

Completed in 57 milliseconds