Searched refs:delptr (Results 1 – 3 of 3) sorted by relevance
/net-tools-3.4.0/tinydtls-0.8.2/ |
D | uthash.h | 192 #define HASH_DELETE(hh,head,delptr) \ argument 196 if ( ((delptr)->hh.prev == NULL) && ((delptr)->hh.next == NULL) ) { \ 203 _hd_hh_del = &((delptr)->hh); \ 204 if ((delptr) == ELMT_FROM_HH((head)->hh.tbl,(head)->hh.tbl->tail)) { \ 206 (UT_hash_handle*)((char*)((delptr)->hh.prev) + \ 209 if ((delptr)->hh.prev) { \ 210 ((UT_hash_handle*)((char*)((delptr)->hh.prev) + \ 211 (head)->hh.tbl->hho))->next = (delptr)->hh.next; \ 213 DECLTYPE_ASSIGN(head,(delptr)->hh.next); \ 241 #define HASH_DEL(head,delptr) \ argument [all …]
|
D | dtls.c | 69 #define HASH_DEL_PEER(head,delptr) \ argument 70 HASH_DELETE(hh,head,delptr)
|
/net-tools-3.4.0/libcoap/include/coap/ |
D | uthash.h | 224 #define HASH_DELETE(hh,head,delptr) \ argument 227 if ( ((delptr)->hh.prev == NULL) && ((delptr)->hh.next == NULL) ) { \ 235 _hd_hh_del = &((delptr)->hh); \ 236 if ((delptr) == ELMT_FROM_HH((head)->hh.tbl,(head)->hh.tbl->tail)) { \ 238 (UT_hash_handle*)((ptrdiff_t)((delptr)->hh.prev) + \ 241 if ((delptr)->hh.prev) { \ 242 ((UT_hash_handle*)((ptrdiff_t)((delptr)->hh.prev) + \ 243 (head)->hh.tbl->hho))->next = (delptr)->hh.next; \ 245 DECLTYPE_ASSIGN(head,(delptr)->hh.next); \ 279 #define HASH_DEL(head,delptr) \ argument [all …]
|