Searched refs:field (Results 1 – 2 of 2) sorted by relevance
| /sys/include/ |
| D | queue.h | 169 #define SLIST_FOREACH(var, head, field) \ argument 172 (var) = SLIST_NEXT((var), field)) 174 #define SLIST_FOREACH_FROM(var, head, field) \ argument 177 (var) = SLIST_NEXT((var), field)) 179 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument 181 (var) && ((tvar) = SLIST_NEXT((var), field), 1); \ 184 #define SLIST_FOREACH_FROM_SAFE(var, head, field, tvar) \ argument 186 (var) && ((tvar) = SLIST_NEXT((var), field), 1); \ 189 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument 192 (varp) = &SLIST_NEXT((var), field)) [all …]
|
| /lib/liblwip/ |
| D | CHANGELOG | 1515 * tcpip.h, tcpip.c, api.h, api_lib.c, api_msg.c, sockets.c: replace the field 1530 * tcpip.h, tcpip.c, api.h, api_lib.c, api_msg.c, sockets.c: replace the field 1695 option in socket API, and a new field "multicast_ip" in "struct udp_pcb" (for 1722 Use this new field to access to common pcb fields (ttl, tos, so_options, etc...). 1755 Initialize igmp_mac_filter to NULL in netif_add (this field should be set in 1756 the netif's "init" function). Use the "imr_interface" field (for socket layer) 1757 and/or the "interface" field (for netconn layer), for join/leave operations. 1759 This field could be a netif's ipaddr, or "any" (same meaning than ip_addr_isany). 1982 Warning, if you directly access to "fromaddr" & "fromport" field from netbuf struct, 2007 string, point on one of your's ethernetif field, or alloc a string you will free yourself). [all …]
|