threadx
txfr_queue::p_mem
is only used within threadx.
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
STM32 Libraries and Samples
threadx
txfr_queue::p_mem
txfr_queue::p_mem field
Syntax
Show:
Summary
Declaration
from
FreeRTOS.h:207
uint8_t
*
p_mem
;
Examples
References
from
examples
Code
Location
Referrer
uint8_t
*
p_mem
;
FreeRTOS.h:207
pxQueueBuffer
->
p_mem
=
pucQueueStorageBuffer
;
tx_freertos.c:1464
xQueueCreateStatic()
p_queue
->
p_mem
=
p_mem
;
tx_freertos.c:1518
xQueueCreate()
vPortFree
(
xQueue
->
p_mem
)
;
tx_freertos.c:1556
vQueueDelete()
if
(
xQueue
->
p_write
>=
(
xQueue
->
p_mem
+
(
xQueue
->
msg_size
*
(
xQueue
->
queue_length
-
1u
)
)
)
)
{
tx_freertos.c:1587
xQueueSend()
xQueue
->
p_write
=
xQueue
->
p_mem
;
tx_freertos.c:1588
xQueueSend()
if
(
xQueue
->
p_read
==
xQueue
->
p_mem
)
{
tx_freertos.c:1677
xQueueSendToFront()
xQueue
->
p_read
=
xQueue
->
p_mem
+
(
xQueue
->
msg_size
*
(
xQueue
->
queue_length
-
1u
)
)
;
tx_freertos.c:1678
xQueueSendToFront()
if
(
xQueue
->
p_read
>=
(
xQueue
->
p_mem
+
(
xQueue
->
msg_size
*
(
xQueue
->
queue_length
-
1u
)
)
)
)
{
tx_freertos.c:1753
xQueueReceive()
xQueue
->
p_read
=
xQueue
->
p_mem
;
tx_freertos.c:1754
xQueueReceive()
xQueue
->
p_write
=
xQueue
->
p_mem
;
tx_freertos.c:1928
xQueueReset()
xQueue
->
p_read
=
xQueue
->
p_mem
;
tx_freertos.c:1929
xQueueReset()
if
(
p_write_temp
==
xQueue
->
p_mem
)
{
tx_freertos.c:1975
xQueueOverwrite()
p_write_temp
=
(
xQueue
->
p_mem
+
(
xQueue
->
msg_size
*
(
xQueue
->
queue_length
-
1u
)
)
)
;
tx_freertos.c:1976
xQueueOverwrite()
if
(
xQueue
->
p_write
>=
(
xQueue
->
p_mem
+
(
xQueue
->
msg_size
*
(
xQueue
->
queue_length
-
1u
)
)
)
)
{
tx_freertos.c:1984
xQueueOverwrite()
xQueue
->
p_write
=
xQueue
->
p_mem
;
tx_freertos.c:1985
xQueueOverwrite()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
txfr_queue::p_mem
is written by 2 functions and is read by 6 functions:
xQueueCreateStatic()
xQueueCreate()
All items filtered out
txfr_queue::p_mem
vQueueDelete()
xQueueSend()
xQueueSendToFront()
xQueueReceive()
xQueueReset()
xQueueOverwrite()
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