Lines Matching refs:uxBlockTimeTicks

221     TickType_t uxBlockTimeTicks = ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS;  in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig()  local
230 …ptor_ExpectAndReturn( sizeof( UDPPacket_t ) + uxRequestedSizeBytes, uxBlockTimeTicks, pxNetworkBuf… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig()
232 pvReturn = FreeRTOS_GetUDPPayloadBuffer( uxRequestedSizeBytes, uxBlockTimeTicks ); in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig()
241 TickType_t uxBlockTimeTicks = ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS - 1; in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeLessThanConfig() local
250 …ptor_ExpectAndReturn( sizeof( UDPPacket_t ) + uxRequestedSizeBytes, uxBlockTimeTicks, pxNetworkBuf… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeLessThanConfig()
252 pvReturn = FreeRTOS_GetUDPPayloadBuffer( uxRequestedSizeBytes, uxBlockTimeTicks ); in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeLessThanConfig()
261 TickType_t uxBlockTimeTicks = ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS + 1; in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeMoreThanConfig() local
272 pvReturn = FreeRTOS_GetUDPPayloadBuffer( uxRequestedSizeBytes, uxBlockTimeTicks ); in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeMoreThanConfig()
281 TickType_t uxBlockTimeTicks = ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS + 1; in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeMoreThanConfig_NULLBufferReturned() local
286 pvReturn = FreeRTOS_GetUDPPayloadBuffer( uxRequestedSizeBytes, uxBlockTimeTicks ); in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeMoreThanConfig_NULLBufferReturned()
1095 TickType_t uxBlockTimeTicks = 100; in test_FreeRTOS_SendPingRequest_HappyPath() local
1109 …or_ExpectAndReturn( uxNumberOfBytesToSend + sizeof( ICMPPacket_t ), uxBlockTimeTicks, pxNetworkBuf… in test_FreeRTOS_SendPingRequest_HappyPath()
1115 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_HappyPath()
1139 TickType_t uxBlockTimeTicks = 100; in test_FreeRTOS_SendPingRequest_SendingToIPTaskFails() local
1153 …or_ExpectAndReturn( uxNumberOfBytesToSend + sizeof( ICMPPacket_t ), uxBlockTimeTicks, pxNetworkBuf… in test_FreeRTOS_SendPingRequest_SendingToIPTaskFails()
1161 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_SendingToIPTaskFails()
1182 TickType_t uxBlockTimeTicks = 100; in test_FreeRTOS_SendPingRequest_TooManyBytes() local
1187 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_TooManyBytes()
1200 TickType_t uxBlockTimeTicks = 100; in test_FreeRTOS_SendPingRequest_TooLessBytes() local
1205 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_TooLessBytes()
1219 TickType_t uxBlockTimeTicks = 100; in test_FreeRTOS_SendPingRequest_NotEnoughFreeBuffers() local
1223 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_NotEnoughFreeBuffers()
1237 TickType_t uxBlockTimeTicks = 100; in test_FreeRTOS_SendPingRequest_NetworkBufferFailure() local
1241 …scriptor_ExpectAndReturn( uxNumberOfBytesToSend + sizeof( ICMPPacket_t ), uxBlockTimeTicks, NULL ); in test_FreeRTOS_SendPingRequest_NetworkBufferFailure()
1243 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_NetworkBufferFailure()