Home
last modified time | relevance | path

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

/percepio-3.5.0/DFM/storageports/FLASH/
DdfmStoragePort.c52 DfmResult_t xDfmStoragePortStoreSession(void* pvData, uint32_t ulSize) in xDfmStoragePortStoreSession() argument
75 uint32_t ulSize; in xDfmStoragePortGetAlert() local
76 if (xDfmEntryGetSize((DfmEntryHandle_t)&dfmFlashData.data[ulRdOffset], &ulSize) == DFM_FAIL) in xDfmStoragePortGetAlert()
81 if (ulSize > ulBufferSize) in xDfmStoragePortGetAlert()
83 ulSize = ulBufferSize; in xDfmStoragePortGetAlert()
85 memcpy(pvBuffer, &dfmFlashData.data[ulRdOffset], ulSize); in xDfmStoragePortGetAlert()
86 ulRdOffset += ulSize; in xDfmStoragePortGetAlert()
87 ulRdOffset += (8 - (ulSize % 8)); in xDfmStoragePortGetAlert()
111 uint32_t ulSize; in prvDfmStoragePortWrite() local
112 if (xDfmEntryGetSize(xEntryHandle, &ulSize) == DFM_FAIL) in prvDfmStoragePortWrite()
[all …]
/percepio-3.5.0/DFM/
DdfmAlert.c16 static uint32_t prvDfmAlertCalculateChecksum(uint8_t* pxData, uint32_t ulSize);
296 DfmResult_t xDfmAlertAddPayload(DfmAlertHandle_t xAlertHandle, void* pvData, uint32_t ulSize, const… in xDfmAlertAddPayload() argument
326 if (ulSize == (uint32_t)0) in xDfmAlertAddPayload()
348 pxDfmAlertData->xPayloads[pxDfmAlertData->ulPayloadCount].ulSize = ulSize; in xDfmAlertAddPayload()
416 *pulSize = pxDfmAlertData->xPayloads[ulIndex].ulSize; in xDfmAlertGetPayload()
750 pxDfmAlertData->xPayloads[i].ulSize = 0; in prvDfmAlertReset()
788 …usChunkCount = (uint16_t)(((pxDfmAlertData->xPayloads[i].ulSize - 1UL) / (uint32_t)(DFM_CFG_MAX_PA… in prvDfmProcessAlert()
792 …AlertHandle_t)pxAlert, (uint16_t)(i + 1UL), pxDfmAlertData->xPayloads[i].ulSize, pxDfmAlertData->x… in prvDfmProcessAlert()
808 if (ulChunkSize > pxDfmAlertData->xPayloads[i].ulSize - ulOffset) in prvDfmProcessAlert()
810 ulChunkSize = pxDfmAlertData->xPayloads[i].ulSize - ulOffset; in prvDfmProcessAlert()
[all …]
DdfmEntry.c406 … uint16_t usChunkIndex, uint16_t usChunkCount, void* pvPayload, uint32_t ulSize, char* szDescripti… in xDfmEntryCreatePayloadChunk() argument
423 …, (uint32_t)(DFM_PAYLOAD_DESCRIPTION_MAX_LEN), szDescription, pvPayload, ulSize, pxEntryHandle) ==… in xDfmEntryCreatePayloadChunk()
/percepio-3.5.0/DFM/storageports/Dummy/
DdfmStoragePort.c23 DfmResult_t xDfmStoragePortStoreSession(void* pvData, uint32_t ulSize) in xDfmStoragePortStoreSession() argument
26 (void)ulSize; in xDfmStoragePortStoreSession()
/percepio-3.5.0/DFM/include/
DdfmAlert.h80 uint32_t ulSize; member
250 DfmResult_t xDfmAlertAddPayload(DfmAlertHandle_t xAlertHandle, void* pvData, uint32_t ulSize, const…
320 #define xDfmAlertAddPayload(xAlertHandle, pvData, ulSize, szDescription)
DdfmEntry.h104 … uint16_t usChunkIndex, uint16_t usChunkCount, void* pvPayload, uint32_t ulSize, char* szDescripti…
334 …oadChunk(xAlertHandle, usEntryId, usChunkIndex, usChunkCount, pvPayload, ulSize, szDescription, px…
Ddfm.h46 typedef DfmResult_t (*DfmUserCallback_t)(char cBuffer[], uint32_t ulSize, uint32_t* pulBytesWritten…
/percepio-3.5.0/DFM/kernelports/Zephyr/storageports/Flash/include/
DdfmStoragePort.h61 DfmResult_t xDfmStoragePortStoreSession(void* pvData, uint32_t ulSize);
/percepio-3.5.0/DFM/storageports/Dummy/include/
DdfmStoragePort.h61 DfmResult_t xDfmStoragePortStoreSession(void* pvData, uint32_t ulSize);
/percepio-3.5.0/DFM/storageports/FLASH/include/
DdfmStoragePort.h62 DfmResult_t xDfmStoragePortStoreSession(void* pvData, uint32_t ulSize);
/percepio-3.5.0/DFM/kernelports/Zephyr/storageports/Flash/
DdfmStoragePort.c281 DfmResult_t xDfmStoragePortStoreSession(void* pvData, uint32_t ulSize) in xDfmStoragePortStoreSession() argument
299 if (ulSize == 0) in xDfmStoragePortStoreSession()
/percepio-3.5.0/TraceRecorder/
DtrcStreamingRecorder.c274 traceResult prvVerifySizeAlignment(uint32_t ulSize) in prvVerifySizeAlignment() argument
276 return (ulSize % sizeof(TraceUnsignedBaseType_t)) == 0 ? TRC_SUCCESS : TRC_FAIL; in prvVerifySizeAlignment()