/PHP-8.2/ext/spl/ |
H A D | spl_functions.c | 27 …if (!allow || (allow > 0 && (pce->ce_flags & ce_flags)) || (allow < 0 && !(pce->ce_flags & ce_flag… in spl_add_class_name() 32 ZVAL_STR_COPY(&t, pce->name); in spl_add_class_name() 33 zend_hash_add(Z_ARRVAL_P(list), pce->name, &t); in spl_add_class_name() 42 if (pce->num_interfaces) { in spl_add_interfaces() 43 ZEND_ASSERT(pce->ce_flags & ZEND_ACC_LINKED); in spl_add_interfaces() 69 ZEND_ASSERT(pce); in spl_add_classes() 70 spl_add_class_name(list, pce, allow, ce_flags); in spl_add_classes() 72 spl_add_interfaces(list, pce, allow, ce_flags); in spl_add_classes() 73 while (pce->parent) { in spl_add_classes() 74 pce = pce->parent; in spl_add_classes() [all …]
|
H A D | spl_engine.h | 24 static inline void spl_instantiate_arg_ex1(zend_class_entry *pce, zval *retval, zval *arg1) in spl_instantiate_arg_ex1() argument 26 object_init_ex(retval, pce); in spl_instantiate_arg_ex1() 27 zend_call_known_instance_method_with_1_params(pce->constructor, Z_OBJ_P(retval), NULL, arg1); in spl_instantiate_arg_ex1() 31 zend_class_entry *pce, zval *retval, zval *arg1, zval *arg2) in spl_instantiate_arg_ex2() argument 33 object_init_ex(retval, pce); in spl_instantiate_arg_ex2() 35 pce->constructor, Z_OBJ_P(retval), NULL, arg1, arg2); in spl_instantiate_arg_ex2() 39 zend_class_entry *pce, zval *retval, uint32_t argc, zval *argv) in spl_instantiate_arg_n() argument 41 object_init_ex(retval, pce); in spl_instantiate_arg_n() 42 zend_call_known_instance_method(pce->constructor, Z_OBJ_P(retval), NULL, argc, argv); in spl_instantiate_arg_n()
|
H A D | spl_functions.h | 29 void spl_add_class_name(zval * list, zend_class_entry * pce, int allow, int ce_flags); 30 void spl_add_interfaces(zval * list, zend_class_entry * pce, int allow, int ce_flags); 31 void spl_add_traits(zval * list, zend_class_entry * pce, int allow, int ce_flags); 32 void spl_add_classes(zend_class_entry *pce, zval *list, bool sub, int allow, int ce_flags);
|
H A D | spl_iterators.c | 141 pcre_cache_entry *pce; member 1438 intern->u.regex.pce = pcre_get_compiled_regex_cache(regex); in spl_dual_it_construct() 1441 if (intern->u.regex.pce == NULL) { in spl_dual_it_construct() 1447 php_pcre_pce_incref(intern->u.regex.pce); in spl_dual_it_construct() 1883 re = php_pcre_pce_re(intern->u.regex.pce); in PHP_METHOD() 1897 php_pcre_match_impl(intern->u.regex.pce, subject, &zcount, in PHP_METHOD() 1905 …php_pcre_split_impl(intern->u.regex.pce, subject, &intern->current.data, -1, intern->u.regex.preg_… in PHP_METHOD() 1917 …result = php_pcre_replace_impl(intern->u.regex.pce, subject, ZSTR_VAL(subject), ZSTR_LEN(subject),… in PHP_METHOD() 2138 if (object->u.regex.pce) { in spl_dual_it_free_storage() 2139 php_pcre_pce_decref(object->u.regex.pce); in spl_dual_it_free_storage()
|
H A D | spl_array.c | 1554 static void spl_instantiate_child_arg(zend_class_entry *pce, zval *retval, zval *arg1, zval *arg2) … in spl_instantiate_child_arg() argument 1556 object_init_ex(retval, pce); in spl_instantiate_child_arg() 1566 zend_call_known_instance_method_with_2_params(pce->constructor, Z_OBJ_P(retval), NULL, arg1, arg2); in spl_instantiate_child_arg()
|
/PHP-8.2/ext/pcre/ |
H A D | php_pcre.c | 170 if (!pce) return; in php_free_pcre_cache() 172 free(pce); in php_free_pcre_cache() 179 if (!pce) return; in php_efree_pcre_cache() 181 efree(pce); in php_efree_pcre_cache() 906 *capture_count = pce ? pce->capture_count : 0; in pcre_get_compiled_regex() 909 return pce ? pce->re : NULL; in pcre_get_compiled_regex() 919 *preg_options = pce ? pce->preg_options : 0; in pcre_get_compiled_regex_ex() 922 *compile_options = pce ? pce->compile_options : 0; in pcre_get_compiled_regex_ex() 925 *capture_count = pce ? pce->capture_count : 0; in pcre_get_compiled_regex_ex() 928 return pce ? pce->re : NULL; in pcre_get_compiled_regex_ex() [all …]
|
H A D | php_pcre.h | 53 PHPAPI void php_pcre_match_impl(pcre_cache_entry *pce, zend_string *subject_str, zval *return_valu… 56 PHPAPI zend_string *php_pcre_replace_impl(pcre_cache_entry *pce, zend_string *subject_str, const ch… 59 PHPAPI void php_pcre_split_impl( pcre_cache_entry *pce, zend_string *subject_str, zval *return_va… 62 PHPAPI void php_pcre_grep_impl( pcre_cache_entry *pce, zval *input, zval *return_value,
|
/PHP-8.2/sapi/cli/ |
H A D | php_cli.c | 1049 zend_class_entry *pce = NULL; in do_cli() local 1058 pce = reflection_method_ptr; in do_cli() 1060 pce = reflection_function_ptr; in do_cli() 1064 pce = reflection_class_ptr; in do_cli() 1067 pce = reflection_extension_ptr; in do_cli() 1070 pce = reflection_zend_extension_ptr; in do_cli() 1075 object_init_ex(&ref, pce); in do_cli() 1081 pce->constructor, Z_OBJ(ref), NULL, &arg); in do_cli()
|
/PHP-8.2/sapi/phpdbg/ |
H A D | phpdbg_info.c | 408 zend_class_entry *pce = ce->parent; in PHPDBG_INFO() local 411 phpdbg_print_class_name(pce); in PHPDBG_INFO() 412 } while ((pce = pce->parent)); in PHPDBG_INFO()
|
/PHP-8.2/ext/pdo/ |
H A D | pdo_dbh.c | 502 zend_class_entry *dbstmt_ce, *pce; in PHP_METHOD() local 532 if (Z_TYPE_P(item) != IS_STRING || (pce = zend_lookup_class(Z_STR_P(item))) == NULL) { in PHP_METHOD() 536 dbstmt_ce = pce; in PHP_METHOD() 805 zend_class_entry *pce; in pdo_dbh_attribute_set() local 826 if (Z_TYPE_P(item) != IS_STRING || (pce = zend_lookup_class(Z_STR_P(item))) == NULL) { in pdo_dbh_attribute_set() 830 if (!instanceof_function(pce, pdo_dbstmt_ce)) { in pdo_dbh_attribute_set() 834 …if (pce->constructor && !(pce->constructor->common.fn_flags & (ZEND_ACC_PRIVATE|ZEND_ACC_PROTECTED… in pdo_dbh_attribute_set() 838 dbh->def_stmt_ce = pce; in pdo_dbh_attribute_set()
|
/PHP-8.2/ext/date/ |
H A D | php_date.h | 143 PHPAPI zval *php_date_instantiate(zend_class_entry *pce, zval *object);
|
H A D | php_date.c | 2318 PHPAPI zval *php_date_instantiate(zend_class_entry *pce, zval *object) /* {{{ */ in php_date_instantiate() argument 2320 object_init_ex(object, pce); in php_date_instantiate()
|
/PHP-8.2/ext/fileinfo/libmagic/ |
H A D | funcs.c | 650 pcre_cache_entry *pce; in file_replace() local 657 if ((pce = pcre_get_compiled_regex_cache_ex(pattern, 0)) == NULL) { in file_replace() 665 res = php_pcre_replace_impl(pce, NULL, ms->o.buf, strlen(ms->o.buf), repl, -1, &rep_cnt); in file_replace()
|
H A D | softmagic.c | 481 pcre_cache_entry *pce; in check_fmt() local 489 if ((pce = pcre_get_compiled_regex_cache_ex(pattern, 0)) == NULL) { in check_fmt() 492 pcre2_code *re = php_pcre_pce_re(pce); in check_fmt() 2234 pcre_cache_entry *pce; in magiccheck() local 2245 if ((pce = pcre_get_compiled_regex_cache(pattern)) == NULL) { in magiccheck() 2261 php_pcre_match_impl(pce, haystack, &retval, &subpats, 0, 1, PREG_OFFSET_CAPTURE, 0); in magiccheck()
|
H A D | apprentice.c | 2662 pcre_cache_entry *pce; in getvalue() local 2666 if ((pce = pcre_get_compiled_regex_cache(pattern)) == NULL) { in getvalue()
|
/PHP-8.2/Zend/ |
H A D | zend_API.c | 428 *pce = NULL; in zend_parse_arg_class() 432 *pce = NULL; in zend_parse_arg_class() 438 if ((!*pce || !instanceof_function(*pce, ce_base))) { in zend_parse_arg_class() 440 *pce = NULL; in zend_parse_arg_class() 444 if (!*pce) { in zend_parse_arg_class() 906 *pce = NULL; in zend_parse_arg_impl() 910 *pce = NULL; in zend_parse_arg_impl() 915 *pce = NULL; in zend_parse_arg_impl() 920 if ((!*pce || !instanceof_function(*pce, ce_base))) { in zend_parse_arg_impl() 923 *pce = NULL; in zend_parse_arg_impl() [all …]
|
H A D | zend_inheritance.c | 2725 static zend_class_entry *zend_lazy_class_load(zend_class_entry *pce) in zend_lazy_class_load() argument 2731 memcpy(ce, pce, sizeof(zend_class_entry)); in zend_lazy_class_load() 2766 ZEND_ASSERT(op_array->scope == pce); in zend_lazy_class_load() 2816 ZEND_ASSERT(prop_info->ce == pce); in zend_lazy_class_load() 2837 ZEND_ASSERT(c->ce == pce); in zend_lazy_class_load()
|
/PHP-8.2/ext/readline/ |
H A D | readline_cli.c | 505 zend_class_entry **pce; in cli_completion_generator_define() local 506 char *retval = cli_completion_generator_ht(text, textlen, state, ht, (void**)&pce); in cli_completion_generator_define()
|
/PHP-8.2/Zend/Optimizer/ |
H A D | zend_inference.h | 227 const zend_script *script, zend_arg_info *arg_info, zend_class_entry **pce);
|
H A D | zend_inference.c | 2372 static uint32_t zend_convert_type(const zend_script *script, zend_type type, zend_class_entry **pce) in zend_convert_type() argument 2374 if (pce) { in zend_convert_type() 2375 *pce = NULL; in zend_convert_type() 2385 if (pce) { in zend_convert_type() 2391 *pce = zend_optimizer_get_class_entry(script, NULL, lcname); in zend_convert_type() 2402 …end_fetch_arg_info_type(const zend_script *script, zend_arg_info *arg_info, zend_class_entry **pce) in zend_fetch_arg_info_type() argument 2404 return zend_convert_type(script, arg_info->type, pce); in zend_fetch_arg_info_type() 2493 …d_fetch_prop_type(const zend_script *script, zend_property_info *prop_info, zend_class_entry **pce) in zend_fetch_prop_type() argument 2496 if (pce) { in zend_fetch_prop_type() 2497 *pce = NULL; in zend_fetch_prop_type() [all …]
|
/PHP-8.2/ext/fileinfo/ |
H A D | libmagic.patch | 596 + pcre_cache_entry *pce; 600 + if ((pce = pcre_get_compiled_regex_cache(pattern)) == NULL) { 2285 + pcre_cache_entry *pce; 2292 + if ((pce = pcre_get_compiled_regex_cache_ex(pattern, 0)) == NULL) { 3249 + pcre_cache_entry *pce; 3260 + if ((pce = pcre_get_compiled_regex_cache_ex(pattern, 0)) == NULL) { 3265 + pcre2_code *re = php_pcre_pce_re(pce); 3428 + pcre_cache_entry *pce; 3448 + if ((pce = pcre_get_compiled_regex_cache(pattern)) == NULL) { 3462 + /* pce now contains the compiled regex */ [all …]
|
/PHP-8.2/ext/tidy/ |
H A D | tidy.c | 459 static zval *tidy_instantiate(zend_class_entry *pce, zval *object) in tidy_instantiate() argument 461 object_init_ex(object, pce); in tidy_instantiate()
|
/PHP-8.2/ext/imap/ |
H A D | php_imap.c | 816 pcre_cache_entry *pce; /* Compiled regex */ in PHP_FUNCTION() local 821 if ((pce = pcre_get_compiled_regex_cache(regex))== NULL) { in PHP_FUNCTION() 827 php_pcre_match_impl(pce, internal_date, return_value, subpats, global, in PHP_FUNCTION()
|
/PHP-8.2/ext/soap/ |
H A D | php_encoding.c | 1370 …atic zval *to_zval_object_ex(zval *ret, encodeTypePtr type, xmlNodePtr data, zend_class_entry *pce) in to_zval_object_ex() argument 1378 if (pce) { in to_zval_object_ex() 1379 ce = pce; in to_zval_object_ex()
|
/PHP-8.2/ext/reflection/ |
H A D | php_reflection.c | 297 static zval *reflection_instantiate(zend_class_entry *pce, zval *object) /* {{{ */ in reflection_instantiate() argument 299 object_init_ex(object, pce); in reflection_instantiate()
|