ESP-IDF
list_node_t::next
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (3/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
list_node_t::next
list_node_t::next field
Syntax
Show:
Summary
Declaration
from
list.c:8
struct
list_node_t
*
next
;
Examples
References
from
examples
Code
Location
Referrer
struct
list_node_t
*
next
;
list.c:8
node
->
next
=
prev_node
->
next
;
list.c:123
list_insert_after()
prev_node
->
next
=
node
;
list.c:125
list_insert_after()
node
->
next
=
list
->
head
;
list.c:142
list_prepend()
node
->
next
=
NULL
;
list.c:161
list_append()
list
->
tail
->
next
=
node
;
list.c:167
list_append()
for
(
list_node_t
*
prev
=
list
->
head
,
*
node
=
list
->
head
->
next
;
node
;
prev
=
node
,
node
=
node
->
next
)
list.c:192
list_remove()
prev
->
next
=
list_free_node
(
list
,
node
)
;
list.c:194
list_remove()
for
(
list_node_t
*
prev
=
list
->
head
,
*
node
=
list
->
head
->
next
;
node
;
prev
=
node
,
node
=
node
->
next
)
list.c:222
list_delete()
prev
->
next
=
list_delete_node
(
list
,
node
)
;
list.c:224
list_delete()
list_node_t
*
next
=
node
->
next
;
list.c:251
list_foreach()
return
node
->
next
;
list.c:275
list_next()
list_node_t
*
next
=
node
->
next
;
list.c:289
list_free_node()
list_node_t
*
next
=
node
->
next
;
list.c:306
list_delete_node()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
list_node_t::next
is written by 5 functions and is read by 7 functions:
list_insert_after()
list_prepend()
list_append()
list_remove()
list_delete()
All items filtered out
list_node_t::next
list_insert_after()
list_remove()
list_delete()
list_foreach()
list_next()
list_free_node()
list_delete_node()
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