Home | History | Annotate | Download | only in inc

Lines Matching refs:err

34 * CHECK_PTR(fct, p, err, errValue)
35 * @note This macro checks the value p. If it is NULL, it sets the variable err
40 #define CHECK_PTR(fct, p, err, errValue) \
44 (err) = (errValue) ; \
52 * CHECK_ERR(fct, err)
53 * @note This macro checks the value err. If it is not NULL, a trace is displayed
58 #define CHECK_ERR(fct, err) \
60 if(M4NO_ERROR != (err)) \
63 __LINE__,err) ; \
71 * CHECK_ERR(fct, err)
73 * err is set to M4ERR_STATE.
83 (err) = M4ERR_STATE ; \