Home
last modified time | relevance | path

Searched refs:info (Results 1 – 25 of 326) sorted by path

12345678910>>...14

/PHP-7.4/
H A D.gdbinit9 of frame info.
H A D.gitignore4 # .git/info/exclude in the cloned repository or a global .gitignore file.
255 /php_lcov.info
H A DNEWS281 . Fixed bug #80960 (opendir() warning wrong info when failed on Windows).
350 . Fixed bug #80024 (Duplication of info about inherited socket after pool
H A DREADME.md73 The [qa.php.net](https://qa.php.net) site provides more detailed info about
/PHP-7.4/TSRM/
H A Dtsrm_win32.c77 CloseHandle(ptr->info); in tsrm_win32_dtor()
674 shm->info = info_handle; in shmget()
675 shm->descriptor = MapViewOfFileEx(shm->info, FILE_MAP_ALL_ACCESS, 0, 0, 0, NULL); in shmget()
696 CloseHandle(shm->info); in shmget()
H A Dtsrm_win32.h57 HANDLE info; member
/PHP-7.4/Zend/tests/
H A Daccess_modifiers_008.phpt4 Discussion: http://marc.info/?l=php-internals&m=120221184420957&w=2
H A Daccess_modifiers_009.phpt4 Discussion: http://marc.info/?l=php-internals&m=120221184420957&w=2
H A Dbug52237.phpt6 preg_match('//', '', $data->info);
10 Warning: Attempt to modify property 'info' of non-object in %sbug52237.php on line 3
H A Dbug75290.phpt2 Bug #75290 (debug info of Closures of internal functions contain garbage argument names)
/PHP-7.4/Zend/tests/closures/
H A Dclosure_from_callable.inc139 $info = ['__call'];
140 $info[] = $name;
141 $info = array_merge($info, $arguments);
142 return implode(',', $info);
147 $info = ['__callStatic'];
148 $info[] = $name;
149 $info = array_merge($info, $arguments);
150 return implode(',', $info);
/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_008.phpt2 Test typed properties inheritance (missing info)
/PHP-7.4/Zend/
H A Dzend.h185 } info; member
H A Dzend_API.c2197 zend_internal_function_info *info = (zend_internal_function_info*)ptr->arg_info; in zend_register_functions() local
2202 if (info->required_num_args == (zend_uintptr_t)-1) { in zend_register_functions()
2205 internal_function->required_num_args = info->required_num_args; in zend_register_functions()
2207 if (info->return_reference) { in zend_register_functions()
2215 if (ZEND_TYPE_IS_SET(info->type)) { in zend_register_functions()
2216 if (ZEND_TYPE_IS_CLASS(info->type)) { in zend_register_functions()
2217 const char *type_name = (const char*)info->type; in zend_register_functions()
2536 if (ce->type == ZEND_INTERNAL_CLASS && ce->info.internal.module->module_number == module_number) { in clean_module_class()
2705 class_entry->info.internal.module = EG(current_module); in do_register_internal_class()
2707 if (class_entry->info.internal.builtin_functions) { in do_register_internal_class()
[all …]
H A Dzend_API.h193 class_container.info.internal.builtin_functions = functions; \
224 class_container.info.internal.module = NULL; \
225 class_container.info.internal.builtin_functions = functions; \
H A Dzend_alloc.c1292 zend_mm_page_info info; local
1297 info = chunk->map[page_num];
1393 zend_mm_page_info info; local
1397 info = chunk->map[page_num];
1541 if (info & ZEND_MM_IS_SRUN) {
1902 zend_mm_page_info info; local
1922 info = chunk->map[page_num];
1924 if (info & ZEND_MM_IS_LRUN) {
1926 info = chunk->map[page_num];
1951 info = chunk->map[page_num];
[all …]
H A Dzend_closures.c574 zval info; in zend_closure_get_debug_info() local
590 ZVAL_NEW_STR(&info, zend_strpprintf(0, "%s", i >= required ? "<optional>" : "<required>")); in zend_closure_get_debug_info()
591 zend_hash_update(Z_ARRVAL(val), name, &info); in zend_closure_get_debug_info()
H A Dzend_compile.c224 for (; info->name; ++info) { in zend_lookup_builtin_type_by_name()
226 && zend_binary_strcasecmp(ZSTR_VAL(name), ZSTR_LEN(name), info->name, info->name_len) == 0 in zend_lookup_builtin_type_by_name()
228 return info->type; in zend_lookup_builtin_type_by_name()
641 zend_loop_var info = {0}; in zend_begin_loop() local
651 info.opcode = free_opcode; in zend_begin_loop()
652 info.var_type = loop_var->op_type; in zend_begin_loop()
653 info.var_num = loop_var->u.op.var; in zend_begin_loop()
656 info.opcode = ZEND_NOP; in zend_begin_loop()
5607 info->varvars_used = 1; in find_implicit_binds_recursively()
5987 closure_info info; in zend_compile_func_decl() local
[all …]
H A Dzend_execute.c904 if (ZEND_TYPE_IS_CLASS(info->type)) { in zend_verify_property_type_error()
906 ZSTR_VAL(info->ce->name), in zend_verify_property_type_error()
907 zend_get_unmangled_property_name(info->name), in zend_verify_property_type_error()
909 ZEND_TYPE_ALLOW_NULL(info->type) ? " or null" : "", in zend_verify_property_type_error()
913 ZSTR_VAL(info->ce->name), in zend_verify_property_type_error()
914 zend_get_unmangled_property_name(info->name), in zend_verify_property_type_error()
916 ZEND_TYPE_ALLOW_NULL(info->type) ? " or null" : "", in zend_verify_property_type_error()
954 if (ZEND_TYPE_IS_CLASS(info->type)) { in i_zend_check_property_type()
959 …if (UNEXPECTED(!ZEND_TYPE_IS_CE(info->type)) && UNEXPECTED(!zend_resolve_class_type(&info->type, i… in i_zend_check_property_type()
970 return ZEND_TYPE_ALLOW_NULL(info->type); in i_zend_check_property_type()
[all …]
H A Dzend_execute.h402 zend_bool zend_verify_property_type(zend_property_info *info, zval *property, zend_bool strict);
403 ZEND_COLD void zend_verify_property_type_error(zend_property_info *info, zval *property);
H A Dzend_gc.c115 #define GC_REF_SET_INFO(ref, info) do { \ argument
118 ((info) << GC_INFO_SHIFT); \
H A Dzend_inheritance.c226 || ce->info.user.filename == CG(compiled_filename); in class_visible()
H A Dzend_object_handlers.c1628 zend_property_info *info; in zend_std_compare_objects() local
1644 ZEND_HASH_FOREACH_PTR(&zobj1->ce->properties_info, info) { in zend_std_compare_objects()
1645 zval *p1 = OBJ_PROP(zobj1, info->offset); in zend_std_compare_objects()
1646 zval *p2 = OBJ_PROP(zobj2, info->offset); in zend_std_compare_objects()
1648 if (info->flags & ZEND_ACC_STATIC) { in zend_std_compare_objects()
H A Dzend_opcode.c338 if (ce->info.user.doc_comment) { in destroy_zend_class()
339 zend_string_release_ex(ce->info.user.doc_comment, 0); in destroy_zend_class()
/PHP-7.4/appveyor/
H A Dbuild_task.bat36 rem SDK is cached, deps info is cached as well

Completed in 129 milliseconds

12345678910>>...14