Searched defs:LWIP_DEBUGF (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Ddebug.h50 /** flag for LWIP_DEBUGF to enable that debug message */
52 /** flag for LWIP_DEBUGF to disable that debug message */
55 /** flag for LWIP_DEBUGF indicating a tracing message (to follow program flow) */
57 /** flag for LWIP_DEBUGF indicating a state debug message (to follow module states) */
59 /** flag for LWIP_DEBUGF indicating newly added code, not thoroughly tested yet */
61 /** flag for LWIP_DEBUGF to halt after printing this debug message */
74 # define LWIP_DEBUGF(debug,x) do { if (((debug) & DBG_ON) && ((debug) & DBG_TYPES_ON) && ((s16_t)((debug) & DBG_MASK_LEVEL) >= DBG_MIN_LEVEL)) { LWIP_PLATFORM_DIAG(x); if ((debug) & DBG_HALT) while(1); } } while(0) macro
77 # define LWIP_DEBUGF(debug,x) do {} while (0) macro
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Ddebug.h51 /** flag for LWIP_DEBUGF to enable that debug message */
53 /** flag for LWIP_DEBUGF to disable that debug message */
56 /** flag for LWIP_DEBUGF indicating a tracing message (to follow program flow) */
58 /** flag for LWIP_DEBUGF indicating a state debug message (to follow module states) */
60 /** flag for LWIP_DEBUGF indicating newly added code, not thoroughly tested yet */
62 /** flag for LWIP_DEBUGF to halt after printing this debug message */
80 #ifndef LWIP_DEBUGF
84 #define LWIP_DEBUGF(debug, message) do { \ macro
95 #endif /* !LWIP_DEBUGF */
99 #error LWIP_DEBUGF i
101 #define LWIP_DEBUGF macro
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/vbox/include/
H A Dlwip-log.h75 #define LWIP_DEBUGF(_when, _args) \ macro
88 #define LWIP_DEBUGF(_when, _args) do { } while (0) macro

Completed in 101 milliseconds