/PHP-8.0/Zend/ |
H A D | zend_ini_scanner.h | 31 zend_result zend_ini_open_file_for_scanning(zend_file_handle *fh, int scanner_mode); 32 zend_result zend_ini_prepare_string_for_scanning(char *str, int scanner_mode);
|
H A D | zend_modules.h | 80 zend_result (*module_startup_func)(INIT_FUNC_ARGS); 81 zend_result (*module_shutdown_func)(SHUTDOWN_FUNC_ARGS); 82 zend_result (*request_startup_func)(INIT_FUNC_ARGS); 83 zend_result (*request_shutdown_func)(SHUTDOWN_FUNC_ARGS); 94 zend_result (*post_deactivate_func)(void);
|
H A D | zend_multibyte.c | 51 static zend_result dummy_encoding_list_parser(const char *encoding_list, size_t encoding_list_len, … in dummy_encoding_list_parser() 63 static zend_result dummy_internal_encoding_setter(const zend_encoding *encoding) in dummy_internal_encoding_setter() 87 ZEND_API zend_result zend_multibyte_set_functions(const zend_multibyte_functions *functions) in zend_multibyte_set_functions() 158 ZEND_API zend_result zend_multibyte_parse_encoding_list(const char *encoding_list, size_t encoding_… in zend_multibyte_parse_encoding_list() 183 ZEND_API zend_result zend_multibyte_set_internal_encoding(const zend_encoding *encoding) in zend_multibyte_set_internal_encoding() 188 ZEND_API zend_result zend_multibyte_set_script_encoding_by_string(const char *new_value, size_t new… in zend_multibyte_set_script_encoding_by_string()
|
H A D | zend_multibyte.h | 32 typedef zend_result (*zend_encoding_list_parser)(const char *encoding_list, size_t encoding_list_le… 34 typedef zend_result (*zend_encoding_internal_encoding_setter)(const zend_encoding *encoding); 60 ZEND_API zend_result zend_multibyte_set_functions(const zend_multibyte_functions *functions); 75 ZEND_API zend_result zend_multibyte_set_script_encoding_by_string(const char *new_value, size_t new…
|
H A D | zend_operators.h | 41 ZEND_API zend_result ZEND_FASTCALL add_function(zval *result, zval *op1, zval *op2); 42 ZEND_API zend_result ZEND_FASTCALL sub_function(zval *result, zval *op1, zval *op2); 43 ZEND_API zend_result ZEND_FASTCALL mul_function(zval *result, zval *op1, zval *op2); 44 ZEND_API zend_result ZEND_FASTCALL pow_function(zval *result, zval *op1, zval *op2); 45 ZEND_API zend_result ZEND_FASTCALL div_function(zval *result, zval *op1, zval *op2); 46 ZEND_API zend_result ZEND_FASTCALL mod_function(zval *result, zval *op1, zval *op2); 48 ZEND_API zend_result ZEND_FASTCALL boolean_not_function(zval *result, zval *op1); 49 ZEND_API zend_result ZEND_FASTCALL bitwise_not_function(zval *result, zval *op1); 55 ZEND_API zend_result ZEND_FASTCALL concat_function(zval *result, zval *op1, zval *op2); 247 ZEND_API zend_result ZEND_FASTCALL increment_function(zval *op1); [all …]
|
H A D | zend_language_scanner.h | 80 ZEND_API zend_result zend_multibyte_set_filter(const zend_encoding *onetime_encoding); 81 ZEND_API zend_result zend_lex_tstring(zval *zv, zend_lexer_ident_ref ident_ref);
|
H A D | zend_API.h | 321 ZEND_API zend_result zend_startup_module(zend_module_entry *module_entry); 324 ZEND_API zend_result zend_startup_module_ex(zend_module_entry *module); 432 ZEND_API zend_result object_init_ex(zval *arg, zend_class_entry *ce); 474 ZEND_API zend_result add_next_index_long(zval *arg, zend_long n); 475 ZEND_API zend_result add_next_index_null(zval *arg); 476 ZEND_API zend_result add_next_index_bool(zval *arg, zend_bool b); 478 ZEND_API zend_result add_next_index_double(zval *arg, double d); 479 ZEND_API zend_result add_next_index_str(zval *arg, zend_string *str); 480 ZEND_API zend_result add_next_index_string(zval *arg, const char *str); 610 ZEND_API zend_result zend_delete_global_variable(zend_string *name); [all …]
|
H A D | zend_builtin_functions.h | 23 zend_result zend_startup_builtin_functions(void);
|
H A D | zend_ini.c | 44 static zend_result zend_restore_ini_entry_cb(zend_ini_entry *ini_entry, int stage) /* {{{ */ in zend_restore_ini_entry_cb() 46 zend_result result = FAILURE; in zend_restore_ini_entry_cb() 197 ZEND_API zend_result zend_register_ini_entries(const zend_ini_entry_def *ini_entry, int module_numb… in zend_register_ini_entries() 278 ZEND_API zend_result zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_typ… in zend_alter_ini_entry() 285 ZEND_API zend_result zend_alter_ini_entry_chars(zend_string *name, const char *value, size_t value_… in zend_alter_ini_entry_chars() 287 zend_result ret; in zend_alter_ini_entry_chars() 297 ZEND_API zend_result zend_alter_ini_entry_chars_ex(zend_string *name, const char *value, size_t val… in zend_alter_ini_entry_chars_ex() 299 zend_result ret; in zend_alter_ini_entry_chars_ex() 309 ZEND_API zend_result zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, int modify_… in zend_alter_ini_entry_ex() 361 ZEND_API zend_result zend_restore_ini_entry(zend_string *name, int stage) /* {{{ */ in zend_restore_ini_entry() [all …]
|
H A D | zend_stream.h | 69 ZEND_API zend_result zend_stream_open(const char *filename, zend_file_handle *handle); 70 ZEND_API zend_result zend_stream_fixup(zend_file_handle *file_handle, char **buf, size_t *len);
|
H A D | zend_ini.h | 74 ZEND_API zend_result zend_register_ini_entries(const zend_ini_entry_def *ini_entry, int module_numb… 77 ZEND_API zend_result zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_typ… 78 ZEND_API zend_result zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, int modify_… 79 ZEND_API zend_result zend_alter_ini_entry_chars(zend_string *name, const char *value, size_t value_… 80 ZEND_API zend_result zend_alter_ini_entry_chars_ex(zend_string *name, const char *value, size_t val… 81 ZEND_API zend_result zend_restore_ini_entry(zend_string *name, int stage); 91 ZEND_API zend_result zend_ini_register_displayer(const char *name, uint32_t name_length, void (*dis…
|
H A D | zend_highlight.h | 42 ZEND_API zend_result highlight_file(const char *filename, zend_syntax_highlighter_ini *syntax_highl…
|
H A D | zend_inheritance.h | 33 ZEND_API zend_result zend_do_link_class(zend_class_entry *ce, zend_string *lc_parent_name);
|
H A D | zend_API.c | 932 zend_result ret; in zend_parse_parameter() 1096 zend_result retval; in zend_parse_parameters_ex() 1109 zend_result retval; in zend_parse_parameters() 1123 zend_result retval; in zend_parse_method_parameters() 1163 zend_result retval; in zend_parse_method_parameters_ex() 1628 ZEND_API zend_result add_next_index_long(zval *arg, zend_long n) /* {{{ */ in add_next_index_long() 1637 ZEND_API zend_result add_next_index_null(zval *arg) /* {{{ */ in add_next_index_null() 1646 ZEND_API zend_result add_next_index_bool(zval *arg, zend_bool b) /* {{{ */ in add_next_index_bool() 1664 ZEND_API zend_result add_next_index_double(zval *arg, double d) /* {{{ */ in add_next_index_double() 3690 zend_result result; in zend_fcall_info_call() [all …]
|
H A D | zend_weakrefs.h | 32 ZEND_API zend_result zend_weakrefs_hash_del(HashTable *ht, zend_object *key);
|
H A D | zend_extensions.h | 149 ZEND_API zend_result zend_load_extension(const char *path); 150 ZEND_API zend_result zend_load_extension_handle(DL_HANDLE handle, const char *path);
|
H A D | zend_execute.h | 51 ZEND_API zend_result zend_eval_string(const char *str, zval *retval_ptr, const char *string_name); 52 ZEND_API zend_result zend_eval_stringl(const char *str, size_t str_len, zval *retval_ptr, const cha… 53 ZEND_API zend_result zend_eval_string_ex(const char *str, zval *retval_ptr, const char *string_name… 54 ZEND_API zend_result zend_eval_stringl_ex(const char *str, size_t str_len, zval *retval_ptr, const … 68 ZEND_API ZEND_COLD zend_result ZEND_FASTCALL zend_undefined_offset_write(HashTable *ht, zend_long l… 69 ZEND_API ZEND_COLD zend_result ZEND_FASTCALL zend_undefined_index_write(HashTable *ht, zend_string … 158 ZEND_API zend_result zval_update_constant(zval *pp); 159 ZEND_API zend_result zval_update_constant_ex(zval *pp, zend_class_entry *scope);
|
H A D | zend_interfaces.h | 64 ZEND_API zend_result zend_user_it_valid(zend_object_iterator *_iter); 81 ZEND_API zend_result zend_create_internal_iterator_zval(zval *return_value, zval *obj);
|
H A D | zend.h | 198 zend_result (*stream_open_function)(const char *filename, zend_file_handle *handle); 233 zend_result zend_post_startup(void); 286 extern ZEND_API zend_result (*zend_stream_open_function)(const char *filename, zend_file_handle *ha… 293 extern ZEND_API zend_result (*zend_post_startup_cb)(void); 297 extern ZEND_API zend_result (*zend_preload_autoload)(zend_string *filename);
|
H A D | zend_operators.c | 1022 ZEND_API zend_result ZEND_FASTCALL add_function(zval *result, zval *op1, zval *op2) /* {{{ */ in add_function() 1087 ZEND_API zend_result ZEND_FASTCALL sub_function(zval *result, zval *op1, zval *op2) /* {{{ */ in sub_function() 1156 ZEND_API zend_result ZEND_FASTCALL mul_function(zval *result, zval *op1, zval *op2) /* {{{ */ in mul_function() 1166 static zend_result ZEND_FASTCALL pow_function_base(zval *result, zval *op1, zval *op2) /* {{{ */ in pow_function_base() 1223 ZEND_API zend_result ZEND_FASTCALL pow_function(zval *result, zval *op1, zval *op2) /* {{{ */ in pow_function() 1301 ZEND_API zend_result ZEND_FASTCALL div_function(zval *result, zval *op1, zval *op2) /* {{{ */ in div_function() 1346 ZEND_API zend_result ZEND_FASTCALL mod_function(zval *result, zval *op1, zval *op2) /* {{{ */ in mod_function() 1430 ZEND_API zend_result ZEND_FASTCALL boolean_not_function(zval *result, zval *op1) /* {{{ */ in boolean_not_function() 1455 ZEND_API zend_result ZEND_FASTCALL bitwise_not_function(zval *result, zval *op1) /* {{{ */ in bitwise_not_function() 2411 ZEND_API zend_result ZEND_FASTCALL increment_function(zval *op1) /* {{{ */ in increment_function() [all …]
|
H A D | zend_ts_hash.c | 189 ZEND_API zend_result zend_ts_hash_del(TsHashTable *ht, zend_string *key) in zend_ts_hash_del() 191 zend_result retval; in zend_ts_hash_del() 200 ZEND_API zend_result zend_ts_hash_index_del(TsHashTable *ht, zend_ulong h) in zend_ts_hash_index_del() 202 zend_result retval; in zend_ts_hash_index_del()
|
H A D | zend_ini_scanner.l | 154 static inline zend_result convert_to_number(zval *retval, const char *str, const int str_len) in convert_to_number() 221 static zend_result init_ini_scanner(int scanner_mode, zend_file_handle *fh) in init_ini_scanner() 271 zend_result zend_ini_open_file_for_scanning(zend_file_handle *fh, int scanner_mode) in zend_ini_open_file_for_scanning() 292 zend_result zend_ini_prepare_string_for_scanning(char *str, int scanner_mode) in zend_ini_prepare_string_for_scanning()
|
/PHP-8.0/ext/standard/ |
H A D | head.h | 31 PHPAPI zend_result php_setcookie(zend_string *name, zend_string *value, time_t expires,
|
H A D | head.c | 80 PHPAPI zend_result php_setcookie(zend_string *name, zend_string *value, time_t expires, in php_setcookie() 86 zend_result result; in php_setcookie() 195 static zend_result php_head_parse_cookie_options_array(HashTable *options, zend_long *expires, zend… in php_head_parse_cookie_options_array()
|
/PHP-8.0/ext/bcmath/libbcmath/src/ |
H A D | raisemod.c | 42 zend_result bc_raisemod (bc_num base, bc_num expo, bc_num mod, bc_num *result, int scale) in bc_raisemod()
|