ESP-IDF
fixed_queue_t::list
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (2/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
fixed_queue_t::list
fixed_queue_t::list field
Syntax
Show:
Summary
Declaration
from
fixed_queue.c:28
list_t
*
list
;
Examples
References
from
examples
Code
Location
Referrer
list_t
*
list
;
fixed_queue.c:28
ret
->
list
=
list_new
(
NULL
)
;
fixed_queue.c:48
fixed_queue_new()
if
(
!
ret
->
list
)
{
fixed_queue.c:49
fixed_queue_new()
for
(
node
=
list_begin
(
queue
->
list
)
;
node
!=
list_end
(
queue
->
list
)
;
node
=
list_next
(
node
)
)
{
fixed_queue.c:82
fixed_queue_free()
list_free
(
queue
->
list
)
;
fixed_queue.c:87
fixed_queue_free()
is_empty
=
list_is_empty
(
queue
->
list
)
;
fixed_queue.c:103
fixed_queue_is_empty()
length
=
list_length
(
queue
->
list
)
;
fixed_queue.c:118
fixed_queue_length()
status
=
list_append
(
queue
->
list
,
data
)
;
//Check whether enqueued success
fixed_queue.c:142
fixed_queue_enqueue()
ret
=
list_front
(
queue
->
list
)
;
fixed_queue.c:162
fixed_queue_dequeue()
list_remove
(
queue
->
list
,
ret
)
;
fixed_queue.c:163
fixed_queue_dequeue()
ret
=
list_is_empty
(
queue
->
list
)
?
NULL
:
list_front
(
queue
->
list
)
;
fixed_queue.c:180
fixed_queue_try_peek_first()
ret
=
list_is_empty
(
queue
->
list
)
?
NULL
:
list_back
(
queue
->
list
)
;
fixed_queue.c:195
fixed_queue_try_peek_last()
if
(
list_contains
(
queue
->
list
,
data
)
&&
fixed_queue.c:210
fixed_queue_try_remove_from_queue()
removed
=
list_remove
(
queue
->
list
,
data
)
;
fixed_queue.c:212
fixed_queue_try_remove_from_queue()
return
queue
->
list
;
fixed_queue.c:231
fixed_queue_get_list()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
fixed_queue_t::list
is written by 1 function and is read by 10 functions:
fixed_queue_new()
All items filtered out
fixed_queue_t::list
fixed_queue_new()
fixed_queue_free()
fixed_queue_is_empty()
fixed_queue_length()
fixed_queue_enqueue()
fixed_queue_dequeue()
fixed_queue_try_peek_first()
fixed_queue_try_peek_last()
fixed_queue_try_remove_from_queue()
fixed_queue_get_list()
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