Lines Matching full:dispatch
47 self.undef_list.append( "DISPATCH" )
88 dispatch = "RETURN_DISPATCH"
90 dispatch = "DISPATCH"
109 % (dispatch, f.name, name)
112 % (dispatch, f.name, p_string, name, t_string, o_string)
128 * DISPATCH(func, args, msg) - code to do dispatch of named function.
130 * RETURN_DISPATCH(func, args, msg) - code to do dispatch with a return value
136 * #define DISPATCH(func, args, msg) \\
137 * struct _glapi_table *dispatch = CurrentDispatch; \\
138 * (*dispatch->func) args
139 * #define RETURN DISPATCH(func, args, msg) \\
140 * struct _glapi_table *dispatch = CurrentDispatch; \\
141 * return (*dispatch->func) args
159 #ifndef DISPATCH
160 #error DISPATCH must be defined
177 * This is how a dispatch table can be initialized with all the functions