Searched refs:uxRequestedSizeBytes (Results 1 – 5 of 5) sorted by relevance
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_IP_DiffConfig1/ |
D | FreeRTOS_IP_DiffConfig1_utest.c | 433 size_t uxRequestedSizeBytes = 300; in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfigBackwardCompatible() local 443 …pxGetNetworkBufferWithDescriptor_ExpectAndReturn( sizeof( UDPPacket_t ) + uxRequestedSizeBytes, ux… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfigBackwardCompatible() 445 pvReturn = FreeRTOS_GetUDPPayloadBuffer( uxRequestedSizeBytes, uxBlockTimeTicks ); in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfigBackwardCompatible() 447 TEST_ASSERT_EQUAL( sizeof( UDPPacket_t ) + uxRequestedSizeBytes, pxNetworkBuffer->xDataLength ); in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfigBackwardCompatible() 771 size_t uxRequestedSizeBytes = 300; in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig_IPv6NotSupported() local 781 …pvReturn = FreeRTOS_GetUDPPayloadBuffer_Multi( uxRequestedSizeBytes, uxBlockTimeTicks, ipTYPE_IPv6… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig_IPv6NotSupported()
|
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_IP/ |
D | FreeRTOS_IP_utest.c | 248 size_t uxRequestedSizeBytes = 300; in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig() local 258 …pxGetNetworkBufferWithDescriptor_ExpectAndReturn( sizeof( UDPPacket_t ) + uxRequestedSizeBytes, ux… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig() 260 …pvReturn = FreeRTOS_GetUDPPayloadBuffer_Multi( uxRequestedSizeBytes, uxBlockTimeTicks, ipTYPE_IPv4… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig() 262 TEST_ASSERT_EQUAL( sizeof( UDPPacket_t ) + uxRequestedSizeBytes, pxNetworkBuffer->xDataLength ); in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig() 272 size_t uxRequestedSizeBytes = 300; in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeLessThanConfig() local 282 …pxGetNetworkBufferWithDescriptor_ExpectAndReturn( sizeof( UDPPacket_t ) + uxRequestedSizeBytes, ux… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeLessThanConfig() 284 …pvReturn = FreeRTOS_GetUDPPayloadBuffer_Multi( uxRequestedSizeBytes, uxBlockTimeTicks, ipTYPE_IPv4… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeLessThanConfig() 286 TEST_ASSERT_EQUAL( sizeof( UDPPacket_t ) + uxRequestedSizeBytes, pxNetworkBuffer->xDataLength ); in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeLessThanConfig() 297 size_t uxRequestedSizeBytes = 300; in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeMoreThanConfig() local 307 …pxGetNetworkBufferWithDescriptor_ExpectAndReturn( sizeof( UDPPacket_t ) + uxRequestedSizeBytes, ip… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeMoreThanConfig() [all …]
|
/FreeRTOS-Plus-TCP-v4.0.0/source/include/ |
D | FreeRTOS_IP.h | 345 void * FreeRTOS_GetUDPPayloadBuffer( size_t uxRequestedSizeBytes, 369 void * FreeRTOS_GetUDPPayloadBuffer_Multi( size_t uxRequestedSizeBytes,
|
/FreeRTOS-Plus-TCP-v4.0.0/source/ |
D | FreeRTOS_IP.c | 818 void * FreeRTOS_GetUDPPayloadBuffer( size_t uxRequestedSizeBytes, in FreeRTOS_GetUDPPayloadBuffer() argument 821 … return FreeRTOS_GetUDPPayloadBuffer_Multi( uxRequestedSizeBytes, uxBlockTimeTicks, ipTYPE_IPv4 ); in FreeRTOS_GetUDPPayloadBuffer() 838 void * FreeRTOS_GetUDPPayloadBuffer_Multi( size_t uxRequestedSizeBytes, in FreeRTOS_GetUDPPayloadBuffer_Multi() argument 880 …pxNetworkBuffer = pxGetNetworkBufferWithDescriptor( uxPayloadOffset + uxRequestedSizeBytes, uxBloc… in FreeRTOS_GetUDPPayloadBuffer_Multi() 888 pxNetworkBuffer->xDataLength = uxPayloadOffset + uxRequestedSizeBytes; in FreeRTOS_GetUDPPayloadBuffer_Multi()
|
/FreeRTOS-Plus-TCP-v4.0.0/test/cbmc/stubs/ |
D | freertos_api.c | 214 void * FreeRTOS_GetUDPPayloadBuffer_Multi( size_t uxRequestedSizeBytes, in FreeRTOS_GetUDPPayloadBuffer_Multi() argument
|