Searched defs:index (Results 1 - 15 of 15) sorted by relevance

/bind-9.11.3/lib/isc/tests/
H A Dheap_test.c25 unsigned int index; member in struct:e
40 e->index = i;
64 ATF_REQUIRE_EQ(e1.index, 1);
66 isc_heap_delete(heap, e1.index);
67 ATF_CHECK_EQ(e1.index, 0);
/bind-9.11.3/lib/dns/include/dns/
H A Ddnssec.h63 unsigned int index; /*% position in list */ member in struct:dns_dnsseckey
H A Drrl.h183 unsigned int index; member in struct:dns_rrl_qname_buf
/bind-9.11.3/lib/isc/
H A Dresult.c249 int index; local
260 index = (int)(result - table->base);
261 default_text = table->text[index];
263 * Note: we use 'index + 1' as the message number
264 * instead of index because isc_msgcat_get() requires
268 index + 1, default_text);
H A Dheap.c33 * not 0-based. The parent is index/2, and the left-child is index*2.
34 * The right child is index*2+1.
63 isc_heapindex_t index; member in struct:isc_heap
102 heap->index = idx;
156 if (heap->index != NULL)
157 (heap->index)(heap->array[i], i);
160 if (heap->index != NULL)
161 (heap->index)(heap->array[i], i);
181 if (heap->index !
[all...]
H A Dtimer.c84 unsigned int index; member in struct:isc__timer
233 if (timer->index > 0) {
241 isc_heap_increased(manager->heap, timer->index);
244 isc_heap_decreased(manager->heap, timer->index);
296 if (timer->index == 1 && signal_ok) {
303 if (timer->index == 1 &&
323 if (timer->index > 0) {
325 if (timer->index == 1)
328 isc_heap_delete(manager->heap, timer->index);
329 timer->index
838 set_index(void *what, unsigned int index) argument
[all...]
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/
H A Dopt.c164 int index = 0; local
167 while (str[index] != 0) {
168 c = str[index];
176 index++;
/bind-9.11.3/unit/atf-src/tools/
H A Dio.cpp285 impl::muxer::read_one(const size_t index, const int fd, std::string& accum, argument
299 line_callback(index, line);
H A Dio_test.cpp325 void line_callback(const size_t index, const std::string& line) argument
332 //std::cout << "line_callback(" << index << ", " << line << ")\n";
334 switch (index) {
H A Dtest-program.cpp707 line_callback(const size_t index, const std::string& line) argument
709 switch (index) {
/bind-9.11.3/contrib/dlz/modules/sqlite3/
H A Ddlz_sqlite3_dynamic.c478 int index = (rs->curRow + 1) * rs->pnColumn; local
479 retval = &rs->pazResult[index];
/bind-9.11.3/contrib/sdb/ldap/
H A Dldapdb.c81 void *index; member in struct:ldapdb_entry
88 const void *index, size_t size) {
90 if (stack->size == size && !memcmp(stack->index, index, size))
133 free(threaddata->index);
156 threaddata->index = malloc(sizeof(threadid));
157 if (threaddata->index == NULL) {
161 *(unsigned long *)threaddata->index = threadid;
180 conndata->index = data->hostport;
87 ldapdb_find(struct ldapdb_entry *stack, const void *index, size_t size) argument
/bind-9.11.3/bin/win32/BINDInstall/
H A DBINDInstallDlg.cpp295 size_t index = dptr - fptr; local
296 strncpy(dirname, filename, index);
297 dirname[index] = '\0';
/bind-9.11.3/lib/dns/
H A Djournal.c43 * \li The index. This is an unordered array of index entries
46 * transactions. The index entries are used as hints to
48 * serial number. Unused index entries have an "offset"
49 * field of zero. The size of the index can vary between
66 * to from the header or index. They may be preceded
178 * and end of the journal, and in the journal index to locate
212 /*% Number of index entries following the header. */
310 unsigned char *rawindex; /*%< In-core buffer for journal index in on-disk format */
311 journal_pos_t *index; /* member in struct:dns_journal
[all...]
/bind-9.11.3/contrib/queryperf/
H A Dqueryperf.c1166 unsigned int index, num_directives; local
1173 for (index = 0; index < num_directives; index++) {
1174 if (strcmp(dir, directives[index]) == 0)
1175 return (dir_values[index]);
1210 if (index(WHITESPACE, *config_change_desc) != NULL) {
1349 unsigned int num_types, index; local
1373 for (index = 0; (index < num_type
[all...]

Completed in 30 milliseconds