Searched defs:last (Results 1 - 19 of 19) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/include/dns/
H A Ddbiterator.h78 isc_result_t (*last)(dns_dbiterator_t *iterator); member in struct:dns_dbiteratormethods
144 * Move the node cursor to the last node in the database (if any).
220 * result of last call to a cursor movement command was ISC_R_SUCCESS).
/bind-9.6-ESV-R11/lib/isc/
H A Dresult.c36 unsigned int last; member in struct:resulttable
133 table->last = base + nresults - 1;
185 if (result >= table->base && result <= table->last) {
H A Dheap.c69 unsigned int last; member in struct:isc_heap
96 heap->last = 0;
166 size = heap->last;
194 new_last = heap->last + 1;
198 heap->last = new_last;
211 REQUIRE(index >= 1 && index <= heap->last);
213 if (index == heap->last) {
214 heap->array[heap->last] = NULL;
215 heap->last--;
217 elt = heap->array[heap->last];
[all...]
H A Dbase32.c163 unsigned int last; local
169 last = s - ctx->base;
173 if (last > 32)
174 last -= 33;
178 if (last != 32 && ctx->seen_32 != 0)
185 if (last == 32 && ctx->seen_32 == 0)
218 ctx->val[ctx->digits++] = (last == 32) ? 0 : last;
H A Dtask.c464 isc_eventtype_t last, void *tag,
471 REQUIRE(last >= first);
476 * Events matching 'sender', whose type is >= first and <= last, and
487 if (event->ev_type >= first && event->ev_type <= last &&
504 isc_eventtype_t last, void *tag)
518 count = dequeue_events(task, sender, first, last, tag, &events,
590 isc_eventtype_t last, void *tag,
599 return (dequeue_events(task, sender, first, last, tag, events,
463 dequeue_events(isc_task_t *task, void *sender, isc_eventtype_t first, isc_eventtype_t last, void *tag, isc_eventlist_t *events, isc_boolean_t purging) argument
503 isc_task_purgerange(isc_task_t *task, void *sender, isc_eventtype_t first, isc_eventtype_t last, void *tag) argument
589 isc_task_unsendrange(isc_task_t *task, void *sender, isc_eventtype_t first, isc_eventtype_t last, void *tag, isc_eventlist_t *events) argument
H A Dmem.c354 unsigned char *first, *last; local
405 * curr is now pointing at the last block in the
410 last = first + NUM_BASIC_BLOCKS * ctx->mem_target - 1;
413 if (last > ctx->highest)
414 ctx->highest = last;
473 * curr is now pointing at the last block in the
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dtext.c47 char *str, *str2, *last; local
56 str2 = strtok_r(str, sep, &last);
59 str2 = strtok_r(NULL, sep, &last);
H A Dfs.c246 char *last; local
259 last = NULL; /* Silence GCC warning. */
260 ptr = strtok_r(p, "/", &last);
267 ptr = strtok_r(NULL, "/", &last);
/bind-9.6-ESV-R11/contrib/zkt/
H A Dzone.c282 zone_t *last; local
289 last = curr = *list;
292 last = curr;
299 last->next = new;
H A Drollover.c536 dki_t *dkp, *last; local
555 last = NULL;
568 if ( last )
569 last->next = dkp;
576 last = dkp;
H A Dzconf.c75 # define last (0x7FFF) macro
131 { "", first, last, CONF_COMMENT, ""},
132 { "", first, last, CONF_COMMENT, "\t@(#) dnssec.conf "},
133 { "", first, last, CONF_VERSION, "" },
134 { "", first, last, CONF_COMMENT, ""},
135 { "", first, last, CONF_COMMENT, NULL },
138 { "", 100, last, CONF_COMMENT, "zkt-ls options" },
139 { "ZoneDir", first, last, CONF_STRING, &def.zonedir },
140 { "Recursive", first, last, CONF_BOOL, &def.recursive },
141 { "PrintTime", first, last, CONF_BOO
[all...]
H A Ddki.c121 ungetc (c, fp); /* push back last char */
811 /* and last by creation time, */
839 /* and last by tag */
1103 dki_t *last; local
1110 last = curr = *list;
1113 last = curr;
1120 last->next = new;
1196 const dki_t *last; local
1198 last = NULL;
1203 last
1216 const dki_t *last; local
[all...]
/bind-9.6-ESV-R11/lib/dns/
H A Dportlist.c109 unsigned int last = len; local
120 if (xtry == last)
122 last = min;
129 if (xtry == last)
131 last = max;
H A Dzone.c395 isc_uint32_t last; member in struct:dns_unreachable
936 /* last stuff */
1407 * than the last time the zone was loaded. If the zone has not
1428 "older than last load");
3141 * We just detached the last external reference.
10807 * to be managed last).
11430 zmgr->unreachable[i].last = seconds;
11484 isc_uint32_t last = seconds; local
11499 if (zmgr->unreachable[i].last < last) {
[all...]
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/
H A Dunormalize.c72 int last; /* pointing just after the last character */ member in struct:__anon62
122 assert(wb.cur == wb.last);
143 for (; wb.cur < wb.last; wb.cur++) {
186 * Now CUR points just after the last character in WB,
221 r = idn__unicode_decompose(wb->version, compat, wb->ucs4 + wb->last,
222 wb->size - wb->last, c, &dec_len);
225 wb->last += dec_len;
248 for (i = wb->cur; i < wb->last; i++)
341 wb->last
400 int last = wb->last; local
[all...]
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/wsock/common/
H A Dencoding.c117 char *p, *last; local
121 for (p = exename, last = NULL; *p != '\0'; p++) {
123 last = p;
126 strcpy(prgname, (last == NULL) ? exename : (last + 1));
/bind-9.6-ESV-R11/lib/isccc/
H A Dsexpr.c256 isccc_sexpr_t *last, *elt, *l1; local
269 for (last = l1; CDR(last) != NULL; last = CDR(last))
271 CDR(last) = elt;
/bind-9.6-ESV-R11/bin/tests/
H A Drdata_test.c902 dns_rdata_t last = DNS_RDATA_INIT; local
970 dns_rdata_init(&last);
1185 dns_rdata_compare(&rdata, &last));
1189 free(last.data);
1191 dns_rdata_init(&last);
1195 dns_rdata_fromregion(&last, class, type, &region);
/bind-9.6-ESV-R11/bin/named/
H A Dquery.c1203 * No cached data was found. Glue is our last chance.
1693 * No cached data was found. Glue is our last chance.
3278 static isc_stdtime_t last = 0; local
3281 if (now != last) {
3282 last = now;
3292 static isc_stdtime_t last = 0; local
3295 if (now != last) {
3296 last = now;

Completed in 78 milliseconds