ESP-IDF
mem_region_::mem_block_head
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (1/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
mem_region_::mem_block_head
mem_region_::mem_block_head field
Syntax
Show:
Summary
Declaration
from
esp_mmu_map.c:95
TAILQ_HEAD
(
mem_block_head_
,
mem_block_
)
mem_block_head
;
Examples
References
from
examples
Code
Location
Referrer
TAILQ_HEAD
(
mem_block_head_
,
mem_block_
)
mem_block_head
;
//link head of allocated blocks within this region
esp_mmu_map.c:95
TAILQ_INIT
(
&
s_mmu_ctx
.
mem_regions
[
i
]
.
mem_block_head
)
;
esp_mmu_map.c:259
esp_mmu_map_init()
TAILQ_FOREACH
(
mem_block
,
&
region
->
mem_block_head
,
entries
)
{
esp_mmu_map.c:355
esp_mmu_paddr_find_caps()
if
(
mem_block
==
TAILQ_FIRST
(
&
region
->
mem_block_head
)
||
mem_block
==
TAILQ_LAST
(
&
region
->
mem_block_head
,
mem_block_head_
)
)
{
esp_mmu_map.c:356
esp_mmu_paddr_find_caps()
if
(
TAILQ_EMPTY
(
&
found_region
->
mem_block_head
)
)
{
esp_mmu_map.c:466
esp_mmu_map()
TAILQ_INSERT_HEAD
(
&
found_region
->
mem_block_head
,
dummy_head
,
entries
)
;
esp_mmu_map.c:475
esp_mmu_map()
TAILQ_INSERT_TAIL
(
&
found_region
->
mem_block_head
,
dummy_tail
,
entries
)
;
esp_mmu_map.c:485
esp_mmu_map()
TAILQ_FOREACH
(
mem_block
,
&
found_region
->
mem_block_head
,
entries
)
{
esp_mmu_map.c:496
esp_mmu_map()
uint32_t
last_end
=
TAILQ_FIRST
(
&
found_region
->
mem_block_head
)
->
laddr_end
;
esp_mmu_map.c:537
esp_mmu_map()
TAILQ_FOREACH
(
mem_block
,
&
found_region
->
mem_block_head
,
entries
)
{
esp_mmu_map.c:542
esp_mmu_map()
TAILQ_FOREACH
(
mem_block
,
&
region
->
mem_block_head
,
entries
)
{
esp_mmu_map.c:652
esp_mmu_unmap()
if
(
mem_block
==
TAILQ_FIRST
(
&
region
->
mem_block_head
)
||
mem_block
==
TAILQ_LAST
(
&
region
->
mem_block_head
,
mem_block_head_
)
)
{
esp_mmu_map.c:653
esp_mmu_unmap()
TAILQ_REMOVE
(
&
region
->
mem_block_head
,
found_block
,
entries
)
;
esp_mmu_map.c:674
esp_mmu_unmap()
TAILQ_FOREACH
(
mem_block
,
&
region
->
mem_block_head
,
entries
)
{
esp_mmu_map.c:704
esp_mmu_map_dump_mapped_blocks()
if
(
mem_block
!=
TAILQ_FIRST
(
&
region
->
mem_block_head
)
&&
mem_block
!=
TAILQ_LAST
(
&
region
->
mem_block_head
,
mem_block_head_
)
)
{
esp_mmu_map.c:705
esp_mmu_map_dump_mapped_blocks()
TAILQ_FOREACH
(
mem_block
,
&
region
->
mem_block_head
,
entries
)
{
esp_mmu_map.c:732
esp_mmu_map_dump_mapped_blocks_private()
if
(
mem_block
!=
TAILQ_FIRST
(
&
region
->
mem_block_head
)
&&
mem_block
!=
TAILQ_LAST
(
&
region
->
mem_block_head
,
mem_block_head_
)
)
{
esp_mmu_map.c:733
esp_mmu_map_dump_mapped_blocks_private()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
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