Searched refs:item (Results 1 - 12 of 12) sorted by relevance

/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/
H A Daliaslist.c68 aliasitem_t first_item; /* first item of the list */
302 * List item creation.
339 aliasitem_t item; local
347 item = list->first_item;
349 while (item != NULL) {
350 DUMP(("%d: %s\t%s\n", i, item->pattern, item->encoding));
351 item = item->next;
/bind-9.6-ESV-R11/lib/isccc/
H A Dsexpr.c128 isccc_sexpr_t *item; local
138 item = CAR(sexpr);
139 if (item != NULL)
140 isccc_sexpr_free(&item);
141 item = CDR(sexpr);
142 if (item != NULL)
143 isccc_sexpr_free(&item);
/bind-9.6-ESV-R11/lib/dns/include/dns/
H A Dmessage.h68 * on rdatalists and rdatas is optional and serves only to enable the item
811 dns_message_gettempname(dns_message_t *msg, dns_name_t **item);
823 *\li item != NULL && *item == NULL
827 *\li #ISC_R_NOMEMORY -- No item can be allocated.
831 dns_message_gettempoffsets(dns_message_t *msg, dns_offsets_t **item);
840 *\li item != NULL && *item == NULL
844 *\li #ISC_R_NOMEMORY -- No item can be allocated.
848 dns_message_gettemprdata(dns_message_t *msg, dns_rdata_t **item);
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dlist_test.c197 int item = 5; local
200 RE(atf_list_append(&l1, &item, false));
205 ATF_CHECK_EQ(*(int *)atf_list_index(&l1, 0), item);
212 int item = 5; local
216 RE(atf_list_append(&l2, &item, false));
220 ATF_CHECK_EQ(*(int *)atf_list_index(&l1, 0), item);
297 printf("Retrieved item: %d\n", *(int *)atf_list_iter_data(iter));
336 printf("Retrieved item: %d\n",
/bind-9.6-ESV-R11/lib/dns/
H A Dmessage.c2346 dns_message_gettempname(dns_message_t *msg, dns_name_t **item) { argument
2348 REQUIRE(item != NULL && *item == NULL);
2350 *item = isc_mempool_get(msg->namepool);
2351 if (*item == NULL)
2353 dns_name_init(*item, NULL);
2359 dns_message_gettempoffsets(dns_message_t *msg, dns_offsets_t **item) { argument
2361 REQUIRE(item != NULL && *item == NULL);
2363 *item
2371 dns_message_gettemprdata(dns_message_t *msg, dns_rdata_t **item) argument
2383 dns_message_gettemprdataset(dns_message_t *msg, dns_rdataset_t **item) argument
2397 dns_message_gettemprdatalist(dns_message_t *msg, dns_rdatalist_t **item) argument
2409 dns_message_puttempname(dns_message_t *msg, dns_name_t **item) argument
2420 dns_message_puttemprdata(dns_message_t *msg, dns_rdata_t **item) argument
2429 dns_message_puttemprdataset(dns_message_t *msg, dns_rdataset_t **item) argument
2439 dns_message_puttemprdatalist(dns_message_t *msg, dns_rdatalist_t **item) argument
[all...]
/bind-9.6-ESV-R11/lib/isc/
H A Dmem.c180 element *items; /*%< low water item list */
181 size_t size; /*%< size of each item on this pool */
322 * If we get here, we didn't find the item on the list. We're
1699 element *item; local
1727 item = mpctx->items;
1728 mpctx->items = item->next;
1731 mem_putunlocked(mctx, item, mpctx->size);
1733 mem_put(mctx, item, mpctx->size);
1734 mem_putstats(mctx, item, mpctx->size);
1768 element *item; local
1851 element *item; local
[all...]
H A Dhttpd.c1005 isc_httpdurl_t *item; local
1012 item = isc_mem_get(httpdmgr->mctx, sizeof(isc_httpdurl_t));
1013 if (item == NULL)
1016 item->url = isc_mem_strdup(httpdmgr->mctx, url);
1017 if (item->url == NULL) {
1018 isc_mem_put(httpdmgr->mctx, item, sizeof(isc_httpdurl_t));
1022 item->action = func;
1023 item->action_arg = arg;
1024 ISC_LINK_INIT(item, link);
1025 ISC_LIST_APPEND(httpdmgr->urls, item, lin
[all...]
H A Dlog.c506 isc_logchannellist_t *item; local
544 while ((item = ISC_LIST_HEAD(lcfg->channellists[i])) != NULL) {
545 ISC_LIST_UNLINK(lcfg->channellists[i], item, link);
546 isc_mem_put(mctx, item, sizeof(*item));
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dcheck.c237 char *item = strdup(*a); local
238 if (item == NULL) {
243 err = atf_list_append(l, item, true);
/bind-9.6-ESV-R11/contrib/nslint-2.1a3/
H A Dnslint.c67 /* item struct */
68 struct item { struct
121 struct item items[ITEMSIZE];
159 void checkdups(struct item *, int);
1644 checkdups(register struct item *ip, register int records)
1670 register struct item *ip;
1708 fprintf(stderr, "%s: out of item slots (max %d)\n",
1785 register struct item *ip, *lastaip, **ipp, **itemlist;
1788 itemlist = (struct item **)calloc(itemcnt, sizeof(*ipp));
2331 a1 = (*(struct item **)ip
[all...]
/bind-9.6-ESV-R11/contrib/sdb/ldap/
H A Dldapdb.c98 struct ldapdb_entry *item) {
99 item->next = *stack;
100 *stack = item;
97 ldapdb_insert(struct ldapdb_entry **stack, struct ldapdb_entry *item) argument
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/tools/idnconv/
H A Didnconv.c158 #define APPEND_LIST(array, size, item, what) \
163 array[size++] = item; \

Completed in 45 milliseconds