Lines Matching refs:uxBlockTimeTicks

249     TickType_t uxBlockTimeTicks = ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS;  in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig()  local
258 …ptor_ExpectAndReturn( sizeof( UDPPacket_t ) + uxRequestedSizeBytes, uxBlockTimeTicks, pxNetworkBuf… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig()
260 …pvReturn = FreeRTOS_GetUDPPayloadBuffer_Multi( uxRequestedSizeBytes, uxBlockTimeTicks, ipTYPE_IPv4… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig()
273 TickType_t uxBlockTimeTicks = ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS - 1; in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeLessThanConfig() local
282 …ptor_ExpectAndReturn( sizeof( UDPPacket_t ) + uxRequestedSizeBytes, uxBlockTimeTicks, pxNetworkBuf… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeLessThanConfig()
284 …pvReturn = FreeRTOS_GetUDPPayloadBuffer_Multi( uxRequestedSizeBytes, uxBlockTimeTicks, ipTYPE_IPv4… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeLessThanConfig()
298 TickType_t uxBlockTimeTicks = ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS + 1; in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeMoreThanConfig() local
309 …pvReturn = FreeRTOS_GetUDPPayloadBuffer_Multi( uxRequestedSizeBytes, uxBlockTimeTicks, ipTYPE_IPv4… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeMoreThanConfig()
322 TickType_t uxBlockTimeTicks = ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS + 1; in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeMoreThanConfig_NULLBufferReturned() local
327 …pvReturn = FreeRTOS_GetUDPPayloadBuffer_Multi( uxRequestedSizeBytes, uxBlockTimeTicks, ipTYPE_IPv4… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeMoreThanConfig_NULLBufferReturned()
339 TickType_t uxBlockTimeTicks = ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS; in test_FreeRTOS_GetUDPPayloadBuffer_UnknownType() local
341 …catch_assert( FreeRTOS_GetUDPPayloadBuffer_Multi( uxRequestedSizeBytes, uxBlockTimeTicks, 0xFF ) ); in test_FreeRTOS_GetUDPPayloadBuffer_UnknownType()
351 TickType_t uxBlockTimeTicks = ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS; in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig_IPv6() local
360 …ExpectAndReturn( sizeof( UDPPacket_IPv6_t ) + uxRequestedSizeBytes, uxBlockTimeTicks, pxNetworkBuf… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig_IPv6()
362 …pvReturn = FreeRTOS_GetUDPPayloadBuffer_Multi( uxRequestedSizeBytes, uxBlockTimeTicks, ipTYPE_IPv6… in test_FreeRTOS_GetUDPPayloadBuffer_BlockTimeEqualToConfig_IPv6()
1073 TickType_t uxBlockTimeTicks = 100; in test_FreeRTOS_SendPingRequest_HappyPath() local
1089 …or_ExpectAndReturn( uxNumberOfBytesToSend + sizeof( ICMPPacket_t ), uxBlockTimeTicks, pxNetworkBuf… in test_FreeRTOS_SendPingRequest_HappyPath()
1095 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_HappyPath()
1123 TickType_t uxBlockTimeTicks = 100; in test_FreeRTOS_SendPingRequest_SendingToIPTaskFails() local
1137 …or_ExpectAndReturn( uxNumberOfBytesToSend + sizeof( ICMPPacket_t ), uxBlockTimeTicks, pxNetworkBuf… in test_FreeRTOS_SendPingRequest_SendingToIPTaskFails()
1146 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_SendingToIPTaskFails()
1171 TickType_t uxBlockTimeTicks = 100; in test_FreeRTOS_SendPingRequest_TooManyBytes() local
1177 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_TooManyBytes()
1194 TickType_t uxBlockTimeTicks = 100; in test_FreeRTOS_SendPingRequest_TooLessBytes() local
1200 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_TooLessBytes()
1218 TickType_t uxBlockTimeTicks = 100; in test_FreeRTOS_SendPingRequest_NotEnoughFreeBuffers() local
1223 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_NotEnoughFreeBuffers()
1241 TickType_t uxBlockTimeTicks = 100; in test_FreeRTOS_SendPingRequest_NetworkBufferFailure() local
1245 …scriptor_ExpectAndReturn( uxNumberOfBytesToSend + sizeof( ICMPPacket_t ), uxBlockTimeTicks, NULL ); in test_FreeRTOS_SendPingRequest_NetworkBufferFailure()
1247 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_NetworkBufferFailure()