Home
last modified time | relevance | path

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

/external/syslinux/core/lwip/src/include/lwip/
Dmemp.h87 #define memp_malloc(type) mem_malloc(memp_sizes[type]) macro
104 #define memp_malloc(t) memp_malloc_fn((t), __FILE__, __LINE__) macro
106 void *memp_malloc(memp_t type);
/external/syslinux/core/lwip/src/api/
Dtcpip.c176 msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_INPKT); in tcpip_input()
211 msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_API); in tcpip_callback_with_block()
247 msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_API); in tcpip_timeout()
276 msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_API); in tcpip_untimeout()
Dnetbuf.c60 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF); in netbuf_new()
Dnetdb.c314 ai = (struct addrinfo *)memp_malloc(MEMP_NETDB); in lwip_getaddrinfo()
Dapi_msg.c107 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF); in recv_raw()
171 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF);
569 conn = (struct netconn *)memp_malloc(MEMP_NETCONN);
Dapi_lib.c468 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF); in netconn_recv()
/external/syslinux/core/lwip/src/core/snmp/
Dmsg_in.c184 vb = (struct snmp_varbind *)memp_malloc(MEMP_SNMP_VARBIND); in snmp_msg_get_event()
204 vb->value = memp_malloc(MEMP_SNMP_VALUE); in snmp_msg_get_event()
299 vb = (struct snmp_varbind *)memp_malloc(MEMP_SNMP_VARBIND); in snmp_msg_get_event()
320 vb->value = memp_malloc(MEMP_SNMP_VALUE); in snmp_msg_get_event()
1307 vb = (struct snmp_varbind *)memp_malloc(MEMP_SNMP_VARBIND); in snmp_varbind_alloc()
1321 vb->ident = (s32_t*)memp_malloc(MEMP_SNMP_VALUE); in snmp_varbind_alloc()
1345 vb->value = memp_malloc(MEMP_SNMP_VALUE); in snmp_varbind_alloc()
Dmib_structs.c160 ln = (struct mib_list_node *)memp_malloc(MEMP_SNMP_NODE); in snmp_mib_ln_alloc()
182 lrn = (struct mib_list_rootnode*)memp_malloc(MEMP_SNMP_ROOTNODE); in snmp_mib_lrn_alloc()
/external/syslinux/core/lwip/src/core/ipv4/
Dip_frag.c273 ipr = (struct ip_reassdata *)memp_malloc(MEMP_REASSDATA); in ip_reass_enqueue_new_datagram()
277 ipr = (struct ip_reassdata *)memp_malloc(MEMP_REASSDATA); in ip_reass_enqueue_new_datagram()
626 return (struct pbuf_custom_ref*)memp_malloc(MEMP_FRAG_PBUF); in ip_frag_alloc_pbuf_custom_ref()
Digmp.c329 group = (struct igmp_group *)memp_malloc(MEMP_IGMP_GROUP); in igmp_lookup_group()
/external/syslinux/core/lwip/src/core/
Dtcp.c509 lpcb = (struct tcp_pcb_listen *)memp_malloc(MEMP_TCP_PCB_LISTEN); in tcp_listen_with_backlog()
1084 cseg = (struct tcp_seg *)memp_malloc(MEMP_TCP_SEG); in tcp_seg_copy()
1185 pcb = (struct tcp_pcb *)memp_malloc(MEMP_TCP_PCB); in tcp_alloc()
1191 pcb = (struct tcp_pcb *)memp_malloc(MEMP_TCP_PCB); in tcp_alloc()
1197 pcb = (struct tcp_pcb *)memp_malloc(MEMP_TCP_PCB); in tcp_alloc()
Dpbuf.c217 p = (struct pbuf *)memp_malloc(MEMP_PBUF_POOL); in pbuf_alloc()
250 q = (struct pbuf *)memp_malloc(MEMP_PBUF_POOL); in pbuf_alloc()
304 p = (struct pbuf *)memp_malloc(MEMP_PBUF); in pbuf_alloc()
Draw.c341 pcb = (struct raw_pcb *)memp_malloc(MEMP_RAW_PCB); in raw_new()
Ddns.c331 entry = (struct local_hostlist_entry *)memp_malloc(MEMP_LOCALHOSTLIST); in dns_init_local()
426 entry = (struct local_hostlist_entry *)memp_malloc(MEMP_LOCALHOSTLIST); in dns_local_addhost()
Dtimers.c270 timeout = (struct sys_timeo *)memp_malloc(MEMP_SYS_TIMEOUT); in sys_timeout_debug()
Dmemp.c389 memp_malloc(memp_t type) in memp_malloc() function
Dmem.c99 element = (struct memp_malloc_helper*)memp_malloc(poolnr); in mem_malloc()
Dudp.c933 pcb = (struct udp_pcb *)memp_malloc(MEMP_UDP_PCB);
Dtcp_out.c161 if ((seg = (struct tcp_seg *)memp_malloc(MEMP_TCP_SEG)) == NULL) { in tcp_create_segment()
/external/syslinux/core/lwip/src/netif/
Detharp.c1054 new_entry = (struct etharp_q_entry *)memp_malloc(MEMP_ARP_QUEUE);
Dundiif.c1028 new_entry = memp_malloc(MEMP_ARP_QUEUE); in undiarp_query()
/external/syslinux/core/lwip/src/netif/ppp/
Dppp_oe.c148 sc = (struct pppoe_softc *)memp_malloc(MEMP_PPPOE_IF); in pppoe_create()
/external/syslinux/core/lwip/
DCHANGELOG1448 memp_malloc, and use a new MEMP_NUM_IGMP_GROUP option (see opt.h to define the
1642 Set it to 2 to also check every element in every pool each time memp_malloc()
1991 * memp.c: Fix bug #20478: memp_malloc returned NULL+MEMP_SIZE on failed
2169 * memp.c: checked in patch #5913: in memp_malloc() we can return memp as mem
2771 * memp_malloc(MEMP_API_MSG) could fail with multiple application