Home
last modified time | relevance | path

Searched refs:mem_malloc (Results 1 – 19 of 19) sorted by relevance

/btstack/3rd-party/lwip/core/src/include/lwip/apps/
H A Dsmtp_opts.h68 #define SMTP_STATE_MALLOC(size) mem_malloc(size)
/btstack/3rd-party/lwip/core/src/include/lwip/
H A Dmem.h74 void *mem_malloc(mem_size_t size);
/btstack/3rd-party/lwip/core/src/core/
H A Dmem.c207 mem_malloc(mem_size_t size) in mem_malloc() function
251 mem_malloc(mem_size_t size) in mem_malloc() function
831 mem_malloc(mem_size_t size_in) in mem_malloc() function
1010 p = mem_malloc((mem_size_t)alloc_size); in mem_calloc()
H A Dmemp.c254 memp = (struct memp *)mem_malloc(MEMP_SIZE + MEMP_ALIGN_SIZE(desc->size)); in do_memp_malloc_pool()
H A Dpbuf.c284 p = (struct pbuf *)mem_malloc(alloc_len); in pbuf_alloc()
/btstack/3rd-party/lwip/core/src/apps/altcp_tls/
H A Daltcp_tls_mbedtls_mem.c121 hlpr = (altcp_mbedtls_malloc_helper_t *)mem_malloc((mem_size_t)alloc_size); in tls_malloc()
/btstack/3rd-party/lwip/core/src/netif/
H A Dzepif.c226 struct zepif_state *state = (struct zepif_state *)mem_malloc(sizeof(struct zepif_state)); in zepif_init()
H A Dslipif.c373 priv = (struct slipif_priv *)mem_malloc(sizeof(struct slipif_priv)); in slipif_init()
H A Dlowpan6.c707 lrh = (struct lowpan6_reass_helper *) mem_malloc(sizeof(struct lowpan6_reass_helper)); in lowpan6_input()
/btstack/3rd-party/lwip/core/src/apps/http/
H A Dhttp_client.c537 req = (httpc_state_t*)mem_malloc((mem_size_t)alloc_len); in httpc_init_connection_common()
733 filestate = (httpc_filestate_t *)mem_malloc((mem_size_t)alloc_len); in httpc_fs_init()
H A Daltcp_proxyconnect.c137 buffer = (char *)mem_malloc(alloc_len); in altcp_proxyconnect_send_request()
H A Dhttpd.c300 #define HTTP_ALLOC_HTTP_STATE() (struct http_state *)mem_malloc(sizeof(struct http_state))
303 #define HTTP_ALLOC_SSI_STATE() (struct http_ssi_state *)mem_malloc(sizeof(struct http_ssi_state))
1135 hs->buf = (char *)mem_malloc((mem_size_t)count);
/btstack/3rd-party/lwip/core/src/netif/ppp/
H A Dpppoe.c530 sc->sc_hunique = mem_malloc(hunique_len); in pppoe_disc_input()
568 sc->sc_hunique = mem_malloc(hunique_len); in pppoe_disc_input()
/btstack/3rd-party/lwip/core/src/core/ipv6/
H A Ddhcp6.c222 dhcp6 = (struct dhcp6 *)mem_malloc(sizeof(struct dhcp6)); in dhcp6_get_struct()
/btstack/3rd-party/lwip/core/src/apps/lwiperf/
H A Dlwiperf.c78 #define LWIPERF_ALLOC(type) mem_malloc(sizeof(type))
/btstack/3rd-party/lwip/core/
H A DUPGRADING243 with user-allocated structs instead of calling mem_malloc
H A DCHANGELOG1492 * mem.c: fixed bug #33545: With MEM_USE_POOLS==1, mem_malloc can return an
1634 and dhcp work with user-allocated structs instead of callin mem_malloc
1677 the need for mem_malloc from dhcp_recv and makes it possible to
2364 * opt.h, memp.h/.c: added MEMP_MEM_MALLOC to use mem_malloc/mem_free instead
2384 mem_free to run between mem_malloc iterations. Added illegal counter for
2935 * igmp.h, igmp.c, memp_std.h, memp.c, init.c, opt.h: Replace mem_malloc call by
2997 mempools for mem_malloc.
3158 * mem.h: If MEM_LIBC_MALLOC==1, allow the defines (e.g. mem_malloc() -> malloc())
3289 * pbuf.c, ppp.c: Fix warnings on some systems with mem_malloc.
/btstack/3rd-party/lwip/core/src/apps/smtp/
H A Dsmtp.c165 #define SMTP_BODYDH_MALLOC(size) mem_malloc(size)
/btstack/3rd-party/lwip/core/src/core/ipv4/
H A Ddhcp.c775 dhcp = (struct dhcp *)mem_malloc(sizeof(struct dhcp)); in dhcp_start()