Lines Matching refs:functions

165 #define INIT_CLASS_ENTRY(class_container, class_name, functions) \  argument
166 INIT_OVERLOADED_CLASS_ENTRY(class_container, class_name, functions, NULL, NULL, NULL)
168 #define INIT_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions) \ argument
169 …INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions, NULL, NULL,…
171 #define INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions, hand… argument
180 …INIT_CLASS_ENTRY_INIT_METHODS(class_container, functions, handle_fcall, handle_propget, handle_pro…
183 #define INIT_CLASS_ENTRY_INIT_METHODS(class_container, functions, handle_fcall, handle_propget, han… argument
215 class_container.info.internal.builtin_functions = functions; \
218 #define INIT_OVERLOADED_CLASS_ENTRY(class_container, class_name, functions, handle_fcall, handle_pr… argument
219 …INIT_OVERLOADED_CLASS_ENTRY_EX(class_container, class_name, sizeof(class_name)-1, functions, handl…
221 #define INIT_NS_CLASS_ENTRY(class_container, ns, class_name, functions) \ argument
222 INIT_CLASS_ENTRY(class_container, ZEND_NS_NAME(ns, class_name), functions)
223 #define INIT_OVERLOADED_NS_CLASS_ENTRY_EX(class_container, ns, class_name, functions, handle_fcall,… argument
224 …, ZEND_NS_NAME(ns, class_name), sizeof(ZEND_NS_NAME(ns, class_name))-1, functions, handle_fcall, h…
225 #define INIT_OVERLOADED_NS_CLASS_ENTRY(class_container, ns, class_name, functions, handle_fcall, ha… argument
226 …INIT_OVERLOADED_CLASS_ENTRY(class_container, ZEND_NS_NAME(ns, class_name), functions, handle_fcall…
268 ZEND_API int zend_register_functions(zend_class_entry *scope, const zend_function_entry *functions,…
269 ZEND_API void zend_unregister_functions(const zend_function_entry *functions, int count, HashTable …