Lines Matching refs:functions

178 #define INIT_CLASS_ENTRY(class_container, class_name, functions) \  argument
179 INIT_OVERLOADED_CLASS_ENTRY(class_container, class_name, functions, NULL, NULL, NULL)
181 #define INIT_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions) \ argument
182 …INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions, NULL, NULL,…
184 #define INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions, hand… argument
189 …INIT_CLASS_ENTRY_INIT_METHODS(class_container, functions, handle_fcall, handle_propget, handle_pro…
192 #define INIT_CLASS_ENTRY_INIT_METHODS(class_container, functions, handle_fcall, handle_propget, han… argument
224 class_container.info.internal.builtin_functions = functions; \
227 #define INIT_OVERLOADED_CLASS_ENTRY(class_container, class_name, functions, handle_fcall, handle_pr… argument
228 …INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, sizeof(class_name)-1, functions, handl…
230 #define INIT_NS_CLASS_ENTRY(class_container, ns, class_name, functions) \ argument
231 INIT_CLASS_ENTRY(class_container, ZEND_NS_NAME(ns, class_name), functions)
232 #define INIT_OVERLOADED_NS_CLASS_ENTRY_EX(class_container, ns, class_name, functions, handle_fcall,… argument
233 …, ZEND_NS_NAME(ns, class_name), sizeof(ZEND_NS_NAME(ns, class_name))-1, functions, handle_fcall, h…
234 #define INIT_OVERLOADED_NS_CLASS_ENTRY(class_container, ns, class_name, functions, handle_fcall, ha… argument
235 …INIT_OVERLOADED_CLASS_ENTRY(class_container, ZEND_NS_NAME(ns, class_name), functions, handle_fcall…
278 ZEND_API int zend_register_functions(zend_class_entry *scope, const zend_function_entry *functions,…
279 ZEND_API void zend_unregister_functions(const zend_function_entry *functions, int count, HashTable …