Lines Matching refs:a

5 Since the FreeRTOS-Plus-TCP library is designed for small-embedded devices, it needs to have a very…
25 Thus, it marks some statements as dead code. This is a false positive.
40 However, the FreeRTOS-kernel function `xTaskCreate` expects a function signature
42 function signature of `prvIPTask` does not have a `const` qualifier in the
49 operation is safe to perform in that case, as we are using a generic API
55 - MISRA C-2012 Rule 11.1 Converting from a void pointer to a function pointer.
66 - MISRA C-2012 Rule 11.3 The data received/sent by the IP stack is represent as a
69 a byte stream to a structure, MISRA warns us that it can lead to
71 packets are stored are always aligned to a 4 byte word boundary with an
77 instead of a `uint32_t`.
83 - MISRA c-2012 Rule 11.4 Warns about conversion between a pointer and an integer.
84 Whenever a socket is created using the `FreeRTOS_Socket` API, either a
85 valid socket (a valid non-NULL pointer) is returned; or
88 to a pointer is used to convey the error to various functions. If the
94 - MISRA Rule 11.4 The following statement may trigger a:
110 - When sending and receiving a DHCP event to the IP-stack, the events are
111 converted to a void pointer and sent to the IP-task. The function used
118 - MISRA Rule 11.6 `uintptr_t` is guaranteed by the implementation to fit a
119 pointer size of the platform. The pointer has to be moved backward by a
120 constant offset to get to a 'hidden' pointer which is not available for
128 assigning one value to another. In this case however, a function
143 severe implications on the stack usage and can lead to a serious issue.
145 Any socket spawned (child) by a socket in listening state (parent)
147 have a secondary child socket thereby limiting the number of recursive
158 are undefined using `#undef` before being redefined to a proper
174 behaviour. The function `snprintf` is used to insert information in a
175 logging string. This is only used in a utility function which aids in