Home
last modified time | relevance | path

Searched refs:zend_result (Results 1 – 25 of 164) sorted by relevance

1234567

/PHP-8.3/ext/dba/
H A Dphp_dba.h78 zend_result (*open)(dba_info *, const char **error);
81 zend_result (*update)(dba_info *, zend_string *, zend_string *, int);
82 zend_result (*exists)(dba_info *, zend_string *);
83 zend_result (*delete)(dba_info *, zend_string *);
86 zend_result (*optimize)(dba_info *);
87 zend_result (*sync)(dba_info *);
95 zend_result dba_open_##x(dba_info *info, const char **error)
103 zend_result dba_exists_##x(dba_info *info, zend_string *key)
105 zend_result dba_delete_##x(dba_info *info, zend_string *key)
111 zend_result dba_optimize_##x(dba_info *info)
[all …]
/PHP-8.3/ext/session/
H A Dphp_session.h41 zend_result (*s_open)(PS_OPEN_ARGS);
42 zend_result (*s_close)(PS_CLOSE_ARGS);
43 zend_result (*s_read)(PS_READ_ARGS);
44 zend_result (*s_write)(PS_WRITE_ARGS);
45 zend_result (*s_destroy)(PS_DESTROY_ARGS);
48 zend_result (*s_validate_sid)(PS_VALIDATE_SID_ARGS);
225 zend_result (*decode)(PS_SERIALIZER_DECODE_ARGS);
251 PHPAPI zend_result php_session_destroy(void);
262 PHPAPI zend_result php_session_start(void);
263 PHPAPI zend_result php_session_flush(int write);
[all …]
H A Dmod_user.c50 static zend_result verify_bool_return_type_userland_calls(const zval* value) in verify_bool_return_type_userland_calls()
86 zend_result ret = FAILURE; in PS_OPEN_FUNC()
114 zend_result ret = FAILURE; in PS_CLOSE_FUNC()
147 zend_result ret = FAILURE; in PS_READ_FUNC()
170 zend_result ret = FAILURE; in PS_WRITE_FUNC()
188 zend_result ret = FAILURE; in PS_DESTROY_FUNC()
261 zend_result ret = FAILURE; in PS_VALIDATE_SID_FUNC()
280 zend_result ret = FAILURE; in PS_UPDATE_TIMESTAMP_FUNC()
/PHP-8.3/main/
H A Dphp_main.h39 PHPAPI zend_result php_request_startup(void);
41 PHPAPI zend_result php_module_startup(sapi_module_struct *sf, zend_module_entry *additional_module);
45 PHPAPI zend_result php_register_extensions(zend_module_entry * const * ptr, int count);
49 PHPAPI zend_result php_lint_script(zend_file_handle *file);
55 PHPAPI zend_result php_stream_open_for_zend_ex(zend_file_handle *handle, int mode);
/PHP-8.3/Zend/
H A Dzend_multibyte.h32 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);
69 ZEND_API zend_result zend_multibyte_parse_encoding_list(const char *encoding_list, size_t encoding_…
74 ZEND_API zend_result zend_multibyte_set_internal_encoding(const zend_encoding *encoding);
75 ZEND_API zend_result zend_multibyte_set_script_encoding_by_string(const char *new_value, size_t new…
H A Dzend_modules.h80 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 Dzend_ini_scanner.h31 zend_result zend_ini_open_file_for_scanning(zend_file_handle *fh, int scanner_mode);
32 zend_result zend_ini_prepare_string_for_scanning(const char *str, int scanner_mode);
H A Dzend_multibyte.c51 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 Dzend_ini.h74 ZEND_API zend_result zend_register_ini_entries(const zend_ini_entry_def *ini_entry, int module_numb…
75 ZEND_API zend_result zend_register_ini_entries_ex(const zend_ini_entry_def *ini_entry, int module_n…
79 ZEND_API zend_result zend_alter_ini_entry(zend_string *name, zend_string *new_value, int modify_typ…
80 ZEND_API zend_result zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, int modify_…
81 ZEND_API zend_result zend_alter_ini_entry_chars(zend_string *name, const char *value, size_t value_…
82 ZEND_API zend_result zend_alter_ini_entry_chars_ex(zend_string *name, const char *value, size_t val…
83 ZEND_API zend_result zend_restore_ini_entry(zend_string *name, int stage);
141 ZEND_API zend_result zend_ini_register_displayer(const char *name, uint32_t name_length, void (*dis…
237 ZEND_API zend_result zend_parse_ini_file(zend_file_handle *fh, bool unbuffered_errors, int scanner_…
238 ZEND_API zend_result zend_parse_ini_string(const char *str, bool unbuffered_errors, int scanner_mod…
H A Dzend_operators.h42 ZEND_API zend_result ZEND_FASTCALL add_function(zval *result, zval *op1, zval *op2);
43 ZEND_API zend_result ZEND_FASTCALL sub_function(zval *result, zval *op1, zval *op2);
44 ZEND_API zend_result ZEND_FASTCALL mul_function(zval *result, zval *op1, zval *op2);
45 ZEND_API zend_result ZEND_FASTCALL pow_function(zval *result, zval *op1, zval *op2);
46 ZEND_API zend_result ZEND_FASTCALL div_function(zval *result, zval *op1, zval *op2);
47 ZEND_API zend_result ZEND_FASTCALL mod_function(zval *result, zval *op1, zval *op2);
49 ZEND_API zend_result ZEND_FASTCALL boolean_not_function(zval *result, zval *op1);
50 ZEND_API zend_result ZEND_FASTCALL bitwise_not_function(zval *result, zval *op1);
56 ZEND_API zend_result ZEND_FASTCALL concat_function(zval *result, zval *op1, zval *op2);
277 ZEND_API zend_result ZEND_FASTCALL increment_function(zval *op1);
[all …]
H A Dzend_API.h419 ZEND_API zend_result zend_get_module_started(const char *module_name);
534 ZEND_API zend_result object_init_ex(zval *arg, zend_class_entry *ce);
609 ZEND_API zend_result add_next_index_long(zval *arg, zend_long n);
610 ZEND_API zend_result add_next_index_null(zval *arg);
611 ZEND_API zend_result add_next_index_bool(zval *arg, bool b);
613 ZEND_API zend_result add_next_index_double(zval *arg, double d);
614 ZEND_API zend_result add_next_index_str(zval *arg, zend_string *str);
874 ZEND_API zend_result zend_call_method_if_exists(
880 ZEND_API zend_result zend_delete_global_variable(zend_string *name);
888 static zend_always_inline zend_result zend_forbid_dynamic_call(void) in zend_forbid_dynamic_call()
[all …]
H A Dzend_object_handlers.h149 typedef zend_result (*zend_object_cast_t)(zend_object *readobj, zval *retval, int type);
153 typedef zend_result (*zend_object_count_elements_t)(zend_object *object, zend_long *count);
155 typedef zend_result (*zend_object_get_closure_t)(zend_object *obj, zend_class_entry **ce_ptr, zend_…
159 typedef zend_result (*zend_object_do_operation_t)(uint8_t opcode, zval *result, zval *op1, zval *op…
214 ZEND_API zend_result zend_std_cast_object_tostring(zend_object *object, zval *writeobj, int type);
227 ZEND_API zend_result zend_std_get_closure(zend_object *obj, zend_class_entry **ce_ptr, zend_functio…
238 ZEND_API zend_result zend_check_property_access(const zend_object *zobj, zend_string *prop_info_nam…
H A Dzend_language_scanner.h80 ZEND_API zend_result zend_multibyte_set_filter(const zend_encoding *onetime_encoding);
81 ZEND_API zend_result zend_lex_tstring(zval *zv, unsigned char *ident);
H A Dzend_stream.h69 ZEND_API zend_result zend_stream_open(zend_file_handle *handle);
70 ZEND_API zend_result zend_stream_fixup(zend_file_handle *file_handle, char **buf, size_t *len);
H A Dzend_enum.h35 zend_result zend_enum_build_backed_enum_table(zend_class_entry *ce);
47 ZEND_API zend_result zend_enum_get_case_by_value(zend_object **result, zend_class_entry *ce, zend_l…
/PHP-8.3/ext/json/
H A Dphp_json.h104 PHP_JSON_API zend_result php_json_encode_ex(smart_str *buf, zval *val, int options, zend_long depth…
105 PHP_JSON_API zend_result php_json_encode(smart_str *buf, zval *val, int options);
106 PHP_JSON_API zend_result php_json_decode_ex(zval *return_value, const char *str, size_t str_len, ze…
109 static inline zend_result php_json_decode(zval *return_value, const char *str, size_t str_len, bool… in php_json_decode()
H A Dphp_json_encoder.h36 zend_result php_json_encode_zval(smart_str *buf, zval *val, int options, php_json_encoder *encoder);
38 zend_result php_json_escape_string(smart_str *buf, const char *s, size_t len, int options, php_json…
/PHP-8.3/ext/pgsql/
H A Dphp_pgsql.h77 PHP_PGSQL_API zend_result php_pgsql_meta_data(PGconn *pg_link, const zend_string *table_name, zval …
78 PHP_PGSQL_API zend_result php_pgsql_convert(PGconn *pg_link, const zend_string *table_name, const z…
79 PHP_PGSQL_API zend_result php_pgsql_insert(PGconn *pg_link, const zend_string *table, zval *values,…
80 PHP_PGSQL_API zend_result php_pgsql_update(PGconn *pg_link, const zend_string *table, zval *values,…
81 PHP_PGSQL_API zend_result php_pgsql_delete(PGconn *pg_link, const zend_string *table, zval *ids, ze…
82 PHP_PGSQL_API zend_result php_pgsql_select(PGconn *pg_link, const zend_string *table, zval *ids, zv…
/PHP-8.3/Zend/Optimizer/
H A Dzend_optimizer_internal.h86 zend_result zend_optimizer_eval_binary_op(zval *result, uint8_t opcode, zval *op1, zval *op2);
87 zend_result zend_optimizer_eval_unary_op(zval *result, uint8_t opcode, zval *op1);
88 zend_result zend_optimizer_eval_cast(zval *result, uint32_t type, zval *op1);
89 zend_result zend_optimizer_eval_strlen(zval *result, const zval *op1);
90 zend_result zend_optimizer_eval_special_func_call(
114 zend_result zend_dfa_analyze_op_array(zend_op_array *op_array, zend_optimizer_ctx *ctx, zend_ssa *s…
127 zend_result zend_ssa_escape_analysis(const zend_script *script, zend_op_array *op_array, zend_ssa *…
H A Dzend_func_info.h65 zend_result zend_func_info_startup(void);
66 zend_result zend_func_info_shutdown(void);
H A Dzend_optimizer.h99 zend_result zend_optimizer_startup(void);
100 zend_result zend_optimizer_shutdown(void);
/PHP-8.3/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h98 zend_result php_com_do_invoke_by_id(php_com_dotnet_object *obj, DISPID dispid,
100 zend_result php_com_do_invoke(php_com_dotnet_object *obj, zend_string *name,
102 zend_result php_com_do_invoke_byref(php_com_dotnet_object *obj, zend_internal_function *f,
118 PHP_COM_DOTNET_API zend_result php_com_zval_from_variant(zval *z, VARIANT *v, int codepage);
119 PHP_COM_DOTNET_API zend_result php_com_copy_variant(VARIANT *dst, VARIANT *src);
137 PHP_COM_DOTNET_API zend_result php_com_import_typelib(ITypeLib *TL, int mode, int codepage);
/PHP-8.3/ext/opcache/
H A DZendAccelerator.h309 zend_result accel_activate(INIT_FUNC_ARGS);
310 zend_result accel_post_deactivate(void);
314 zend_result validate_timestamp_and_record(zend_persistent_script *persistent_script, zend_file_hand…
315 zend_result validate_timestamp_and_record_ex(zend_persistent_script *persistent_script, zend_file_h…
316 zend_result zend_accel_invalidate(zend_string *filename, bool force);
317 zend_result accelerator_shm_read_lock(void);
/PHP-8.3/ext/sockets/
H A Dmulticast.h54 zend_result php_if_index_to_addr4(
59 zend_result php_add4_to_if_index(
64 zend_result php_string_to_if_index(const char *val, unsigned *out);
/PHP-8.3/ext/zend_test/
H A Dobject_handlers.c81 static zend_result donc_do_operation(zend_uchar opcode, zval *result, zval *op1, zval *op2) in donc_do_operation()
84 zend_result status; in donc_do_operation()
141 static zend_result long_castable_no_operation_cast_object(zend_object *obj, zval *result, int type) in long_castable_no_operation_cast_object()
177 static zend_result float_castable_no_operation_cast_object(zend_object *obj, zval *result, int type) in float_castable_no_operation_cast_object()
215 static zend_result numeric_castable_no_operation_cast_object(zend_object *obj, zval *result, int ty… in numeric_castable_no_operation_cast_object()

Completed in 183 milliseconds

1234567