Home | History | Annotate | Download | only in inc

Lines Matching refs:fct

34 * CHECK_PTR(fct, p, err, errValue)
36 * to errValue and jumps to the label <fct>_cleanUp. A trace is displayed
40 #define CHECK_PTR(fct, p, err, errValue) \
45 M4OSA_TRACE1_1((M4OSA_Char*)"" #fct "(L%d): " #p " is NULL, returning " #errValue "",__LINE__) ; \
46 goto fct##_cleanUp; \
52 * CHECK_ERR(fct, err)
55 * jumps to the label <fct>_cleanUp.
58 #define CHECK_ERR(fct, err) \
62 M4OSA_TRACE1_2((M4OSA_Char*)"!!! " #fct "(L%d): ERROR 0x%.8x returned",\
64 goto fct##_cleanUp; \
71 * CHECK_ERR(fct, err)
75 * The macro jumps to the label <fct>_cleanUp.
78 #define CHECK_STATE(fct, stateValue, state) \
82 M4OSA_TRACE1_1("" #fct " called in bad state %d", state) ; \
84 goto fct##_cleanUp; \