Home
last modified time | relevance | path

Searched refs:memp_malloc (Results 1 – 25 of 29) sorted by relevance

12

/AliOS-Things-master/components/lwip/lwip2.0.0/api/
A Dtcpip.c185 msg = (struct tcpip_msg *)memp_malloc(MEMP_NETIF_DRV_MSG); in tcpip_signal_netif_event()
225 msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_INPKT); in tcpip_inpkt()
291 msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_API); in tcpip_callback_with_block()
326 msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_API); in tcpip_timeout()
353 msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_API); in tcpip_untimeout()
468 struct tcpip_msg *msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_API); in tcpip_callbackmsg_new()
A Dnetbuf.c67 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF); in netbuf_new()
A Dnetdb.c369 ai = (struct addrinfo *)memp_malloc(MEMP_NETDB); in lwip_getaddrinfo()
A Dapi_msg.c128 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF); in recv_raw()
192 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF);
639 conn = (struct netconn *)memp_malloc(MEMP_NETCONN);
A Dapi_lib.c632 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF); in netconn_recv()
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/
A Dmemp.h143 #define memp_malloc(t) memp_malloc_fn((t), __FILE__, __LINE__) macro
145 void *memp_malloc(memp_t type);
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/
A Dmemp.h143 #define memp_malloc(t) memp_malloc_fn((t), __FILE__, __LINE__) macro
145 void *memp_malloc(memp_t type);
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/priv/
A Dtcpip_priv.h59 name = (type *)memp_malloc(pool); \
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/priv/
A Dtcpip_priv.h59 name = (type *)memp_malloc(pool); \
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv6/
A Dip6_frag.c308 ipr = (struct ip6_reassdata *)memp_malloc(MEMP_IP6_REASSDATA); in ip6_reass()
313 ipr = (struct ip6_reassdata *)memp_malloc(MEMP_IP6_REASSDATA); in ip6_reass()
617 return (struct pbuf_custom_ref*)memp_malloc(MEMP_FRAG_PBUF); in ip6_frag_alloc_pbuf_custom_ref()
A Dmld6.c167 group = (struct mld_group *)memp_malloc(MEMP_MLD6_GROUP); in mld6_new_group()
A Dnd6.c1738 new_entry = (struct nd6_q_entry *)memp_malloc(MEMP_ND6_QUEUE); in nd6_queue_packet()
1745 new_entry = (struct nd6_q_entry *)memp_malloc(MEMP_ND6_QUEUE); in nd6_queue_packet()
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv4/
A Dip4_frag.c282 ipr = (struct ip_reassdata *)memp_malloc(MEMP_REASSDATA); in ip_reass_enqueue_new_datagram()
286 ipr = (struct ip_reassdata *)memp_malloc(MEMP_REASSDATA); in ip_reass_enqueue_new_datagram()
646 return (struct pbuf_custom_ref*)memp_malloc(MEMP_FRAG_PBUF); in ip_frag_alloc_pbuf_custom_ref()
A Digmp.c257 group = (struct igmp_group *)memp_malloc(MEMP_IGMP_GROUP); in igmp_lookup_group()
A Detharp.c1076 new_entry = (struct etharp_q_entry *)memp_malloc(MEMP_ARP_QUEUE);
/AliOS-Things-master/components/lwip/lwip2.0.0/core/
A Dtcp.c670 lpcb = (struct tcp_pcb_listen *)memp_malloc(MEMP_TCP_PCB_LISTEN); in tcp_listen_with_backlog()
1425 cseg = (struct tcp_seg *)memp_malloc(MEMP_TCP_SEG); in tcp_seg_copy()
1557 pcb = (struct tcp_pcb *)memp_malloc(MEMP_TCP_PCB); in tcp_alloc()
1563 pcb = (struct tcp_pcb *)memp_malloc(MEMP_TCP_PCB); in tcp_alloc()
1569 pcb = (struct tcp_pcb *)memp_malloc(MEMP_TCP_PCB); in tcp_alloc()
1575 pcb = (struct tcp_pcb *)memp_malloc(MEMP_TCP_PCB); in tcp_alloc()
1581 pcb = (struct tcp_pcb *)memp_malloc(MEMP_TCP_PCB); in tcp_alloc()
A Dpbuf.c321 p = (struct pbuf *)memp_malloc(pbuf_pool_small ? MEMP_PBUF_POOL_SMALL : MEMP_PBUF_POOL); in pbuf_alloc_ext()
323 p = (struct pbuf *)memp_malloc(MEMP_PBUF_POOL); in pbuf_alloc_ext()
384 q = (struct pbuf *)memp_malloc(MEMP_PBUF_POOL); in pbuf_alloc_ext()
442 p = (struct pbuf *)memp_malloc(MEMP_PBUF); in pbuf_alloc_ext()
A Dtimeouts.c210 timeout = (struct sys_timeo *)memp_malloc(MEMP_SYS_TIMEOUT); in sys_timeout_debug()
A Draw.c451 pcb = (struct raw_pcb *)memp_malloc(MEMP_RAW_PCB); in raw_new()
A Dmemp.c382 memp_malloc(memp_t type) in memp_malloc() function
A Dmem.c173 element = (struct memp_malloc_helper*)memp_malloc(poolnr); in mem_malloc()
A Ddns.c462 entry = (struct local_hostlist_entry *)memp_malloc(MEMP_LOCALHOSTLIST); in dns_init_local()
572 entry = (struct local_hostlist_entry *)memp_malloc(MEMP_LOCALHOSTLIST); in dns_local_addhost()
A Daf_packet.c997 msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_INPKT); in packet_input()
A Dudp.c1130 pcb = (struct udp_pcb *)memp_malloc(MEMP_UDP_PCB); in udp_new()
/AliOS-Things-master/components/py_engine/adapter/haas/
A Dmodsocket.c185 struct addrinfo *ai = memp_malloc(MEMP_NETDB); in _socket_getaddrinfo3()

Completed in 38 milliseconds

12