Searched defs:new (Results 1 - 12 of 12) sorted by relevance
/bind-9.11.3/bin/win32/BINDInstall/ |
H A D | BINDInstall.cpp | 33 #define new DEBUG_NEW macro
|
H A D | DirBrowse.cpp | 33 #define new DEBUG_NEW macro
|
H A D | VersionInfo.cpp | 15 #define new DEBUG_NEW macro 53 m_versionInfo = new char[viSize];
|
H A D | BINDInstallDlg.cpp | 76 #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 D | dlz_perl_example.pm | 29 sub new { subroutine
|
/bind-9.11.3/unit/atf-src/atf-c++/detail/ |
H A D | auto_array_test.cpp | 57 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 D | auto_array_test.cpp | 58 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 D | SparseMap.pm | 51 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 D | log.c | 177 * 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 D | rpz.c | 1397 * 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 D | dlz_mysqldyn_mod.c | 157 * 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 D | server.c | 259 * 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 47 milliseconds