Searched refs:mem_malloc (Results 1 – 14 of 14) sorted by relevance
| /lib/liblwip/src/include/lwip/ |
| D | mem.h | 56 #ifndef mem_malloc 57 #define mem_malloc malloc macro 91 void *mem_malloc(mem_size_t size);
|
| D | memp.h | 87 #define memp_malloc(type) mem_malloc(memp_sizes[type])
|
| /lib/liblwip/test/unit/core/ |
| D | test_mem.c | 44 p1 = mem_malloc(SIZE1); in START_TEST() 49 p2 = mem_malloc(SIZE2); in START_TEST()
|
| /lib/liblwip/src/core/ |
| D | mem.c | 79 mem_malloc(mem_size_t size) in mem_malloc() function 494 mem_malloc(mem_size_t size) in mem_malloc() function 651 p = mem_malloc(count * size); in mem_calloc()
|
| D | pbuf.c | 308 …p = (struct pbuf*)mem_malloc(LWIP_MEM_ALIGN_SIZE(SIZEOF_STRUCT_PBUF + offset) + LWIP_MEM_ALIGN_SIZ… in pbuf_alloc()
|
| D | dhcp.c | 656 dhcp = (struct dhcp *)mem_malloc(sizeof(struct dhcp)); in dhcp_start()
|
| /lib/liblwip/src/netif/ |
| D | ethernetif.c | 281 ethernetif = mem_malloc(sizeof(struct ethernetif));
|
| D | slipif.c | 326 priv = (struct slipif_priv *)mem_malloc(sizeof(struct slipif_priv)); in slipif_init()
|
| /lib/liblwip/src/arch/ |
| D | etherif.c | 325 ethernetif = mem_malloc(sizeof(struct ethernetif)); in ethernetif_init()
|
| /lib/liblwip/doc/ |
| D | sys_arch.txt | 212 Be carefull with using mem_malloc() in sys_arch. When malloc() refers to 213 mem_malloc() you can run into a circular function call problem. In mem.c 214 mem_init() tries to allcate a semaphore using mem_malloc, which of course 215 can't be performed when sys_arch uses mem_malloc.
|
| /lib/liblwip/src/core/ipv4/ |
| D | autoip.c | 308 autoip = (struct autoip *)mem_malloc(sizeof(struct autoip)); in autoip_start()
|
| /lib/liblwip/ |
| D | UPGRADING | 109 with user-allocated structs instead of calling mem_malloc
|
| D | CHANGELOG | 303 * mem.c: fixed bug #33545: With MEM_USE_POOLS==1, mem_malloc can return an 445 and dhcp work with user-allocated structs instead of callin mem_malloc 488 the need for mem_malloc from dhcp_recv and makes it possible to 1175 * opt.h, memp.h/.c: added MEMP_MEM_MALLOC to use mem_malloc/mem_free instead 1195 mem_free to run between mem_malloc iterations. Added illegal counter for 1746 * igmp.h, igmp.c, memp_std.h, memp.c, init.c, opt.h: Replace mem_malloc call by 1808 mempools for mem_malloc. 1969 * mem.h: If MEM_LIBC_MALLOC==1, allow the defines (e.g. mem_malloc() -> malloc()) 2100 * pbuf.c, ppp.c: Fix warnings on some systems with mem_malloc.
|
| /lib/liblwip/src/netif/ppp/ |
| D | ppp_oe.c | 439 sc->sc_hunique = mem_malloc(hunique_len); in pppoe_dispatch_disc_pkt() 477 sc->sc_hunique = mem_malloc(hunique_len); in pppoe_dispatch_disc_pkt()
|