Home | History | Annotate | Download | only in gen

Lines Matching refs:dispatch

48         self.undef_list.append( "DISPATCH" )
89 dispatch = "RETURN_DISPATCH"
91 dispatch = "DISPATCH"
110 % (dispatch, f.name, name)
113 % (dispatch, f.name, p_string, name, t_string, o_string)
129 * DISPATCH(func, args, msg) - code to do dispatch of named function.
131 * RETURN_DISPATCH(func, args, msg) - code to do dispatch with a return value
137 * #define DISPATCH(func, args, msg) \\
138 * struct _glapi_table *dispatch = CurrentDispatch; \\
139 * (*dispatch->func) args
140 * #define RETURN DISPATCH(func, args, msg) \\
141 * struct _glapi_table *dispatch = CurrentDispatch; \\
142 * return (*dispatch->func) args
160 #ifndef DISPATCH
161 #error DISPATCH must be defined
178 * This is how a dispatch table can be initialized with all the functions