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

12

/bind-9.6-ESV-R11/bin/win32/BINDInstall/
H A DBINDInstall.cpp42 #define new DEBUG_NEW macro
H A DDirBrowse.cpp42 #define new DEBUG_NEW macro
H A DVersionInfo.cpp13 #define new DEBUG_NEW macro
51 m_versionInfo = new char[viSize];
H A DBINDInstallDlg.cpp73 #define new DEBUG_NEW macro
519 /* Create a new key for named */
959 /* Create a new key for named */
/bind-9.6-ESV-R11/lib/isc/powerpc/include/isc/
H A Datomic.h81 isc_atomic_cmpxchg(atomic_p p, int old, int new) { argument
89 if (compare_and_swap(p, &orig, new))
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dauto_array_test.cpp59 void* operator new(size_t size ATF_DEFS_ATTRIBUTE_UNUSED)
61 ATF_FAIL("New called but should have been new[]");
62 return new int(5);
65 void* operator new[](size_t size)
68 void* mem = ::operator new(size);
102 auto_array< test_array > t(new test_array[10]);
120 auto_array< test_array > t1(new test_array[10]);
144 auto_array< test_array > t1(new test_array[10]);
166 test_array* ta = new test_array[10];
181 test_array* ta1 = new test_arra
[all...]
/bind-9.6-ESV-R11/contrib/zkt/
H A Dstrlist.c61 char *new; local
69 if ( (new = malloc (len + 2)) == NULL )
70 return new;
73 p = new;
87 *new = cnt & 0xFF;
89 return new;
H A Dzone.c138 ** allocate memory for new zone structure and initialize it
143 zone_t *new; local
165 if ( (new = zone_alloc ()) != NULL )
169 new->zone = domain_canonicdup (zone);
170 new->dir = strdup (dir);
171 new->file = strdup (file);
173 if ( (p = strrchr (new->file, '.')) != NULL && strcmp (p, signed_ext) == 0 )
175 new->sfile = strdup (new->file);
181 new
279 zone_add(zone_t **list, zone_t *new) argument
[all...]
H A Dmisc.c131 char *new; local
144 if ( (new = p = malloc (len + 1)) == NULL )
153 return new;
161 char *new;
164 if ( s == NULL || (new = p = malloc (strlen (s) + 1)) == NULL )
171 return new;
H A Ddki.c237 ** create new keyfile
238 ** allocate memory for new dki key and init with keyfile
249 dki_t *new; local
278 new = dki_read (dir, fname);
279 if ( new )
280 dki_setlifetime (new, lf_days); /* sets gentime + proposed lifetime */
282 return new;
492 /* 1) write a new keyfile when the REVOKE bit is set or unset */
955 dkp->lifetime = days * DAYSEC; /* set new lifetime */
1100 dki_t *dki_add (dki_t **list, dki_t *new) argument
1152 dki_tadd(dki_t **tree, dki_t *new, int sub_before) argument
[all...]
/bind-9.6-ESV-R11/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.6-ESV-R11/lib/isc/
H A Dinet_pton.c94 unsigned int new = *tp * 10 + (pch - digits); local
98 if (new > 255)
100 *tp = new;
H A Dlex.c73 char *new; local
75 new = isc_mem_get(lex->mctx, lex->max_token * 2 + 1);
76 if (new == NULL)
78 memmove(new, lex->data, lex->max_token + 1);
79 *currp = new + (*currp - lex->data);
81 *prevp = new + (*prevp - lex->data);
83 lex->data = new;
H A Dlog.c186 * When adding new categories, a corresponding ISC_LOGCATEGORY_foo
264 * Establish a new logging context, with default channels.
605 * Update the id number of the category with its new global id.
672 * Update the id number of the module with its new global id.
778 * point to the new default_stderr.
1217 char new[PATH_MAX + 1]; local
1281 n = snprintf(new, sizeof(new), "%s.%d", path, i);
1282 if (n >= (int)sizeof(new) || n < 0)
1286 result = isc_file_rename(current, new);
1547 isc_logmessage_t *message, *new; local
[all...]
H A Dmem.c352 void *new; local
388 new = (ctx->memalloc)(ctx->arg, NUM_BASIC_BLOCKS * ctx->mem_target);
389 if (new == NULL) {
394 ctx->basic_table[ctx->basic_table_count] = new;
397 curr = new;
409 first = new;
415 ctx->basic_blocks = new;
424 void *new; local
445 new = ctx->basic_blocks;
454 curr = new;
[all...]
/bind-9.6-ESV-R11/lib/lwres/
H A Dlwinetpton.c93 unsigned int new = *tp * 10 + (pch - digits); local
95 if (new > 255)
97 *tp = new;
/bind-9.6-ESV-R11/bin/named/
H A Dconfig.c510 void * new; local
516 new = isc_mem_get(mctx, newsize);
517 if (new == NULL)
520 memmove(new, lists, oldsize);
523 lists = new;
545 void * new; local
551 new = isc_mem_get(mctx, newsize);
552 if (new == NULL)
555 memmove(new, stack, oldsize);
558 stack = new;
572 void * new; local
633 void * new; local
[all...]
/bind-9.6-ESV-R11/lib/dns/
H A Dview.c1357 dns_name_t *new; local
1372 new = ISC_LIST_HEAD(view->delonly[hash]);
1373 while (new != NULL && !dns_name_equal(new, name))
1374 new = ISC_LIST_NEXT(new, link);
1375 if (new != NULL)
1377 new = isc_mem_get(view->mctx, sizeof(*new));
1378 if (new
1392 dns_name_t *new; local
1426 dns_name_t *new; local
[all...]
H A Djournal.c70 * The journal data part grows as new transactions are
79 * be overwritten when new transactions are added.
841 * Add a new index entry. If there is no room, make room by removing
879 * Store the new index entry.
886 * ambiguous when a new transaction with number 'serial' is added.
957 * Find the file offset where the new transaction should
1221 * A new database version will be created.
1254 * Create the new database version.
1730 * All new tuples will have the operation 'op'.
2016 dns_journal_t *new local
[all...]
H A Dmaster.c1392 * If we are processing glue and the new name does
1417 * If we are in 'normal' processing state and the new
1419 * new name is for glue and treat it as such,
1420 * otherwise we have a new name so commit what we
1859 * If it does not exist create new one and prepend to list
1985 dns_incctx_t *new = NULL; local
1995 result = incctx_create(lctx->mctx, origin, &new);
2002 if (!new->in_use[new_in_use])
2005 new->current_in_use = new_in_use;
2006 new
2660 dns_rdatalist_t *new; local
2710 dns_rdata_t *new; local
[all...]
H A Drdata.c317 void *new; local
321 new = isc_mem_allocate(mctx, length);
322 if (new != NULL)
323 memmove(new, source, length);
325 return (new);
H A Drbtdb.c800 unsigned int new; local
820 new = old * interval;
821 new /= (unsigned int)usecs;
822 if (new == 0)
823 new = 1;
824 else if (new > 1000)
825 new = 1000;
828 new = (new + old * 3) / 4;
831 ISC_LOG_DEBUG(1), "adjust_quantum -> %d", new);
[all...]
H A Dresolver.c5186 * Avoid infinite loops by only marking new rdatasets.
6777 * DNAME mapping failed because the new name
6940 * We have a new set of name servers, and it
6947 * new zone.
8203 dns_badcache_t **new, *bad, *next; local
8211 new = isc_mem_get(resolver->mctx,
8213 if (new == NULL)
8215 memset(new, 0, sizeof(*resolver->badcache) * newsize);
8224 bad->next = new[bad->hashval % newsize];
8225 new[ba
8433 unsigned char *new; local
[all...]
/bind-9.6-ESV-R11/lib/bind9/
H A Dcheck.c901 void * new; local
907 new = isc_mem_get(mctx, newsize);
908 if (new == NULL)
914 memmove(new, stack, oldsize);
917 stack = new;
/bind-9.6-ESV-R11/lib/isc/unix/
H A Dsocket.c1789 * and `fd' may be reassigned for a new socket. So we do
2130 int new, tmp; local
2131 new = fcntl(sock->fd, F_DUPFD, manager->reserved);
2135 sock->fd = new;
2138 int new, tmp; local
2139 new = fcntl(sock->fd, F_DUPFD, 20);
2143 sock->fd = new;
2366 * Create a new 'type' socket managed by 'manager'. Events
2368 * called with 'arg' as the arg value. The new socket is returned
2487 * Create a new 'typ
2885 int new, tmp; local
[all...]

Completed in 5516 milliseconds

12