Home
last modified time | relevance | path

Searched refs:el (Results 26 – 50 of 51) sorted by relevance

123

/PHP-7.1/ext/dba/
H A Ddba.c460 int dba_close_pe_rsrc_deleter(zval *el, void *pDba) in dba_close_pe_rsrc_deleter() argument
462 if (Z_RES_P(el)->ptr == pDba) { in dba_close_pe_rsrc_deleter()
463 if (Z_DELREF_P(el) == 0) { in dba_close_pe_rsrc_deleter()
/PHP-7.1/ext/pdo/
H A Dpdo_dbh.c1255 static void cls_method_dtor(zval *el) /* {{{ */ { in cls_method_dtor() argument
1256 zend_function *func = (zend_function*)Z_PTR_P(el); in cls_method_dtor()
1264 static void cls_method_pdtor(zval *el) /* {{{ */ { in cls_method_pdtor() argument
1265 zend_function *func = (zend_function*)Z_PTR_P(el); in cls_method_pdtor()
H A Dpdo_sql_parser.re79 static void free_param_name(zval *el) {
80 efree(Z_PTR_P(el));
H A Dpdo_stmt.c266 static void param_dtor(zval *el) /* {{{ */ in param_dtor() argument
268 struct pdo_bound_param_data *param = (struct pdo_bound_param_data *)Z_PTR_P(el); in param_dtor()
/PHP-7.1/ext/reflection/
H A Dphp_reflection.c1000 zend_ini_entry *ini_entry = (zend_ini_entry*)Z_PTR_P(el); in _extension_ini_string()
1037 zend_class_entry *ce = (zend_class_entry*)Z_PTR_P(el); in _extension_class_string()
1057 zend_constant *constant = (zend_constant*)Z_PTR_P(el); in _extension_const_string()
4340 static int _addmethod_va(zval *el, int num_args, va_list args, zend_hash_key *hash_key) in _addmethod_va() argument
4342 zend_function *mptr = (zend_function*)Z_PTR_P(el); in _addmethod_va()
4496 static int _addproperty(zval *el, int num_args, va_list args, zend_hash_key *hash_key) in _addproperty() argument
4499 zend_property_info *pptr = (zend_property_info*)Z_PTR_P(el); in _addproperty()
5922 static int _addconstant(zval *el, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ in _addconstant() argument
5925 zend_constant *constant = (zend_constant*)Z_PTR_P(el); in _addconstant()
5955 static int _addinientry(zval *el, int num_args, va_list args, zend_hash_key *hash_key) in _addinientry() argument
[all …]
/PHP-7.1/sapi/litespeed/
H A Dlsapi_main.c603 static void user_config_cache_entry_dtor(zval *el) in user_config_cache_entry_dtor() argument
605 user_config_cache_entry *entry = (user_config_cache_entry *)Z_PTR_P(el); in user_config_cache_entry_dtor()
/PHP-7.1/ext/mbstring/
H A Dphp_mbregex.c58 static void php_mb_regex_free_cache(zval *el) { in php_mb_regex_free_cache() argument
59 onig_free((php_mb_regex_t *)Z_PTR_P(el)); in php_mb_regex_free_cache()
/PHP-7.1/ext/xmlreader/
H A Dphp_xmlreader.c452 static void php_xmlreader_free_prop_handler(zval *el) /* {{{ */ { in php_xmlreader_free_prop_handler() argument
453 pefree(Z_PTR_P(el), 1); in php_xmlreader_free_prop_handler()
/PHP-7.1/ext/fileinfo/libmagic/
H A Dapprentice.c2085 char *el; in parse_strength() local
2114 factor = strtoul(l, &el, 0); in parse_strength()
2119 if (*el && !isspace((unsigned char)*el)) { in parse_strength()
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_main.c192 static void user_config_cache_entry_dtor(zval *el) in user_config_cache_entry_dtor() argument
194 user_config_cache_entry *entry = (user_config_cache_entry *)Z_PTR_P(el); in user_config_cache_entry_dtor()
/PHP-7.1/ext/mysqli/
H A Dmysqli.c85 static void free_prop_handler(zval *el) { in free_prop_handler() argument
86 pefree(Z_PTR_P(el), 1); in free_prop_handler()
/PHP-7.1/Zend/
H A Dzend_API.c2470 static int clean_module_class(zval *el, void *arg) /* {{{ */ in clean_module_class() argument
2472 zend_class_entry *ce = (zend_class_entry *)Z_PTR_P(el); in clean_module_class()
2601 static int module_registry_unload_temp_wrapper(zval *el) /* {{{ */ in module_registry_unload_temp_wrapper() argument
2603 zend_module_entry *module = (zend_module_entry *)Z_PTR_P(el); in module_registry_unload_temp_wrapper()
2608 static int exec_done_cb(zval *el) /* {{{ */ in exec_done_cb() argument
2610 zend_module_entry *module = (zend_module_entry *)Z_PTR_P(el); in exec_done_cb()
H A Dzend_object_handlers.c516 static void zend_property_guard_dtor(zval *el) /* {{{ */ { in zend_property_guard_dtor() argument
517 uint32_t *ptr = (uint32_t*)Z_PTR_P(el); in zend_property_guard_dtor()
H A Dzend_builtin_functions.c1882 static int copy_class_or_interface_name(zval *el, int num_args, va_list args, zend_hash_key *hash_k… in copy_class_or_interface_name() argument
1884 zend_class_entry *ce = (zend_class_entry *)Z_PTR_P(el); in copy_class_or_interface_name()
H A Dzend_compile.c8235 zval *el; in zend_eval_const_expr() local
8237 el = zend_hash_index_find(Z_ARR_P(container), Z_LVAL_P(dim)); in zend_eval_const_expr()
8238 if (el) { in zend_eval_const_expr()
8239 ZVAL_COPY(&result, el); in zend_eval_const_expr()
8244 el = zend_symtable_find(Z_ARR_P(container), Z_STR_P(dim)); in zend_eval_const_expr()
8245 if (el) { in zend_eval_const_expr()
8246 ZVAL_COPY(&result, el); in zend_eval_const_expr()
/PHP-7.1/main/streams/
H A Dstreams.c68 static int forget_persistent_resource_id_numbers(zval *el) in forget_persistent_resource_id_numbers() argument
71 zend_resource *rsrc = Z_RES_P(el); in forget_persistent_resource_id_numbers()
/PHP-7.1/ext/standard/tests/strings/
H A Dget_html_translation_table_basic5.phpt733 [⪙] => ⪙
H A Dhtml_entity_decode_html5.phpt954 "⪙",
3088 ⪙ => ⪙ e2aa99
H A Dhtmlentities_html5.phpt1349 ⪙ U+02A99
/PHP-7.1/sapi/cgi/
H A Dcgi_main.c193 static void user_config_cache_entry_dtor(zval *el) in user_config_cache_entry_dtor() argument
195 user_config_cache_entry *entry = (user_config_cache_entry *)Z_PTR_P(el); in user_config_cache_entry_dtor()
/PHP-7.1/ext/snmp/
H A Dsnmp.c2296 static void free_php_snmp_properties(zval *el) /* {{{ */ in free_php_snmp_properties() argument
2298 pefree(Z_PTR_P(el), 1); in free_php_snmp_properties()
/PHP-7.1/ext/zip/
H A Dphp_zip.c3017 static void php_zip_free_prop_handler(zval *el) /* {{{ */ { in php_zip_free_prop_handler() argument
3018 pefree(Z_PTR_P(el), 1); in php_zip_free_prop_handler()
/PHP-7.1/
H A Dconfig.guess961 CPU=${UNAME_MACHINE}el
/PHP-7.1/ext/curl/
H A Dinterface.c1823 static void curl_free_slist(zval *el) in curl_free_slist() argument
1825 curl_slist_free_all(((struct curl_slist *)Z_PTR_P(el))); in curl_free_slist()
/PHP-7.1/ext/standard/html_tables/
H A Dents_html5.txt949 el 02A99

Completed in 178 milliseconds

123