Lines Matching defs:LogFlowFunc
804 /** @def LogFlowFunc
813 # define LogFlowFunc(a) \
816 # define LogFlowFunc(a) \
834 * The same as LogFlowFunc but for class functions (methods): the resulting log
861 /** Shortcut to |LogFlowFunc ("ENTER\n")|, marks the beginnig of the function. */
862 #define LogFlowFuncEnter() LogFlowFunc(("ENTER\n"))
864 /** Shortcut to |LogFlowFunc ("LEAVE\n")|, marks the end of the function. */
865 #define LogFlowFuncLeave() LogFlowFunc(("LEAVE\n"))
867 /** Shortcut to |LogFlowFunc ("LEAVE: %Rrc\n")|, marks the end of the function. */
868 #define LogFlowFuncLeaveRC(rc) LogFlowFunc(("LEAVE: %Rrc\n", (rc)))