Home
last modified time | relevance | path

Searched refs:head (Results 1 – 8 of 8) sorted by relevance

/NetX-Duo-v6.2.1/addons/mdns/
Dnxd_mdns.c1682 ULONG *head; in _nx_mdns_enable() local
1784 head = (ULONG*)mdns_ptr -> nx_mdns_local_service_cache; in _nx_mdns_enable()
1787 head = (ULONG*)(*head); in _nx_mdns_enable()
1790 …_MDNS_RR*)((UCHAR*)mdns_ptr -> nx_mdns_local_service_cache + sizeof(ULONG)); (ULONG*)p < head; p++) in _nx_mdns_enable()
1981 ULONG *head; in _nx_mdns_disable() local
2019 head = (ULONG*)mdns_ptr -> nx_mdns_peer_service_cache; in _nx_mdns_disable()
2022 head = (ULONG*)(*head); in _nx_mdns_disable()
2025 …X_MDNS_RR*)((UCHAR*)mdns_ptr -> nx_mdns_peer_service_cache + sizeof(ULONG)); (ULONG*)p < head; p++) in _nx_mdns_disable()
2044 head = (ULONG*)mdns_ptr -> nx_mdns_local_service_cache; in _nx_mdns_disable()
2047 head = (ULONG*)(*head); in _nx_mdns_disable()
[all …]
/NetX-Duo-v6.2.1/test/regression/mdns_test/
Dnetx_mdns_two_buffer_test.c249 ULONG *tail, *head; in check_empty_buffer() local
254 head = (ULONG*)buffer_ptr; in check_empty_buffer()
265 expected_head = (ULONG)(head + 1); in check_empty_buffer()
270 if((*head == expected_head) && (expect_empty == NX_FALSE)) in check_empty_buffer()
272 else if((*head != expected_head) && (expect_empty == NX_TRUE)) in check_empty_buffer()
286 ULONG *tail, *head; in empty_buffer_init() local
288 head = (ULONG*)buffer; in empty_buffer_init()
289 buffer_org_head = *head; in empty_buffer_init()
Dnetx_mdns_interface_test.c223 ULONG *tail, *head; in check_empty_buffer() local
228 head = (ULONG*)buffer_ptr; in check_empty_buffer()
229 if((*head == (ULONG)(head + 1)) && (expect_empty == NX_FALSE)) in check_empty_buffer()
231 else if((*head != (ULONG)(head + 1)) && (expect_empty == NX_TRUE)) in check_empty_buffer()
Dnetx_mdns_source_address_test.c247 ULONG *tail, *head; in check_empty_buffer() local
252 head = (ULONG*)buffer_ptr; in check_empty_buffer()
253 if((*head == (ULONG)(head + 1)) && (expect_empty == NX_FALSE)) in check_empty_buffer()
255 else if((*head != (ULONG)(head + 1)) && (expect_empty == NX_TRUE)) in check_empty_buffer()
Dnetx_mdns_ipv6_string_test.c166 ULONG *head; in ntest_0_entry() local
287 head = (ULONG*)mdns_0.nx_mdns_peer_service_cache; in ntest_0_entry()
288 tail = (ULONG*)(*head); in ntest_0_entry()
291 for (p = (NX_MDNS_RR*)(head + 1); (ULONG*)p < tail; p++) in ntest_0_entry()
Dnetx_mdns_internal_function_test.c138 ULONG head; in ntest_0_entry() local
565 head = *((ULONG*)buffer); in ntest_0_entry()
576 if(head != *((ULONG*)buffer)) in ntest_0_entry()
1135 ULONG *tail, *head; in check_empty_buffer() local
1139 head = (ULONG*)buffer_ptr; in check_empty_buffer()
1140 if(*head != buffer_org_head) in check_empty_buffer()
1162 ULONG *tail, *head; in empty_buffer_init() local
1164 head = (ULONG*)buffer_ptr; in empty_buffer_init()
1165 buffer_org_head = *head; in empty_buffer_init()
Dnetx_mdns_run_test_case.c463 ULONG *head; in perform_mdns_rr_check() local
486 head = (ULONG*)record_buffer; in perform_mdns_rr_check()
487 head = (ULONG*)(*head); in perform_mdns_rr_check()
490 for(p = (NX_MDNS_RR*)((ULONG*)record_buffer + 1); (ULONG*)p < head; p++) in perform_mdns_rr_check()
/NetX-Duo-v6.2.1/addons/dns/
Dnxd_dns.c9435 ALIGN_TYPE *head; in _nx_dns_cache_initialize() local
9446 head = (ALIGN_TYPE*)cache_ptr; in _nx_dns_cache_initialize()
9447 *head = (ALIGN_TYPE)((ALIGN_TYPE*)cache_ptr + 1); in _nx_dns_cache_initialize()
9765 ALIGN_TYPE *head; in _nx_dns_cache_add_rr() local
9784 head = (ALIGN_TYPE*)cache_ptr; in _nx_dns_cache_add_rr()
9785 head = (ALIGN_TYPE*)(*head); in _nx_dns_cache_add_rr()
9791 for(p = (NX_DNS_RR*)((ALIGN_TYPE*)cache_ptr + 1); p < (NX_DNS_RR*)head; p++) in _nx_dns_cache_add_rr()
9804 if((ALIGN_TYPE*)((UCHAR*)head + sizeof(NX_DNS_RR)) > tail) in _nx_dns_cache_add_rr()
9808 for(p = (NX_DNS_RR*)((ALIGN_TYPE*)cache_ptr + 1); p < (NX_DNS_RR*)head; p++) in _nx_dns_cache_add_rr()
9842 head = (ALIGN_TYPE*)cache_ptr; in _nx_dns_cache_add_rr()
[all …]