Home
last modified time | relevance | path

Searched refs:uxIndex (Results 1 – 25 of 38) sorted by relevance

12

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_IPv6_Utils/
DFreeRTOS_IPv6_Utils_stubs.c91 size_t uxIndex = sizeof( EthernetHeader_t ) + sizeof( IPHeader_IPv6_t ); in prvInitializeNetworkDescriptorWithExtensionHeader() local
129 pcNetworkBuffer[ uxIndex ] = ipIPv6_EXT_HEADER_ROUTING_HEADER; in prvInitializeNetworkDescriptorWithExtensionHeader()
130 pcNetworkBuffer[ uxIndex + 1 ] = 0; in prvInitializeNetworkDescriptorWithExtensionHeader()
131 uxIndex += 8; in prvInitializeNetworkDescriptorWithExtensionHeader()
132 pcNetworkBuffer[ uxIndex ] = ipIPv6_EXT_HEADER_FRAGMENT_HEADER; in prvInitializeNetworkDescriptorWithExtensionHeader()
133 pcNetworkBuffer[ uxIndex + 1 ] = 0; in prvInitializeNetworkDescriptorWithExtensionHeader()
134 uxIndex += 8; in prvInitializeNetworkDescriptorWithExtensionHeader()
135 pcNetworkBuffer[ uxIndex ] = ipIPv6_EXT_HEADER_SECURE_PAYLOAD; in prvInitializeNetworkDescriptorWithExtensionHeader()
136 pcNetworkBuffer[ uxIndex + 1 ] = 0; in prvInitializeNetworkDescriptorWithExtensionHeader()
137 uxIndex += 8; in prvInitializeNetworkDescriptorWithExtensionHeader()
[all …]
DFreeRTOS_IPv6_Utils_utest.c186 size_t uxIndex = ipSIZE_OF_ETH_HEADER + ipSIZE_OF_IPv6_HEADER; in test_prvChecksumIPv6Checks_LargeExtensionHeader() local
190 pxNetworkBuffer->pucEthernetBuffer[ uxIndex ] = ipIPv6_EXT_HEADER_ROUTING_HEADER; in test_prvChecksumIPv6Checks_LargeExtensionHeader()
191 …pxNetworkBuffer->pucEthernetBuffer[ uxIndex + 1 ] = 200U; /* Extension header length is set to 200… in test_prvChecksumIPv6Checks_LargeExtensionHeader()
192 uxIndex += 8; in test_prvChecksumIPv6Checks_LargeExtensionHeader()
193 pxNetworkBuffer->pucEthernetBuffer[ uxIndex ] = ipPROTOCOL_TCP; in test_prvChecksumIPv6Checks_LargeExtensionHeader()
194 pxNetworkBuffer->pucEthernetBuffer[ uxIndex + 1 ] = 0; in test_prvChecksumIPv6Checks_LargeExtensionHeader()
195 uxIndex += 8; in test_prvChecksumIPv6Checks_LargeExtensionHeader()
219 size_t uxIndex = ipSIZE_OF_ETH_HEADER + ipSIZE_OF_IPv6_HEADER; in test_prvChecksumIPv6Checks_HopByHopInWrongOrder() local
223 pxNetworkBuffer->pucEthernetBuffer[ uxIndex ] = ipIPv6_EXT_HEADER_HOP_BY_HOP; in test_prvChecksumIPv6Checks_HopByHopInWrongOrder()
224 pxNetworkBuffer->pucEthernetBuffer[ uxIndex + 1 ] = 0; in test_prvChecksumIPv6Checks_HopByHopInWrongOrder()
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_IPv6/
DFreeRTOS_IPv6_stubs.c116 size_t uxIndex = sizeof( EthernetHeader_t ) + sizeof( IPHeader_IPv6_t ); in prvInitializeNetworkDescriptorWithExtensionHeader() local
154 pcNetworkBuffer[ uxIndex ] = ipIPv6_EXT_HEADER_ROUTING_HEADER; in prvInitializeNetworkDescriptorWithExtensionHeader()
155 pcNetworkBuffer[ uxIndex + 1 ] = 0; in prvInitializeNetworkDescriptorWithExtensionHeader()
156 uxIndex += 8; in prvInitializeNetworkDescriptorWithExtensionHeader()
157 pcNetworkBuffer[ uxIndex ] = ipIPv6_EXT_HEADER_FRAGMENT_HEADER; in prvInitializeNetworkDescriptorWithExtensionHeader()
158 pcNetworkBuffer[ uxIndex + 1 ] = 0; in prvInitializeNetworkDescriptorWithExtensionHeader()
159 uxIndex += 8; in prvInitializeNetworkDescriptorWithExtensionHeader()
160 pcNetworkBuffer[ uxIndex ] = ipIPv6_EXT_HEADER_SECURE_PAYLOAD; in prvInitializeNetworkDescriptorWithExtensionHeader()
161 pcNetworkBuffer[ uxIndex + 1 ] = 0; in prvInitializeNetworkDescriptorWithExtensionHeader()
162 uxIndex += 8; in prvInitializeNetworkDescriptorWithExtensionHeader()
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/tools/tcp_utilities/
Dtcp_netstat.c149 size_t uxIndex; in vShowMetrics() local
163 for( uxIndex = 0; uxIndex < pxMetrics->xTCPPortList.uxCount; uxIndex++ ) in vShowMetrics()
166 pxMetrics->xTCPPortList.usTCPPortList[ uxIndex ] ) ); in vShowMetrics()
171 for( uxIndex = 0; uxIndex < pxMetrics->xTCPSocketList.uxCount; uxIndex++ ) in vShowMetrics()
174 pxMetrics->xTCPSocketList.xTCPList[ uxIndex ].usLocalPort, in vShowMetrics()
175 pxMetrics->xTCPSocketList.xTCPList[ uxIndex ].ulRemoteIP, in vShowMetrics()
176 pxMetrics->xTCPSocketList.xTCPList[ uxIndex ].usRemotePort ) ); in vShowMetrics()
183 for( uxIndex = 0; uxIndex < pxMetrics->xUDPPortList.uxCount; uxIndex++ ) in vShowMetrics()
186 pxMetrics->xUDPPortList.usUDPPortList[ uxIndex ] ) ); in vShowMetrics()
191 for( uxIndex = 0; uxIndex < pxMetrics->xUDPSocketList.uxCount; uxIndex++ ) in vShowMetrics()
[all …]
Dtcp_dump_packets.c184 size_t uxIndex; in dump_packet_init() local
197 for( uxIndex = 0; uxIndex < pxEntries->uxEntryCount; uxIndex++ ) in dump_packet_init()
199 pxEntries->xEntries[ uxIndex ].uxCount = 0; in dump_packet_init()
534 size_t uxIndex; in vActualDump() local
550 for( uxIndex = 0; uxIndex < pxCurrentEntries->uxEntryCount; uxIndex++ ) in vActualDump()
552 … if( pxCurrentEntries->xEntries[ uxIndex ].uxCount < pxCurrentEntries->xEntries[ uxIndex ].uxMax ) in vActualDump()
554 uint32_t ulMask = pxCurrentEntries->xEntries[ uxIndex ].ulMask; in vActualDump()
558 pxCurrentEntries->xEntries[ uxIndex ].uxCount++; in vActualDump()
602 for( uxIndex = 0; uxIndex < uxNextPacketNumber; uxIndex++ ) in vActualDump()
604 _fprintf( outfile, "\t&xPacket_%04lu,\n", uxIndex ); in vActualDump()
Dhttp_client_test.c177 void wakeupHTTPClient( size_t uxIndex, in wakeupHTTPClient() argument
183 if( ( uxIndex < echoNUM_HTTP_CLIENTS ) && ( xSocketTaskHandles[ uxIndex ] != NULL ) ) in wakeupHTTPClient()
185 xIPVersion[ uxIndex ] = xIPType; in wakeupHTTPClient()
187 snprintf( pcHostNames[ uxIndex ], sizeof pcHostNames[ uxIndex ], "%s", pcHost ); in wakeupHTTPClient()
191 snprintf( pcFileNames[ uxIndex ], sizeof( pcFileNames[ uxIndex ] ), pcFileName ); in wakeupHTTPClient()
195 … snprintf( pcFileNames[ uxIndex ], sizeof( pcFileNames[ uxIndex ] ), httpREMOTE_FILENAME ); in wakeupHTTPClient()
198 xAllowedToStart[ uxIndex ]++; in wakeupHTTPClient()
199 xTaskNotifyGive( xSocketTaskHandles[ uxIndex ] ); in wakeupHTTPClient()
Dtcp_mem_stats.c99 size_t uxIndex; in vAddAllocation() local
103 for( uxIndex = 0; uxIndex < uxAllocationCount; uxIndex++ ) in vAddAllocation()
105 if( xAllocations[ uxIndex ].pxObject == pxObject ) in vAddAllocation()
119 xAllocations[ uxIndex ].pxObject = pxObject; in vAddAllocation()
120 xAllocations[ uxIndex ].xMemType = xMemType; in vAddAllocation()
121 xAllocations[ uxIndex ].uxSize = uxSize; in vAddAllocation()
122 xAllocations[ uxIndex ].uxNumber = uxNextObjectNumber++; in vAddAllocation()
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_DNS_Cache.c68 static BaseType_t prvGetCacheIPEntry( UBaseType_t uxIndex,
74 static void prvUpdateCacheEntry( UBaseType_t uxIndex,
86 static void prvReadDNSCache( BaseType_t uxIndex,
209 UBaseType_t uxIndex; in FreeRTOS_ProcessDNSCache() local
224 xResult = prvFindEntryIndex( pcName, pxIP, &uxIndex ); in FreeRTOS_ProcessDNSCache()
235 ( void ) prvGetCacheIPEntry( uxIndex, in FreeRTOS_ProcessDNSCache()
242 prvUpdateCacheEntry( uxIndex, in FreeRTOS_ProcessDNSCache()
318 UBaseType_t uxIndex; in prvFindEntryIndex() local
321 for( uxIndex = 0; uxIndex < ipconfigDNS_CACHE_ENTRIES; uxIndex++ ) in prvFindEntryIndex()
323 if( xDNSCache[ uxIndex ].pcName[ 0 ] == ( char ) 0 ) in prvFindEntryIndex()
[all …]
DFreeRTOS_IPv6_Utils.c191 size_t uxIndex = ipSIZE_OF_ETH_HEADER + ipSIZE_OF_IPv6_HEADER; in usGetExtensionHeaderLength() local
208 while( ( uxIndex + 8U ) < uxBufferLength ) in usGetExtensionHeaderLength()
210 ucNextHeader = pucEthernetBuffer[ uxIndex ]; in usGetExtensionHeaderLength()
218 uxHopSize = ( size_t ) pucEthernetBuffer[ uxIndex + 1U ]; in usGetExtensionHeaderLength()
222 if( ( uxIndex + uxHopSize ) >= uxBufferLength ) in usGetExtensionHeaderLength()
224 …length %lu + %lu of extension header is larger than buffer size %lu \n", uxIndex, uxHopSize, uxBuf… in usGetExtensionHeaderLength()
228 uxIndex = uxIndex + uxHopSize; in usGetExtensionHeaderLength()
236 uxReturn = uxIndex - ( ipSIZE_OF_ETH_HEADER + ipSIZE_OF_IPv6_HEADER ); in usGetExtensionHeaderLength()
241 xNextOrder = xGetExtensionOrder( ucNextHeader, pucEthernetBuffer[ uxIndex ] ); in usGetExtensionHeaderLength()
DFreeRTOS_DNS_Parser.c104 size_t uxIndex = 0U; in DNS_ReadNameField() local
115 uxIndex = 0U; in DNS_ReadNameField()
120 else if( ( pucByte[ uxIndex ] & dnsNAME_IS_OFFSET ) == dnsNAME_IS_OFFSET ) in DNS_ReadNameField()
125 uxIndex += sizeof( uint16_t ); in DNS_ReadNameField()
129 uxIndex = 0U; in DNS_ReadNameField()
135 while( ( uxIndex < uxSourceLen ) && ( pucByte[ uxIndex ] != ( uint8_t ) 0x00U ) ) in DNS_ReadNameField()
150 uxCount = ( size_t ) pucByte[ uxIndex ]; in DNS_ReadNameField()
154 uxIndex++; in DNS_ReadNameField()
156 if( ( uxIndex + uxCount ) > uxSourceLen ) in DNS_ReadNameField()
158 uxIndex = 0U; in DNS_ReadNameField()
[all …]
DFreeRTOS_BitConfig.c108 if( ( pxConfig->uxIndex + uxNeeded ) <= pxConfig->uxSize ) in xBitConfig_read_uc()
112 … ( void ) memcpy( pucData, &( pxConfig->ucContents[ pxConfig->uxIndex ] ), uxNeeded ); in xBitConfig_read_uc()
119 pxConfig->uxIndex += uxNeeded; in xBitConfig_read_uc()
150 if( ( pxConfig->uxIndex >= uxNeeded ) && ( pucData != NULL ) ) in pucBitConfig_peek_last_index_uc()
152 … ( void ) memcpy( pucData, &( pxConfig->ucContents[ pxConfig->uxIndex - uxNeeded ] ), uxNeeded ); in pucBitConfig_peek_last_index_uc()
254 if( pxConfig->uxIndex <= ( pxConfig->uxSize - uxNeeded ) ) in vBitConfig_write_uc()
256 uint8_t * pucDestination = &( pxConfig->ucContents[ pxConfig->uxIndex ] ); in vBitConfig_write_uc()
258 pxConfig->uxIndex += uxNeeded; in vBitConfig_write_uc()
DFreeRTOS_RA.c269 size_t uxIndex = 0U; in vReceiveRA_ReadReply() local
277 while( ( uxIndex + 1U ) < uxLast ) in vReceiveRA_ReadReply()
279 uint8_t ucType = pucBytes[ uxIndex ]; in vReceiveRA_ReadReply()
280 size_t uxPrefixLength = ( size_t ) pucBytes[ uxIndex + 1U ]; in vReceiveRA_ReadReply()
290 if( uxLast < ( uxIndex + uxLength ) ) in vReceiveRA_ReadReply()
292 …FreeRTOS_printf( ( "RA: Not enough bytes ( %u > %u )\n", ( unsigned ) ( uxIndex + uxLength ), ( un… in vReceiveRA_ReadReply()
300 pucBytes[ uxIndex + 2U ], in vReceiveRA_ReadReply()
301 pucBytes[ uxIndex + 3U ], in vReceiveRA_ReadReply()
302 pucBytes[ uxIndex + 4U ], in vReceiveRA_ReadReply()
303 pucBytes[ uxIndex + 5U ], in vReceiveRA_ReadReply()
[all …]
DFreeRTOS_DNS.c1188 size_t uxIndex = ipUDP_PAYLOAD_IP_TYPE_OFFSET; in prvSendBuffer() local
1189 BaseType_t xIndex = ( BaseType_t ) uxIndex; in prvSendBuffer()
1475 size_t uxStart, uxIndex; in prvCreateDNSMessage() local
1519 uxIndex = uxStart + 1U; in prvCreateDNSMessage()
1522 ( void ) strcpy( ( char * ) &( pucUDPPayloadBuffer[ uxIndex ] ), pcHostName ); in prvCreateDNSMessage()
1527 uxIndex = uxStart; in prvCreateDNSMessage()
1534 uxIndex++; in prvCreateDNSMessage()
1536 while( ( pucUDPPayloadBuffer[ uxIndex ] != ( uint8_t ) 0U ) && in prvCreateDNSMessage()
1537 ( pucUDPPayloadBuffer[ uxIndex ] != ( uint8_t ) ASCII_BASELINE_DOT ) ) in prvCreateDNSMessage()
1539 uxIndex++; in prvCreateDNSMessage()
[all …]
DFreeRTOS_DHCP.c972 if( pxSet->pucByte[ pxSet->uxIndex ] == ( uint8_t ) xExpectedMessageType ) in vProcessHandleOption()
980 if( pxSet->pucByte[ pxSet->uxIndex ] == ( uint8_t ) dhcpMESSAGE_TYPE_NACK ) in vProcessHandleOption()
1026 size_t uxByteIndex = pxSet->uxIndex; in vProcessHandleOption()
1174 pxSet->uxIndex++; in xProcessCheckOption()
1181 if( ( pxSet->uxIndex + 1U ) >= pxSet->uxPayloadDataLength ) in xProcessCheckOption()
1188 pxSet->uxLength = ( size_t ) pxSet->pucByte[ pxSet->uxIndex + 1U ]; in xProcessCheckOption()
1189 pxSet->uxIndex = pxSet->uxIndex + 2U; in xProcessCheckOption()
1191 if( !( ( ( pxSet->uxIndex + pxSet->uxLength ) - 1U ) < pxSet->uxPayloadDataLength ) ) in xProcessCheckOption()
1206 const void * pvCopySource = &( pxSet->pucByte[ pxSet->uxIndex ] ); in xProcessCheckOption()
1217 if( !( pxSet->uxIndex < pxSet->uxPayloadDataLength ) ) in xProcessCheckOption()
[all …]
DFreeRTOS_IPv6_Sockets.c202 socklen_t uxIndex = 0U; in uxHexPrintShort() local
217 if( uxIndex >= ( uxBufferSize - 1U ) ) in uxHexPrintShort()
222 pcBuffer[ uxIndex ] = cHexToChar( usNibble ); in uxHexPrintShort()
223 uxIndex++; in uxHexPrintShort()
229 return uxIndex; in uxHexPrintShort()
DFreeRTOS_IPv6.c635 size_t uxIndex = 0U; in eHandleIPv6ExtensionHeaders() local
638 uxIndex = ipSIZE_OF_ETH_HEADER + ipSIZE_OF_IPv6_HEADER + uxRemovedBytes; in eHandleIPv6ExtensionHeaders()
640 if( uxIndex < uxMaxLength ) in eHandleIPv6ExtensionHeaders()
654 pucFrom = &( pxNetworkBuffer->pucEthernetBuffer[ uxIndex ] ); in eHandleIPv6ExtensionHeaders()
655 xMoveLen = uxMaxLength - uxIndex; in eHandleIPv6ExtensionHeaders()
/FreeRTOS-Plus-TCP-v4.0.0/test/cbmc/proofs/IPUtils/usGenerateProtocolChecksum_IPv6/
DusGenerateProtocolChecksum_IPv6_harness.c91 size_t uxIndex = ipSIZE_OF_ETH_HEADER + ipSIZE_OF_IPv6_HEADER; in prvPrepareExtensionHeaders() local
102 while( ( uxIndex + 8U ) < uxBufferLength ) in prvPrepareExtensionHeaders()
104 ucNextHeader = pucEthernetBuffer[ uxIndex ]; in prvPrepareExtensionHeaders()
107 uxHopSize = ( size_t ) pucEthernetBuffer[ uxIndex + 1U ]; in prvPrepareExtensionHeaders()
111 if( ( uxIndex + uxHopSize ) >= uxBufferLength ) in prvPrepareExtensionHeaders()
116 uxIndex = uxIndex + uxHopSize; in prvPrepareExtensionHeaders()
123 __CPROVER_assume( uxBufferLength - uxIndex >= sizeof( ProtocolHeaders_t ) ); in prvPrepareExtensionHeaders()
130 __CPROVER_assume( uxBufferLength - uxIndex >= sizeof( ProtocolHeaders_t ) ); in prvPrepareExtensionHeaders()
141 __CPROVER_assume( uxBufferLength - uxIndex >= sizeof( ProtocolHeaders_t ) ); in prvPrepareExtensionHeaders()
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_BitConfig/
DFreeRTOS_BitConfig_utest.c166 pxConfig->uxIndex = 1; in test_xBitConfig_read_uc_OutOfBoundRead()
188 pxConfig->uxIndex = 0; in test_xBitConfig_read_uc_NullData()
194 TEST_ASSERT_EQUAL( SIZE_OF_BINARY_STREAM, pxConfig->uxIndex ); in test_xBitConfig_read_uc_NullData()
214 pxConfig->uxIndex = 0; in test_xBitConfig_read_uc_HappyPath()
221 TEST_ASSERT_EQUAL( uxSize, pxConfig->uxIndex ); in test_xBitConfig_read_uc_HappyPath()
259 xConfig.uxIndex = uxSize; in test_pucBitConfig_peek_last_index_uc_NullpucData()
283 xConfig.uxIndex = 0; in test_pucBitConfig_peek_OutOfBound()
308 xConfig.uxIndex = SIZE_OF_BINARY_STREAM; in test_pucBitConfig_peek_last_index_uc_HappyPath()
352 pxConfig->uxIndex = 0; in test_xBitConfig_read_8_HappyPath()
359 TEST_ASSERT_EQUAL( 1, pxConfig->uxIndex ); in test_xBitConfig_read_8_HappyPath()
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/test/cbmc/proofs/CheckOptionsInner/
DCheckOptionsInner_harness.c28 size_t uxIndex,
46 size_t uxIndex; in harness() local
94 __CPROVER_assume( uxIndex <= buffer_size ); in harness()
95 __CPROVER_assume( uxIndex + 8 <= buffer_size ); in harness()
101 __CPROVER_file_local_FreeRTOS_TCP_Reception_c_prvReadSackOption( pucPtr, uxIndex, pxSocket ); in harness()
/FreeRTOS-Plus-TCP-v4.0.0/test/cbmc/proofs/CheckOptionsOuter/
DCheckOptionsOuter_harness.c45 size_t uxIndex, in __CPROVER_file_local_FreeRTOS_TCP_Reception_c_prvReadSackOption() argument
51 __CPROVER_assert( uxIndex <= buffer_size, in __CPROVER_file_local_FreeRTOS_TCP_Reception_c_prvReadSackOption()
53 __CPROVER_assert( uxIndex + 8 <= buffer_size, in __CPROVER_file_local_FreeRTOS_TCP_Reception_c_prvReadSackOption()
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_IPv6_ConfigDriverCheckChecksum/
DFreeRTOS_IPv6_ConfigDriverCheckChecksum_utest.c79 size_t uxIndex = ipSIZE_OF_ETH_HEADER + ipSIZE_OF_IPv6_HEADER; in test_prvAllowIPPacketIPv6_xCheckIPv6SizeFields_valid_ext_header_length() local
83 pxNetworkBuffer->pucEthernetBuffer[ uxIndex ] = ipPROTOCOL_TCP; in test_prvAllowIPPacketIPv6_xCheckIPv6SizeFields_valid_ext_header_length()
84 pxNetworkBuffer->pucEthernetBuffer[ uxIndex + 1 ] = 0U; in test_prvAllowIPPacketIPv6_xCheckIPv6SizeFields_valid_ext_header_length()
165 size_t uxIndex = ipSIZE_OF_ETH_HEADER + ipSIZE_OF_IPv6_HEADER; in test_prvAllowIPPacketIPv6_xCheckIPv6SizeFields_large_ext_header_length() local
169 pxNetworkBuffer->pucEthernetBuffer[ uxIndex ] = ipPROTOCOL_TCP; in test_prvAllowIPPacketIPv6_xCheckIPv6SizeFields_large_ext_header_length()
170 …pxNetworkBuffer->pucEthernetBuffer[ uxIndex + 1 ] = 200U; /* 200 * 8 + 8 = 1608 bytes in this exte… in test_prvAllowIPPacketIPv6_xCheckIPv6SizeFields_large_ext_header_length()
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/libslirp/
DMBuffNetworkInterface.c338 size_t uxIndex; in vNetworkInterfaceAllocateRAMToBuffers() local
352 for( uxIndex = 0; uxIndex < ipconfigNUM_NETWORK_BUFFER_DESCRIPTORS; uxIndex++ ) in vNetworkInterfaceAllocateRAMToBuffers()
354 size_t uxOffset = uxIndex * BUFFER_SIZE_ROUNDED_UP; in vNetworkInterfaceAllocateRAMToBuffers()
361 *ppDescriptor = &( pxNetworkBuffers[ uxIndex ] ); in vNetworkInterfaceAllocateRAMToBuffers()
365 …pxNetworkBuffers[ uxIndex ].pucEthernetBuffer = &( pucNetworkPacketBuffers[ uxOffset + ipBUFFER_PA… in vNetworkInterfaceAllocateRAMToBuffers()
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/WinPCap/
DNetworkInterface.c404 size_t uxIndex; in xDesiredAdapter() local
415 … for( uxIndex = 0U; ( uxIndex <= uxLength - uxKeyLength ) && ( xMatchFound == 0 ); uxIndex++ ) in xDesiredAdapter()
417 …if( strncasecmp( configNETWORK_INTERFACE_TYPE_TO_USE, &( pcDescription[ uxIndex ] ), uxKeyLength )… in xDesiredAdapter()
952 size_t uxIndex; in vNetworkInterfaceAllocateRAMToBuffers() local
966 for( uxIndex = 0; uxIndex < ipconfigNUM_NETWORK_BUFFER_DESCRIPTORS; uxIndex++ ) in vNetworkInterfaceAllocateRAMToBuffers()
968 size_t uxOffset = uxIndex * BUFFER_SIZE_ROUNDED_UP; in vNetworkInterfaceAllocateRAMToBuffers()
975 *ppDescriptor = &( pxNetworkBuffers[ uxIndex ] ); in vNetworkInterfaceAllocateRAMToBuffers()
979 …pxNetworkBuffers[ uxIndex ].pucEthernetBuffer = &( pucNetworkPacketBuffers[ uxOffset + ipBUFFER_PA… in vNetworkInterfaceAllocateRAMToBuffers()
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_DHCPv6/
DFreeRTOS_DHCPv6_stubs.c287 pxConfig->uxIndex = 0; in xStubxBitConfig_init()
298 pxConfig->uxIndex++; in xStubucBitConfig_read_8()
327 pxConfig->uxIndex += uxSize; in xStubxBitConfig_read_uc()
359 pxConfig->uxIndex += 2; in xStubusBitConfig_read_16()
386 pxConfig->uxIndex += 4; in xStubulBitConfig_read_32()
/FreeRTOS-Plus-TCP-v4.0.0/tools/tcp_utilities/include/
Dhttp_client_test.h32 void wakeupHTTPClient( size_t uxIndex,

12