Home
last modified time | relevance | path

Searched defs:pcb (Results 1 – 25 of 26) sorted by relevance

12

/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/
Dudp.h163 #define udp_flags(pcb) ((pcb)->flags) argument
164 #define udp_setflags(pcb, f) ((pcb)->flags = (u8_t)(f)) argument
167 #define udp_getpriority(pcb) ((pcb)->priority) argument
180 #define udp_set_multicast_netif_addr(pcb, ip4addr) ip4_addr_copy((pcb)->mcast_ip4, *(ip4addr)) argument
181 #define udp_get_multicast_netif_addr(pcb) (&(pcb)->mcast_ip4) argument
183 #define udp_set_multicast_netif_index(pcb, idx) ((pcb)->mcast_ifindex = (idx)) argument
184 #define udp_get_multicast_netif_index(pcb) ((pcb)->mcast_ifindex) argument
185 #define udp_set_multicast_ttl(pcb, value) ((pcb)->mcast_ttl = (value)) argument
186 #define udp_get_multicast_ttl(pcb) ((pcb)->mcast_ttl) argument
Draw.h152 #define raw_getpriority(pcb) ((pcb)->priority) argument
170 #define raw_flags(pcb) ((pcb)->flags) argument
171 #define raw_setflags(pcb,f) ((pcb)->flags = (f)) argument
173 #define raw_set_flags(pcb, set_flags) do { (pcb)->flags = (u8_t)((pcb)->flags | (set_… argument
174 #define raw_clear_flags(pcb, clr_flags) do { (pcb)->flags = (u8_t)((pcb)->flags & (u8_t)… argument
175 #define raw_is_flag_set(pcb, flag) (((pcb)->flags & (flag)) != 0) argument
191 #define raw_set_multicast_netif_index(pcb, idx) ((pcb)->mcast_ifindex = (idx)) argument
192 #define raw_get_multicast_netif_index(pcb) ((pcb)->mcast_ifindex) argument
193 #define raw_set_multicast_ttl(pcb, value) ((pcb)->mcast_ttl = (value)) argument
194 #define raw_get_multicast_ttl(pcb) ((pcb)->mcast_ttl) argument
Dtcp.h146 #define RCV_WND_SCALE(pcb, wnd) (((wnd) >> (pcb)->rcv_scale)) argument
148 #define SND_WND_SCALE(pcb, wnd) (((tcpwnd_size_t)(wnd) << (pcb)->snd_scale)) argument
150 #define ACTUAL_WND_SIZE(pcb, wnd) ((tcpwnd_size_t)((wnd) >> (pcb)->rcv_scale) << (pcb)->rcv_scale) argument
154 #define TCP_WND_MAX(pcb) ((tcpwnd_size_t)(((pcb)->flags & TF_WND_SCALE) ? TCP_WND : TCPWND16… argument
156 #define RCV_WND_SCALE(pcb, wnd) (wnd) argument
157 #define SND_WND_SCALE(pcb, wnd) (wnd) argument
159 #define TCP_WND_MAX(pcb) TCP_WND argument
206 #define TCP_CALC_SSTHRESH(pcb, ssthresh, wnd, mss) do { \ argument
726 #define tcp_mss(pcb) (((pcb)->flags & TF_TIMESTAMP) ? ((pcb)->mss - 12) : (pc… argument
728 #define tcp_mss(pcb) ((pcb)->mss) argument
[all …]
Dip.h263 #define ip_get_option(pcb, opt) ((pcb)->so_options & (opt)) argument
265 #define ip_set_option(pcb, opt) ((pcb)->so_options |= (opt)) argument
267 #define ip_reset_option(pcb, opt) ((pcb)->so_options &= (u8_t)~(opt)) argument
275 #define ip_output(p, src, dest, ttl, tos, proto, pcb) \ argument
Dsnmp.h191 #define mib2_udp_bind(pcb) argument
192 #define mib2_udp_unbind(pcb) argument
Dopt.h1681 #define TCP_OOSEQ_BYTES_LIMIT(pcb) TCP_OOSEQ_MAX_BYTES argument
1683 #define TCP_OOSEQ_BYTES_LIMIT(pcb) argument
1704 #define TCP_OOSEQ_PBUFS_LIMIT(pcb) TCP_OOSEQ_MAX_PBUFS argument
1706 #define TCP_OOSEQ_PBUFS_LIMIT(pcb) argument
3548 #define LWIP_HOOK_TCP_INPACKET_PCB(pcb, hdr, optlen, opt1len, opt2, p) argument
3570 #define LWIP_HOOK_TCP_OUT_TCPOPT_LENGTH(pcb, internal_len) argument
3594 #define LWIP_HOOK_TCP_OUT_ADD_TCPOPTS(p, hdr, pcb, opts) argument
Dip_addr.h109 #define IP_ADDR_PCB_VERSION_MATCH_EXACT(pcb, ipaddr) (IP_GET_TYPE(&pcb->local_ip) == IP_GET_TYPE(ip… argument
110 #define IP_ADDR_PCB_VERSION_MATCH(pcb, ipaddr) (IP_IS_ANY_TYPE_VAL(pcb->local_ip) || \ argument
289 #define IP_ADDR_PCB_VERSION_MATCH(addr, pcb) 1 argument
290 #define IP_ADDR_PCB_VERSION_MATCH_EXACT(pcb, ipaddr) 1 argument
Ddhcp6.h91 struct udp_pcb *pcb; member
Ddhcp.h262 struct udp_pcb *pcb; member
Dapi.h266 } pcb; member
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/priv/
Dtcp_priv.h221 #define TCP_EVENT_ACCEPT(lpcb, pcb, arg, err, ret) ret = lwip_tcp_event(arg, (pcb), \ argument
223 #define TCP_EVENT_SENT(pcb, space, ret) ret = lwip_tcp_event((pcb)->callback_arg, (pcb), \ argument
225 #define TCP_EVENT_RECV(pcb, p, err, ret) ret = lwip_tcp_event((pcb)->callback_arg, (pcb), \ argument
227 #define TCP_EVENT_CLOSED(pcb, ret) ret = lwip_tcp_event((pcb)->callback_arg, (pcb), \ argument
229 #define TCP_EVENT_CONNECTED(pcb, err, ret) ret = lwip_tcp_event((pcb)->callback_arg, (pcb), \ argument
231 #define TCP_EVENT_POLL(pcb, ret) \ argument
244 #define TCP_EVENT_ACCEPT(lpcb, pcb, arg, err, ret) \ argument
253 #define TCP_EVENT_SENT(pcb, space, ret) \ argument
262 #define TCP_EVENT_RECV(pcb, p, err, ret) \ argument
271 #define TCP_EVENT_CLOSED(pcb, ret) \ argument
[all …]
/device/soc/winnermicro/wm800/board/src/network/api2.0.3/
Dtls_netconn.c168 static err_t net_tcp_poll_cb(void *arg, struct tcp_pcb *pcb) in net_tcp_poll_cb()
176 struct tcp_pcb *pcb = NULL; in net_tcp_err_cb() local
248 static err_t net_tcp_recv_cb(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err) in net_tcp_recv_cb()
256 static err_t net_tcp_connect_cb(void *arg, struct tcp_pcb *pcb, err_t err) in net_tcp_connect_cb()
315 struct tcp_pcb *pcb = NULL; in net_skt_tcp_send() local
Dtls_netconn.h51 } pcb; member
84 void *pcb; member
/device/soc/esp/esp32/components/esp_netif/lwip/
Desp_netif_lwip_ppp.c51 static void on_ppp_status_changed(ppp_pcb *pcb, int err_code, void *ctx) in on_ppp_status_changed()
185 static void on_ppp_notify_phase(ppp_pcb *pcb, u8_t phase, void *ctx) in on_ppp_notify_phase()
238 static uint32_t pppos_low_level_output(ppp_pcb *pcb, uint8_t *data, uint32_t len, void *netif) in pppos_low_level_output()
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/include/adapt/
Dhi_math_adapt.h175 __inline static hi_void rgb2_yc(hi_u16 r, hi_u16 g, hi_u16 b, hi_u16 *py, hi_u16 *pcb, hi_u16 *pcr) in rgb2_yc()
196 __inline static hi_void rgb2_yc_full(hi_u16 r, hi_u16 g, hi_u16 b, hi_u16 *py, hi_u16 *pcb, hi_u16 … in rgb2_yc_full()
222 __inline static hi_void rgb2_yc_8_bit(hi_u8 r, hi_u8 g, hi_u8 b, hi_u8 *py, hi_u8 *pcb, hi_u8 *pcr) in rgb2_yc_8_bit()
243 __inline static hi_void rgb2_yc_full_8_bit(hi_u8 r, hi_u8 g, hi_u8 b, hi_u8 *py, hi_u8 *pcb, hi_u8 … in rgb2_yc_full_8_bit()
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/include/
Dhi_math.h179 __inline static HI_VOID Rgb2Yc(HI_U16 r, HI_U16 g, HI_U16 b, HI_U16 *py, HI_U16 *pcb, HI_U16 *pcr) in Rgb2Yc()
200 __inline static HI_VOID Rgb2Yc_full(HI_U16 r, HI_U16 g, HI_U16 b, HI_U16 *py, HI_U16 *pcb, HI_U16 *… in Rgb2Yc_full()
226 __inline static HI_VOID Rgb2Yc_8BIT(HI_U8 r, HI_U8 g, HI_U8 b, HI_U8 *py, HI_U8 *pcb, HI_U8 *pcr) in Rgb2Yc_8BIT()
247 __inline static HI_VOID Rgb2Yc_full_8BIT(HI_U8 r, HI_U8 g, HI_U8 b, HI_U8 *py, HI_U8 *pcb, HI_U8 *p… in Rgb2Yc_full_8BIT()
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/
Dhi_math.h176 __inline static HI_VOID Rgb2Yc(HI_U16 r, HI_U16 g, HI_U16 b, HI_U16 *py, HI_U16 *pcb, HI_U16 *pcr) in Rgb2Yc()
197 __inline static HI_VOID Rgb2Yc_full(HI_U16 r, HI_U16 g, HI_U16 b, HI_U16 *py, HI_U16 *pcb, HI_U16 *… in Rgb2Yc_full()
223 __inline static HI_VOID Rgb2Yc_8BIT(HI_U8 r, HI_U8 g, HI_U8 b, HI_U8 *py, HI_U8 *pcb, HI_U8 *pcr) in Rgb2Yc_8BIT()
244 __inline static HI_VOID Rgb2Yc_full_8BIT(HI_U8 r, HI_U8 g, HI_U8 b, HI_U8 *py, HI_U8 *pcb, HI_U8 *p… in Rgb2Yc_full_8BIT()
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/adapt/
Dhi_math_adapt.h172 __inline static hi_void rgb2_yc(hi_u16 r, hi_u16 g, hi_u16 b, hi_u16 *py, hi_u16 *pcb, hi_u16 *pcr) in rgb2_yc()
193 __inline static hi_void rgb2_yc_full(hi_u16 r, hi_u16 g, hi_u16 b, hi_u16 *py, hi_u16 *pcb, hi_u16 … in rgb2_yc_full()
219 __inline static hi_void rgb2_yc_8_bit(hi_u8 r, hi_u8 g, hi_u8 b, hi_u8 *py, hi_u8 *pcb, hi_u8 *pcr) in rgb2_yc_8_bit()
240 __inline static hi_void rgb2_yc_full_8_bit(hi_u8 r, hi_u8 g, hi_u8 b, hi_u8 *py, hi_u8 *pcb, hi_u8 … in rgb2_yc_full_8_bit()
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/adapt/
Dhi_math_adapt.h172 __inline static hi_void rgb2_yc(hi_u16 r, hi_u16 g, hi_u16 b, hi_u16 *py, hi_u16 *pcb, hi_u16 *pcr) in rgb2_yc()
193 __inline static hi_void rgb2_yc_full(hi_u16 r, hi_u16 g, hi_u16 b, hi_u16 *py, hi_u16 *pcb, hi_u16 … in rgb2_yc_full()
219 __inline static hi_void rgb2_yc_8_bit(hi_u8 r, hi_u8 g, hi_u8 b, hi_u8 *py, hi_u8 *pcb, hi_u8 *pcr) in rgb2_yc_8_bit()
240 __inline static hi_void rgb2_yc_full_8_bit(hi_u8 r, hi_u8 g, hi_u8 b, hi_u8 *py, hi_u8 *pcb, hi_u8 … in rgb2_yc_full_8_bit()
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/
Dhi_math.h178 __inline static HI_VOID Rgb2Yc(HI_U16 r, HI_U16 g, HI_U16 b, HI_U16 *py, HI_U16 *pcb, HI_U16 *pcr) in Rgb2Yc()
199 __inline static HI_VOID Rgb2Yc_full(HI_U16 r, HI_U16 g, HI_U16 b, HI_U16 *py, HI_U16 *pcb, HI_U16 *… in Rgb2Yc_full()
225 __inline static HI_VOID Rgb2Yc_8BIT(HI_U8 r, HI_U8 g, HI_U8 b, HI_U8 *py, HI_U8 *pcb, HI_U8 *pcr) in Rgb2Yc_8BIT()
246 __inline static HI_VOID Rgb2Yc_full_8BIT(HI_U8 r, HI_U8 g, HI_U8 b, HI_U8 *py, HI_U8 *pcb, HI_U8 *p… in Rgb2Yc_full_8BIT()
/device/soc/esp/esp32/components/esp_lwip/port/include/lwip/
Dopt.h1390 #define TCP_OOSEQ_BYTES_LIMIT(pcb) TCP_OOSEQ_MAX_BYTES argument
1392 #define TCP_OOSEQ_BYTES_LIMIT(pcb) argument
1413 #define TCP_OOSEQ_PBUFS_LIMIT(pcb) TCP_OOSEQ_MAX_PBUFS argument
1415 #define TCP_OOSEQ_PBUFS_LIMIT(pcb) argument
2839 #define LWIP_HOOK_TCP_INPACKET_PCB(pcb, hdr, optlen, opt1len, opt2, p) argument
2861 #define LWIP_HOOK_TCP_OUT_TCPOPT_LENGTH(pcb, internal_len) argument
2885 #define LWIP_HOOK_TCP_OUT_ADD_TCPOPTS(p, hdr, pcb, opts) argument
/device/soc/winnermicro/wm800/board/src/app/wm_atcmd/
Dwm_rmms.c61 static void rmms_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16 po… in rmms_recv()
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/libcoap/include/coap2/
Dcoap_io.h56 struct udp_pcb *pcb; member
/device/soc/chipsea/cst85/liteos_m/sdk/modules/lwip-2.1/dhcps/
Ddhcps.c372 static void dhcpRecv(void* arg, struct udp_pcb* pcb, struct pbuf* p, const ip_addr_t* addr, u16_t p… in dhcpRecv()
/device/soc/esp/esp32/components/esp_lwip/apps/
Ddhcpserver.c955 struct udp_pcb *pcb, in handle_dhcp()

12