threadx
txfr_queue::p_write
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_write
txfr_queue::p_write field
Syntax
Show:
Summary
Declaration
from
FreeRTOS.h:210
uint8_t
*
p_write
;
Examples
References
from
examples
Code
Location
Referrer
uint8_t
*
p_write
;
FreeRTOS.h:210
pxQueueBuffer
->
p_write
=
(
uint8_t
*
)
pucQueueStorageBuffer
;
tx_freertos.c:1467
xQueueCreateStatic()
p_queue
->
p_write
=
(
uint8_t
*
)
p_mem
;
tx_freertos.c:1521
xQueueCreate()
memcpy
(
xQueue
->
p_write
,
pvItemToQueue
,
xQueue
->
msg_size
)
;
tx_freertos.c:1586
xQueueSend()
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()
xQueue
->
p_write
+=
xQueue
->
msg_size
;
tx_freertos.c:1590
xQueueSend()
xQueue
->
p_write
=
xQueue
->
p_mem
;
tx_freertos.c:1928
xQueueReset()
p_write_temp
=
xQueue
->
p_write
;
tx_freertos.c:1974
xQueueOverwrite()
memcpy
(
xQueue
->
p_write
,
pvItemToQueue
,
xQueue
->
msg_size
)
;
tx_freertos.c:1983
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()
xQueue
->
p_write
+=
xQueue
->
msg_size
;
tx_freertos.c:1987
xQueueOverwrite()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
txfr_queue::p_write
is written by 5 functions and is read by 2 functions:
xQueueCreateStatic()
xQueueCreate()
xQueueSend()
xQueueReset()
xQueueOverwrite()
All items filtered out
txfr_queue::p_write
xQueueSend()
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