Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:memp_pools
(Results
1 - 6
of
6
) sorted by relevance
/third_party/lwip/src/core/
H
A
D
memp.c
81
const struct memp_desc *const
memp_pools
[MEMP_MAX] = {
variable
157
p = (struct memp *)LWIP_MEM_ALIGN(
memp_pools
[i]->base);
in memp_overflow_check_all()
158
for (j = 0; j <
memp_pools
[i]->num; ++j) {
in memp_overflow_check_all()
159
memp_overflow_check_element(p,
memp_pools
[i]);
in memp_overflow_check_all()
160
p = LWIP_ALIGNMENT_CAST(struct memp *, ((u8_t *)p + MEMP_SIZE +
memp_pools
[i]->size + MEM_SANITY_REGION_AFTER_ALIGNED));
in memp_overflow_check_all()
229
for (i = 0; i < LWIP_ARRAYSIZE(
memp_pools
); i++) {
in memp_init()
230
memp_init_pool(
memp_pools
[i]);
in memp_init()
233
lwip_stats.memp[i] =
memp_pools
[i]->stats;
in memp_init()
350
memp = do_memp_malloc_pool(
memp_pools
[type]);
in memp_malloc()
352
memp = do_memp_malloc_pool_fn(
memp_pools
[typ
in memp_malloc()
[all...]
H
A
D
mem.c
261
if (required_size <=
memp_pools
[poolnr]->size) {
in mem_malloc()
295
memset((u8_t *)ret + size, 0xcd,
memp_pools
[poolnr]->size - size);
in mem_malloc()
328
hmem->size <=
memp_pools
[hmem->poolnr]->size);
in mem_free()
330
for (i = hmem->size; i <
memp_pools
[hmem->poolnr]->size; i++) {
in mem_free()
/third_party/libcoap/include/coap3/
H
A
D
coap_mem.h
141
(((asize) <=
memp_pools
[MEMP_ ## type]->size) ? \
147
((p) ? ((asize) <=
memp_pools
[MEMP_ ## type]->size) ? (p) : NULL : coap_malloc_type(type, asize))
/third_party/libcoap/src/
H
A
D
coap_io_lwip.c
39
memp_pools
[i]->stats->name,
memp_pools
[i]->stats->avail,
in coap_lwip_dump_memory_pools()
40
memp_pools
[i]->stats->used,
memp_pools
[i]->stats->max,
in coap_lwip_dump_memory_pools()
41
memp_pools
[i]->stats->err);
in coap_lwip_dump_memory_pools()
H
A
D
coap_pdu.c
108
if (
memp_pools
[MEMP_COAP_PDU]->stats->used + 1 >=
in coap_pdu_init()
109
memp_pools
[MEMP_COAP_PDU]->stats->avail) {
in coap_pdu_init()
110
memp_pools
[MEMP_COAP_PDU]->stats->err++;
in coap_pdu_init()
/third_party/lwip/src/include/lwip/
H
A
D
memp.h
61
extern const struct memp_desc* const
memp_pools
[MEMP_MAX];
Completed in 6 milliseconds