Home
last modified time | relevance | path

Searched refs:ulContentSize (Results 1 – 1 of 1) sorted by relevance

/percepio-3.7.0/DFM/kernelports/Zephyr/
DdfmKernelPort.c96 size_t ulContentSize; member
120 size_t ulContentSize = pxCurrentPayload->ulContentSize; in xDfmAlertAddCoredump() local
121 if (ulContentSize > CONFIG_PERCEPIO_DFM_CFG_STACKDUMP_SIZE) in xDfmAlertAddCoredump()
122 ulContentSize = CONFIG_PERCEPIO_DFM_CFG_STACKDUMP_SIZE; in xDfmAlertAddCoredump()
125 …if (ulDfmPayloadBufferBytesUsed + pxCurrentPayload->ulHeaderSize + ulContentSize > CONFIG_PERCEPIO… in xDfmAlertAddCoredump()
136 memcpy(pubDfmPayloadBufferPosition, pxCurrentPayload->pxContent, ulContentSize); in xDfmAlertAddCoredump()
137 pubDfmPayloadBufferPosition += ulContentSize; in xDfmAlertAddCoredump()
138 ulDfmPayloadBufferBytesUsed += ulContentSize; in xDfmAlertAddCoredump()
211 pxCurrentPayload->ulContentSize = ulBufferLength; in xDfmCoredumpBackendBufferOutput()