Home
last modified time | relevance | path

Searched full:do (Results 1 – 25 of 442) sorted by relevance

12345678910>>...18

/FreeRTOS-Plus-TCP-v4.0.0/
DGenerateOriginalFiles.py19 # FreeRTOS Kernel includes. DO NOT change the order in the list.
28 # FreeRTOS+TCP include files. DO NOT change the order in the list.
60 # DO NOT MODIFY. The modules to combine to make up the original FreeRTOS_ARP.c
63 # DO NOT MODIFY. The modules to combine to make up the original FreeRTOS_DHCP.c
66 # DO NOT MODIFY. The modules to combine to make up the original FreeRTOS_DNS.c
73 # DO NOT MODIFY. The modules to combine to make up the original FreeRTOS_IP.c
79 # DO NOT MODIFY. The modules to combine to make up the original FreeRTOS_Sockets.c
82 # DO NOT MODIFY. The modules to combine to make up the original FreeRTOS_Stream_Buffer.c
85 # DO NOT MODIFY. The modules to combine to make up the original FreeRTOS_TCP_IP.c
92 # DO NOT MODIFY. The modules to combine to make up the original FreeRTOS_TCP_WIN.c
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/M487/
Dm480_eth.h67 #define BMSR_ANEGCAPABLE 0x0008 /* Able to do auto-negotiation */
71 #define BMSR_10HALF 0x0800 /* Can do 10mbps, half-duplex */
72 #define BMSR_10FULL 0x1000 /* Can do 10mbps, full-duplex */
73 #define BMSR_100HALF 0x2000 /* Can do 100mbps, half-duplex */
74 #define BMSR_100FULL 0x4000 /* Can do 100mbps, full-duplex */
75 #define BMSR_100BASE4 0x8000 /* Can do 100mbps, 4k packets */
137 #define ETH_TS_ENABLE() do { EMAC->TSCTL = EMAC_TSCTL_TSEN_Msk; } while( 0 )
138 …#define ETH_TS_START() do { EMAC->TSCTL |= ( EMAC_TSCTL_TSMODE_Msk | EMAC_TSCTL_TSIEN_Msk ); }…
Dm480_eth.c32 #define ETH_TRIGGER_RX() do { EMAC->RXST = 0; } while( 0 )
33 #define ETH_TRIGGER_TX() do { EMAC->TXST = 0; } while( 0 )
34 #define ETH_ENABLE_TX() do { EMAC->CTL |= EMAC_CTL_TXON; } while( 0 )
35 #define ETH_ENABLE_RX() do { EMAC->CTL |= EMAC_CTL_RXON; } while( 0 )
36 #define ETH_DISABLE_TX() do { EMAC->CTL &= ~EMAC_CTL_TXON; } while( 0 )
37 #define ETH_DISABLE_RX() do { EMAC->CTL &= ~EMAC_CTL_RXON; } while( 0 )
/FreeRTOS-Plus-TCP-v4.0.0/test/cbmc/proofs/ICMP/ProcessICMPEchoRequest/
DProcessICMPEchoRequest_harness.c11 * furnished to do so, subject to the following conditions:
42 /* We do not need to calculate the actual checksum for the proof to be complete.
56 /* We do not need to calculate the actual checksum for the proof to be complete.
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/xilinx_ultrascale/
Dx_emacpsif_dma.c11 * the Software, and to permit persons to whom the Software is furnished to do so,
215 * But it forgets to do a read-back. Do so now to avoid ever-returning ISR's. */ in emacps_send_handler()
219 * "isr_events". The task in NetworkInterface will wake-up and do the necessary work. in emacps_send_handler()
260 /* Open a do {} while ( 0 ) loop to be able to call break. */ in emacps_send_message()
261 do in emacps_send_message()
289 /* Buffer has been transferred, do not release it. */ in emacps_send_message()
353 * But it forgets to do a read-back. Do so now. */ in emacps_recv_handler()
378 do in prvPassEthMessages()
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_UDP_IP.c11 * the Software, and to permit persons to whom the Software is furnished to do so,
90 * @brief Process the generated UDP packet and do other checks before sending the
121 /* do nothing, coverity happy */ in vProcessGeneratedUDPPacket()
170 /* do nothing, coverity happy */ in xProcessReceivedUDPPacket()
DFreeRTOS_TCP_Utils_IPv6.c11 * the Software, and to permit persons to whom the Software is furnished to do so,
68 do in prvSocketSetMSS_IPV6()
85 /* Do not allow MSS smaller than tcpMINIMUM_SEGMENT_LENGTH. */ in prvSocketSetMSS_IPV6()
DFreeRTOS_TCP_Utils_IPv4.c11 * the Software, and to permit persons to whom the Software is furnished to do so,
65 /* Do not allow MSS smaller than tcpMINIMUM_SEGMENT_LENGTH. */ in prvSocketSetMSS_IPV4()
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/Compiler/CCS/
Dpack_struct_end.h11 * the Software, and to permit persons to whom the Software is furnished to do so,
24 * @brief: TI's Code Generation Tools do not add a trailing directive for packing structures
/FreeRTOS-Plus-TCP-v4.0.0/test/cbmc/proofs/
Dmake_remove_makefiles.py12 # furnished to do so, subject to the following conditions:
36 # We do not want to remove hand-written Makefiles, so
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/Zynq/
Dx_emacpsif_dma.c10 * furnished to do so, subject to the following conditions:
41 * the Software, and to permit persons to whom the Software is furnished to do so,
217 * But it forgets to do a read-back. Do so now to avoid ever-returning ISR's. */ in emacps_send_handler()
221 * "isr_events". The task in NetworkInterface will wake-up and do the necessary work. in emacps_send_handler()
263 /* Open a do {} while ( 0 ) loop to be able to call break. */ in emacps_send_message()
264 do in emacps_send_message()
292 /* Buffer has been transferred, do not release it. */ in emacps_send_message()
369 * But it forgets to do a read-back. Do so now. */ in emacps_recv_handler()
395 do in prvPassEthMessages()
/FreeRTOS-Plus-TCP-v4.0.0/test/cbmc/patches/
Dunpatch.py12 # furnished to do so, subject to the following conditions:
35 print("Nothing to do here.")
/FreeRTOS-Plus-TCP-v4.0.0/tools/tcp_utilities/include/
Dplus_tcp_demo_cli.h11 * the Software, and to permit persons to whom the Software is furnished to do so,
42 * Do the regular checks.
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_TCP_Utils/
DFreeRTOS_TCP_Utils_stubs.c11 * the Software, and to permit persons to whom the Software is furnished to do so,
54 /* Do Nothing */ in prvSocketSetMSS_IPV6()
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/ConfigFiles/
Dpack_struct_start.h11 * the Software, and to permit persons to whom the Software is furnished to do so,
35 /* Nothing to do here. */
DWinBase.h1 /* Nothing to do */
DWindows.h1 /* Nothing to do */
/FreeRTOS-Plus-TCP-v4.0.0/test/Coverity/ConfigFiles/
Dpack_struct_start.h11 * the Software, and to permit persons to whom the Software is furnished to do so,
35 /* Nothing to do here. */
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/Compiler/Tasking/
Dpack_struct_start.h11 * the Software, and to permit persons to whom the Software is furnished to do so,
35 /* Nothing to do here. */
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/Compiler/GCC/
Dpack_struct_start.h11 * the Software, and to permit persons to whom the Software is furnished to do so,
35 /* Nothing to do here. */
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/
Dcatch_assert.h8 * the Software, and to permit persons to whom the Software is furnished to do so,
55 do { \
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_TCP_Transmission/
DFreeRTOS_TCP_Transmission_stubs.c11 * the Software, and to permit persons to whom the Software is furnished to do so,
71 /* Do Nothing */ in prvTCPReturnPacket_IPV6()
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/ThirdParty/MSP432/
DNetworkMiddleware.c16 * the Software, and to permit persons to whom the Software is furnished to do so,
150 else /* do not prevent reset */ in publicPreventNetworkReset()
213 * Set a flag to indicate that the tasks do not need to be created again */ in vApplicationIPNetworkEventHook()
/FreeRTOS-Plus-TCP-v4.0.0/source/include/
DFreeRTOS_TCP_State_Handling.h11 * the Software, and to permit persons to whom the Software is furnished to do so,
55 * The heart of all: check incoming packet for valid data and acks and do what
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_IP_DiffConfig2/
DIP_DiffConfig2_list_macros.h11 * the Software, and to permit persons to whom the Software is furnished to do so,
92 /* Do not call the following function directly. It is there for downward compatibility.

12345678910>>...18