ESP-IDF
multi_heap_info::heap_data
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
multi_heap_info::heap_data
multi_heap_info::heap_data field
Syntax
Show:
Summary
Declaration
from
multi_heap.c:83
void
*
heap_data
;
Examples
References
from
examples
Code
Location
Referrer
void
*
heap_data
;
multi_heap.c:83
pool_t
pool
=
tlsf_get_pool
(
heap
->
heap_data
)
;
multi_heap.c:113
assert_valid_block()
result
->
heap_data
=
tlsf_create_with_pool
(
start_ptr
+
sizeof
(
heap_t
)
,
size
,
max_bytes
)
;
multi_heap.c:145
multi_heap_register_impl()
if
(
!
result
->
heap_data
)
{
multi_heap.c:146
multi_heap_register_impl()
result
->
free_bytes
=
size
-
tlsf_size
(
result
->
heap_data
)
;
multi_heap.c:151
multi_heap_register_impl()
pool_t
pool
=
tlsf_get_pool
(
heap
->
heap_data
)
;
multi_heap.c:175
multi_heap_get_first_block()
void
*
result
=
tlsf_malloc
(
heap
->
heap_data
,
size
)
;
multi_heap.c:209
multi_heap_malloc_impl()
tlsf_free
(
heap
->
heap_data
,
p
)
;
multi_heap.c:233
multi_heap_free_impl()
void
*
result
=
tlsf_realloc
(
heap
->
heap_data
,
p
,
size
)
;
multi_heap.c:253
multi_heap_realloc_impl()
void
*
result
=
tlsf_memalign_offs
(
heap
->
heap_data
,
alignment
,
size
,
offset
)
;
multi_heap.c:285
multi_heap_aligned_alloc_impl_offs()
if
(
tlsf_check
(
heap
->
heap_data
)
)
{
multi_heap.c:344
multi_heap_check()
if
(
tlsf_check_pool
(
tlsf_get_pool
(
heap
->
heap_data
)
)
)
{
multi_heap.c:348
multi_heap_check()
tlsf_walk_pool
(
tlsf_get_pool
(
heap
->
heap_data
)
,
multi_heap_dump_tlsf
,
NULL
)
;
multi_heap.c:369
multi_heap_dump()
tlsf_walk_pool
(
tlsf_get_pool
(
heap
->
heap_data
)
,
multi_heap_get_info_tlsf
,
info
)
;
multi_heap.c:420
multi_heap_get_info_impl()
info
->
total_allocated_bytes
=
(
heap
->
pool_size
-
tlsf_size
(
heap
->
heap_data
)
)
-
heap
->
free_bytes
-
overhead
;
multi_heap.c:424
multi_heap_get_info_impl()
info
->
largest_free_block
=
tlsf_fit_size
(
heap
->
heap_data
,
info
->
largest_free_block
)
;
multi_heap.c:427
multi_heap_get_info_impl()
tlsf_walk_pool
(
tlsf_get_pool
(
heap
->
heap_data
)
,
walker_func
,
user_data
)
;
multi_heap.c:436
multi_heap_walk()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
multi_heap_info::heap_data
is written by 1 function and is read by 11 functions:
multi_heap_register_impl()
All items filtered out
multi_heap_info::heap_data
assert_valid_block()
multi_heap_register_impl()
multi_heap_get_first_block()
multi_heap_malloc_impl()
multi_heap_free_impl()
multi_heap_realloc_impl()
multi_heap_aligned_alloc_impl_offs()
multi_heap_check()
multi_heap_dump()
multi_heap_get_info_impl()
multi_heap_walk()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out