ESP-IDF
hash_map_bucket_t::list
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
hash_map_bucket_t::list
hash_map_bucket_t::list field
Syntax
Show:
Summary
Declaration
from
hash_map.c:27
list_t
*
list
;
Examples
References
from
examples
Code
Location
Referrer
list_t
*
list
;
hash_map.c:27
list_t
*
hash_bucket_list
=
hash_map
->
bucket
[
hash_key
]
.
list
;
hash_map.c:120
hash_map_has_key()
if
(
hash_map
->
bucket
[
hash_key
]
.
list
==
NULL
)
{
hash_map.c:133
hash_map_set()
hash_map
->
bucket
[
hash_key
]
.
list
=
list_new_internal
(
bucket_free_
)
;
hash_map.c:134
hash_map_set()
if
(
hash_map
->
bucket
[
hash_key
]
.
list
==
NULL
)
{
hash_map.c:135
hash_map_set()
list_t
*
hash_bucket_list
=
hash_map
->
bucket
[
hash_key
]
.
list
;
hash_map.c:139
hash_map_set()
list_t
*
hash_bucket_list
=
hash_map
->
bucket
[
hash_key
]
.
list
;
hash_map.c:168
hash_map_erase()
if
(
list_is_empty
(
hash_map
->
bucket
[
hash_key
]
.
list
)
)
{
hash_map.c:177
hash_map_erase()
list_free
(
hash_map
->
bucket
[
hash_key
]
.
list
)
;
hash_map.c:178
hash_map_erase()
hash_map
->
bucket
[
hash_key
]
.
list
=
NULL
;
hash_map.c:179
hash_map_erase()
list_t
*
hash_bucket_list
=
hash_map
->
bucket
[
hash_key
]
.
list
;
hash_map.c:190
hash_map_get()
if
(
hash_map
->
bucket
[
i
]
.
list
==
NULL
)
{
hash_map.c:205
hash_map_clear()
list_free
(
hash_map
->
bucket
[
i
]
.
list
)
;
hash_map.c:208
hash_map_clear()
hash_map
->
bucket
[
i
]
.
list
=
NULL
;
hash_map.c:209
hash_map_clear()
if
(
hash_map
->
bucket
[
i
]
.
list
==
NULL
)
{
hash_map.c:219
hash_map_foreach()
for
(
const
list_node_t
*
iter
=
list_begin
(
hash_map
->
bucket
[
i
]
.
list
)
;
hash_map.c:222
hash_map_foreach()
iter
!=
list_end
(
hash_map
->
bucket
[
i
]
.
list
)
;
hash_map.c:223
hash_map_foreach()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
hash_map_bucket_t::list
is written by 3 functions and is read by 6 functions:
hash_map_set()
hash_map_erase()
hash_map_clear()
All items filtered out
hash_map_bucket_t::list
hash_map_has_key()
hash_map_set()
hash_map_erase()
hash_map_get()
hash_map_clear()
hash_map_foreach()
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