Lines Matching refs:ZEND_API
31 ZEND_API extern void (*zend_execute_ex)(zend_execute_data *execute_data);
32 ZEND_API extern void (*zend_execute_internal)(zend_execute_data *execute_data, zval *return_value);
35 ZEND_API extern zend_class_entry *(*zend_autoload)(zend_string *name, zend_string *lc_name);
40 ZEND_API void zend_shutdown_executor_values(bool fast_shutdown);
42 ZEND_API void zend_init_execute_data(zend_execute_data *execute_data, zend_op_array *op_array, zval…
43 ZEND_API void zend_init_func_execute_data(zend_execute_data *execute_data, zend_op_array *op_array,…
44 ZEND_API void zend_init_code_execute_data(zend_execute_data *execute_data, zend_op_array *op_array,…
45 ZEND_API void zend_execute(zend_op_array *op_array, zval *return_value);
46 ZEND_API void execute_ex(zend_execute_data *execute_data);
47 ZEND_API void execute_internal(zend_execute_data *execute_data, zval *return_value);
48 ZEND_API bool zend_is_valid_class_name(zend_string *name);
49 ZEND_API zend_class_entry *zend_lookup_class(zend_string *name);
50 ZEND_API zend_class_entry *zend_lookup_class_ex(zend_string *name, zend_string *lcname, uint32_t fl…
51 ZEND_API zend_class_entry *zend_get_called_scope(zend_execute_data *ex);
52 ZEND_API zend_object *zend_get_this_object(zend_execute_data *ex);
53 ZEND_API zend_result zend_eval_string(const char *str, zval *retval_ptr, const char *string_name);
54 ZEND_API zend_result zend_eval_stringl(const char *str, size_t str_len, zval *retval_ptr, const cha…
55 ZEND_API zend_result zend_eval_string_ex(const char *str, zval *retval_ptr, const char *string_name…
56 ZEND_API zend_result zend_eval_stringl_ex(const char *str, size_t str_len, zval *retval_ptr, const …
59 extern ZEND_API const zend_internal_function zend_pass_function;
61 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_missing_arg_error(zend_execute_data *execute_data);
62 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_deprecated_function(const zend_function *fbc);
63 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_false_to_array_deprecated(void);
65 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_use_resource_as_offset(const zval *dim);
67 ZEND_API bool ZEND_FASTCALL zend_verify_ref_assignable_zval(zend_reference *ref, zval *zv, bool str…
68 ZEND_API bool ZEND_FASTCALL zend_verify_prop_assignable_by_ref(zend_property_info *prop_info, zval …
70 ZEND_API ZEND_COLD void zend_throw_ref_type_error_zval(zend_property_info *prop, zval *zv);
71 ZEND_API ZEND_COLD void zend_throw_ref_type_error_type(zend_property_info *prop1, zend_property_inf…
72 ZEND_API ZEND_COLD zval* ZEND_FASTCALL zend_undefined_offset_write(HashTable *ht, zend_long lval);
73 ZEND_API ZEND_COLD zval* ZEND_FASTCALL zend_undefined_index_write(HashTable *ht, zend_string *offse…
74 ZEND_API ZEND_COLD void zend_wrong_string_offset_error(void);
76 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_readonly_property_modification_error(zend_property_info …
77 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_readonly_property_indirect_modification_error(zend_prope…
79 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_cannot_add_element(void);
81 ZEND_API bool zend_verify_scalar_type_hint(uint32_t type_mask, zval *arg, bool strict, bool is_inte…
82 ZEND_API ZEND_COLD void zend_verify_arg_error(
84 ZEND_API ZEND_COLD void zend_verify_return_error(
86 ZEND_API ZEND_COLD void zend_verify_never_error(
88 ZEND_API bool zend_verify_ref_array_assignable(zend_reference *ref);
89 ZEND_API bool zend_check_user_type_slow(
93 ZEND_API bool zend_internal_call_should_throw(zend_function *fbc, zend_execute_data *call);
94 ZEND_API ZEND_COLD void zend_internal_call_arginfo_violation(zend_function *fbc);
95 ZEND_API bool zend_verify_internal_return_type(zend_function *zf, zval *ret);
110 ZEND_API void ZEND_FASTCALL zend_ref_add_type_source(zend_property_info_source_list *source_list, z…
111 ZEND_API void ZEND_FASTCALL zend_ref_del_type_source(zend_property_info_source_list *source_list, z…
113 ZEND_API zval* zend_assign_to_typed_ref(zval *variable_ptr, zval *value, zend_uchar value_type, boo…
176 ZEND_API zend_result ZEND_FASTCALL zval_update_constant(zval *pp);
177 ZEND_API zend_result ZEND_FASTCALL zval_update_constant_ex(zval *pp, zend_class_entry *scope);
207 ZEND_API void zend_vm_stack_init(void);
208 ZEND_API void zend_vm_stack_init_ex(size_t page_size);
209 ZEND_API void zend_vm_stack_destroy(void);
210 ZEND_API void* zend_vm_stack_extend(size_t size);
335 ZEND_API void ZEND_FASTCALL zend_free_extra_named_params(zend_array *extra_named_params);
338 ZEND_API const char *get_active_class_name(const char **space);
339 ZEND_API const char *get_active_function_name(void);
340 ZEND_API const char *get_active_function_arg_name(uint32_t arg_num);
341 ZEND_API const char *get_function_arg_name(const zend_function *func, uint32_t arg_num);
342 ZEND_API zend_string *get_active_function_or_method_name(void);
343 ZEND_API zend_string *get_function_or_method_name(const zend_function *func);
344 ZEND_API const char *zend_get_executed_filename(void);
345 ZEND_API zend_string *zend_get_executed_filename_ex(void);
346 ZEND_API uint32_t zend_get_executed_lineno(void);
347 ZEND_API zend_class_entry *zend_get_executed_scope(void);
348 ZEND_API bool zend_is_executing(void);
349 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_cannot_pass_by_reference(uint32_t arg_num);
351 ZEND_API void zend_set_timeout(zend_long seconds, bool reset_signals);
352 ZEND_API void zend_unset_timeout(void);
353 ZEND_API ZEND_NORETURN void ZEND_FASTCALL zend_timeout(void);
354 ZEND_API zend_class_entry *zend_fetch_class(zend_string *class_name, uint32_t fetch_type);
355 ZEND_API zend_class_entry *zend_fetch_class_with_scope(zend_string *class_name, uint32_t fetch_type…
356 ZEND_API zend_class_entry *zend_fetch_class_by_name(zend_string *class_name, zend_string *lcname, u…
358 ZEND_API zend_function * ZEND_FASTCALL zend_fetch_function(zend_string *name);
359 ZEND_API zend_function * ZEND_FASTCALL zend_fetch_function_str(const char *name, size_t len);
360 ZEND_API void ZEND_FASTCALL zend_init_func_run_time_cache(zend_op_array *op_array);
362 ZEND_API void zend_fetch_dimension_const(zval *result, zval *container, zval *dim, int type);
364 ZEND_API zval* zend_get_compiled_variable_value(const zend_execute_data *execute_data_ptr, uint32_t…
366 ZEND_API bool zend_gcc_global_regs(void);
376 ZEND_API int zend_set_user_opcode_handler(zend_uchar opcode, user_opcode_handler_t handler);
377 ZEND_API user_opcode_handler_t zend_get_user_opcode_handler(zend_uchar opcode);
379 ZEND_API zval *zend_get_zval_ptr(const zend_op *opline, int op_type, const znode_op *node, const ze…
381 ZEND_API void zend_clean_and_cache_symbol_table(zend_array *symbol_table);
382 ZEND_API void ZEND_FASTCALL zend_free_compiled_variables(zend_execute_data *execute_data);
383 ZEND_API void zend_unfinished_calls_gc(zend_execute_data *execute_data, zend_execute_data *call, ui…
384 ZEND_API void zend_cleanup_unfinished_execution(zend_execute_data *execute_data, uint32_t op_num, u…
385 ZEND_API ZEND_ATTRIBUTE_DEPRECATED HashTable *zend_unfinished_execution_gc(zend_execute_data *execu…
386 ZEND_API HashTable *zend_unfinished_execution_gc_ex(zend_execute_data *execute_data, zend_execute_d…
391 ZEND_API int ZEND_FASTCALL zend_handle_undef_args(zend_execute_data *call);
455 ZEND_API bool zend_verify_property_type(zend_property_info *info, zval *property, bool strict);