Home
last modified time | relevance | path

Searched refs:info (Results 226 – 250 of 339) sorted by relevance

12345678910>>...14

/php-src/sapi/fpm/tests/
H A Dfcgi-env-pif-apache-handler-without-docroot.phpt2 FPM: FastCGI env var path info fix for Apache handler basic
H A Dfcgi-env-pif-apache-pp-sn-strip-invalid.phpt2 FPM: FastCGI env var path info fix for Apache ProxyPass SCRIPT_NAME stripping with invalid path
/php-src/ext/opcache/jit/
H A Dzend_jit_internal.h373 #define ZEND_JIT_TRACE_FAKE_LEVEL(info) \ argument
374 (((info) & ZEND_JIT_TRACE_FAKE_LEVEL_MASK) >> ZEND_JIT_TRACE_FAKE_LEVEL_SHIFT)
403 uint32_t info; /* "first_ssa_var" for ZEND_JIT_TRACE_ENTER and ZEND_JIT_TRACE_BACK, member
432 uint32_t info; member
465 (_stack)[_slot].info
475 (_stack)[_slot].info = _info; \
/php-src/Zend/
H A Dzend_execute.h84 …_COLD void ZEND_FASTCALL zend_readonly_property_modification_error(const zend_property_info *info);
85 …d ZEND_FASTCALL zend_readonly_property_indirect_modification_error(const zend_property_info *info);
89 …ND_FASTCALL zend_object_released_while_assigning_to_property_error(const zend_property_info *info);
505 ZEND_API bool zend_verify_property_type(const zend_property_info *info, zval *property, bool strict…
506 ZEND_COLD void zend_verify_property_type_error(const zend_property_info *info, const zval *property…
507 ZEND_COLD void zend_magic_get_property_type_inconsistency_error(const zend_property_info *info, con…
H A Dzend_execute.c847 type_str = zend_type_to_string(info->type); in zend_verify_property_type_error()
850 ZSTR_VAL(info->ce->name), in zend_verify_property_type_error()
866 ZSTR_VAL(info->ce->name), in zend_magic_get_property_type_inconsistency_error()
867 ZSTR_VAL(info->ce->name), in zend_magic_get_property_type_inconsistency_error()
893 const zend_property_info *info) { in zend_readonly_property_modification_error() argument
895 ZSTR_VAL(info->ce->name), zend_get_unmangled_property_name(info->name)); in zend_readonly_property_modification_error()
901 ZSTR_VAL(info->ce->name), zend_get_unmangled_property_name(info->name)); in zend_readonly_property_indirect_modification_error()
912 ZSTR_VAL(info->ce->name), zend_get_unmangled_property_name(info->name)); in zend_object_released_while_assigning_to_property_error()
1001 …&& zend_check_and_resolve_property_or_class_constant_class_type(info->ce, info->type, Z_OBJCE_P(pr… in i_zend_check_property_type()
3518 zend_type type = info->type; in i_zend_verify_type_assignable_zval()
[all …]
H A Dzend.c1417 zend_error_info *info = emalloc(sizeof(zend_error_info)); in zend_error_zstr_at() local
1418 info->type = type; in zend_error_zstr_at()
1419 info->lineno = error_lineno; in zend_error_zstr_at()
1420 info->filename = zend_string_copy(error_filename); in zend_error_zstr_at()
1421 info->message = zend_string_copy(message); in zend_error_zstr_at()
1427 EG(errors)[EG(num_errors)-1] = info; in zend_error_zstr_at()
1727 zend_error_info *info = EG(errors)[i]; in zend_free_recorded_errors() local
1728 zend_string_release(info->filename); in zend_free_recorded_errors()
1729 zend_string_release(info->message); in zend_free_recorded_errors()
1730 efree(info); in zend_free_recorded_errors()
/php-src/ext/gd/tests/
H A Dfunc.inc12 $info = ob_get_contents();
15 return $info;
/php-src/ext/dba/tests/
H A Ddba007.phpt9 die("info $HND handler used");
H A Ddba_db4_018.phpt11 die("info $HND handler used");
/php-src/sapi/phpdbg/
H A Dphpdbg_watch.h118 int phpdbg_watchpoint_segfault_handler(siginfo_t *info, void *context);
H A Dphpdbg_info.c414 if (ce->info.user.filename) { in PHPDBG_INFO()
415 …phpdbg_writeln("|---- in %s on line %u", ZSTR_VAL(ce->info.user.filename), ce->info.user.line_star… in PHPDBG_INFO()
/php-src/sapi/phpdbg/tests/
H A Dinfo_001.phpt2 Test basic info functionality
/php-src/ext/dom/tests/
H A Ddomobject_debug_handler.phpt2 Objects of DOM extension: debug info object handler.
/php-src/ext/pdo_firebird/
H A Dfirebird_driver.c573 static char const info[] = { isc_info_sql_stmt_type }; in firebird_handle_preparer() local
596 if (isc_dsql_sql_info(H->isc_status, &s, sizeof(info), const_cast(info), sizeof(result), in firebird_handle_preparer()
1232 static void pdo_firebird_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) /* {{{ */ in pdo_firebird_fetch_error_func() argument
1236 add_next_index_long(info, H->einfo.sqlcode); in pdo_firebird_fetch_error_func()
1239 add_next_index_stringl(info, H->einfo.errmsg, H->einfo.errmsg_length); in pdo_firebird_fetch_error_func()
/php-src/ext/odbc/tests/
H A Dodbc_gettypeinfo_001.phpt2 odbc_gettypeinfo(): Getting info about data types
H A Dodbc_columns_001.phpt13 $info = (string) reset($array);
14 if (!str_contains($info, "Microsoft SQL Server")) {
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_multi_stmt_nextrowset.phpt64 $info = $db->errorInfo();
65 var_dump($info[0]);
/php-src/ext/pdo_odbc/
H A Dodbc_driver.c32 static void pdo_odbc_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in pdo_odbc_fetch_error_func() argument
49 add_next_index_long(info, einfo->last_error); in pdo_odbc_fetch_error_func()
50 add_next_index_str(info, message); in pdo_odbc_fetch_error_func()
51 add_next_index_string(info, einfo->last_state); in pdo_odbc_fetch_error_func()
/php-src/ext/opcache/jit/ir/
H A Dir_gdb.c253 sect->info = GDBJIT_SYM_FUNC; in ir_gdbjit_secthdr()
271 sym->info = ELFSYM_INFO(ELFSYM_BIND_LOCAL, ELFSYM_TYPE_FILE); in ir_gdbjit_symtab()
278 sym->info = ELFSYM_INFO(ELFSYM_BIND_GLOBAL, ELFSYM_TYPE_FUNC); in ir_gdbjit_symtab()
362 DSECT(info, in ir_gdbjit_debuginfo()
/php-src/ext/mysqli/tests/
H A Dmysqli_more_results.phpt39 … // NOTE: if you use mysqli_use_result() with mysqli_more_results() or any other info function,
/php-src/ext/opcache/jit/ir/dynasm/
H A Dminilua.c961 lu_byte info;
3209 e->u.s.info=luaK_codeABC(fs,OP_GETUPVAL,0,e->u.s.info,0);
3214 e->u.s.info=luaK_codeABx(fs,OP_GETGLOBAL,0,e->u.s.info);
3270 e->u.s.info=reg;
3415 pc=e->u.s.info;
3436 pc=e->u.s.info;
3467 e->u.s.info=luaK_codeABC(fs,OP_NOT,0,e->u.s.info,0);
3602 e1->k=VRELOCABLE;e1->u.s.info=e2->u.s.info;
3722 e->u.s.info=i;
3775 fs->upvalues[f->nups].info=cast_byte(v->u.s.info);
[all …]
/php-src/Zend/Optimizer/
H A Dzend_inference.c4243 zend_ssa_var_info *info; in zend_infer_types_ex() local
4246 info = &ssa_var_info[p->sources[i]]; in zend_infer_types_ex()
4247 if (info->type & MAY_BE_OBJECT) { in zend_infer_types_ex()
4249 ce = info->ce; in zend_infer_types_ex()
4250 is_instanceof = info->is_instanceof; in zend_infer_types_ex()
4253 is_instanceof |= info->is_instanceof; in zend_infer_types_ex()
4498 if (info->ssa.ops && info->ssa.vars && info->call_map && in is_recursive_tail_call()
4500 info->ssa.vars[info->ssa.ops[opline - op_array->opcodes].op1_use].definition >= 0) { in is_recursive_tail_call()
4502 …zend_op *op = op_array->opcodes + info->ssa.vars[info->ssa.ops[opline - op_array->opcodes].op1_use… in is_recursive_tail_call()
4562 zend_ssa *ssa = &info->ssa; in zend_func_return_info()
[all …]
H A Dsccp.c1774 zend_ssa_var_info *info = &ssa->var_info[var_num]; in value_from_type_and_range() local
1776 if (info->type & MAY_BE_UNDEF) { in value_from_type_and_range()
1780 if (!(info->type & MAY_BE_ANY)) { in value_from_type_and_range()
1786 if (!(info->type & ((MAY_BE_ANY|MAY_BE_UNDEF)-MAY_BE_NULL))) { in value_from_type_and_range()
1794 if (!(info->type & ((MAY_BE_ANY|MAY_BE_UNDEF)-MAY_BE_FALSE))) { in value_from_type_and_range()
1802 if (!(info->type & ((MAY_BE_ANY|MAY_BE_UNDEF)-MAY_BE_TRUE))) { in value_from_type_and_range()
1811 if (!(info->type & ((MAY_BE_ANY|MAY_BE_UNDEF)-MAY_BE_LONG)) in value_from_type_and_range()
1812 && info->has_range in value_from_type_and_range()
1813 && !info->range.overflow && !info->range.underflow in value_from_type_and_range()
1814 && info->range.min == info->range.max) { in value_from_type_and_range()
[all …]
/php-src/
H A D.gitignore4 # .git/info/exclude in the cloned repository or a global .gitignore file.
247 /run-test-info.php
263 /php_lcov.info
/php-src/ext/standard/
H A Dconfig.w3231 info.c iptc.c link.c mail.c math.c md5.c metaphone.c microtime.c \

Completed in 101 milliseconds

12345678910>>...14