ESP-IDF
outbox_t::list
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (4/5)...
Files
loading (4/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
outbox_t::list
outbox_t::list field
Syntax
Show:
Summary
Declaration
from
mqtt_outbox.c:28
struct
outbox_list_t
*
list
;
Examples
References
from
examples
Code
Location
Referrer
struct
outbox_list_t
*
list
;
mqtt_outbox.c:28
outbox
->
list
=
calloc
(
1
,
sizeof
(
struct
outbox_list_t
)
)
;
mqtt_outbox.c:35
outbox_init()
ESP_MEM_CHECK
(
TAG
,
outbox
->
list
,
{
free
(
outbox
)
;
return
NULL
;
}
)
;
mqtt_outbox.c:36
outbox_init()
STAILQ_INIT
(
outbox
->
list
)
;
mqtt_outbox.c:38
outbox_init()
STAILQ_INSERT_TAIL
(
outbox
->
list
,
item
,
next
)
;
mqtt_outbox.c:61
outbox_enqueue()
STAILQ_FOREACH
(
item
,
outbox
->
list
,
next
)
{
mqtt_outbox.c:70
outbox_get()
STAILQ_FOREACH
(
item
,
outbox
->
list
,
next
)
{
mqtt_outbox.c:81
outbox_dequeue()
STAILQ_FOREACH
(
item
,
outbox
->
list
,
next
)
{
mqtt_outbox.c:95
outbox_delete_item()
STAILQ_REMOVE
(
outbox
->
list
,
item
,
outbox_item
,
next
)
;
mqtt_outbox.c:97
outbox_delete_item()
STAILQ_FOREACH_SAFE
(
item
,
outbox
->
list
,
next
,
tmp
)
{
mqtt_outbox.c:122
outbox_delete()
STAILQ_REMOVE
(
outbox
->
list
,
item
,
outbox_item
,
next
)
;
mqtt_outbox.c:124
outbox_delete()
STAILQ_FOREACH
(
item
,
outbox
->
list
,
next
)
{
mqtt_outbox.c:168
outbox_delete_single_expired()
STAILQ_REMOVE
(
outbox
->
list
,
item
,
outbox_item
,
next
)
;
mqtt_outbox.c:170
outbox_delete_single_expired()
STAILQ_FOREACH_SAFE
(
item
,
outbox
->
list
,
next
,
tmp
)
{
mqtt_outbox.c:186
outbox_delete_expired()
STAILQ_REMOVE
(
outbox
->
list
,
item
,
outbox_item
,
next
)
;
mqtt_outbox.c:188
outbox_delete_expired()
STAILQ_FOREACH_SAFE
(
item
,
outbox
->
list
,
next
,
tmp
)
{
mqtt_outbox.c:207
outbox_delete_all_items()
STAILQ_REMOVE
(
outbox
->
list
,
item
,
outbox_item
,
next
)
;
mqtt_outbox.c:208
outbox_delete_all_items()
free
(
outbox
->
list
)
;
mqtt_outbox.c:217
outbox_destroy()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
outbox_t::list
is written by 1 function and is read by 10 functions:
outbox_init()
All items filtered out
outbox_t::list
outbox_init()
outbox_enqueue()
outbox_get()
outbox_dequeue()
outbox_delete_item()
outbox_delete()
outbox_delete_single_expired()
outbox_delete_expired()
outbox_delete_all_items()
outbox_destroy()
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