Home
last modified time | relevance | path

Searched refs:info (Results 251 – 275 of 333) sorted by relevance

1...<<11121314

/PHP-7.2/ext/hash/
H A Dhash.c620 zend_string *returnval, *ikm, *algo, *info = NULL, *salt = NULL; in PHP_FUNCTION() local
627 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "SS|lSS", &algo, &ikm, &length, &info, &salt) == FAILUR… in PHP_FUNCTION()
687 if (info != NULL && ZSTR_LEN(info) > 0) { in PHP_FUNCTION()
688 ops->hash_update(context, (unsigned char *) ZSTR_VAL(info), ZSTR_LEN(info)); in PHP_FUNCTION()
/PHP-7.2/
H A Drun-tests.php1617 $info = '';
1665 $info = " (info: $m[1])";
1672 $info = " (warn: $m[1])";
2151 $info = " (warn: XFAIL section but test passes)";
2177 $info = " (warn: XFAIL section but test passes)";
2215 $info = ' XFAIL REASON: ' . rtrim($section_text['XFAIL']);
2265 show_result(implode('&', $restype), $tested, $tested_file, $info, $temp_filenames);
2273 'info' => $info,
2279 …junit_mark_test_as($restype, str_replace($cwd . '/', '', $tested_file), $tested, null, $info, $dif…
/PHP-7.2/ext/pdo_sqlite/
H A Dsqlite_driver.c89 static int pdo_sqlite_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in pdo_sqlite_fetch_error_func() argument
95 add_next_index_long(info, einfo->errcode); in pdo_sqlite_fetch_error_func()
96 add_next_index_string(info, einfo->errmsg); in pdo_sqlite_fetch_error_func()
/PHP-7.2/ext/mysqli/tests/
H A Dmysqli_more_results.phpt72 // NOTE: if you use mysqli_use_result() with mysqli_more_results() or any other info function,
H A Dmysqli_stmt_get_result_metadata_fetch_field.phpt2 mysqli_stmt_get_result() - meta data, field info
H A Dmysqli_debug_append.phpt86 print "libmysql/DBUG package prints some debug info here."
/PHP-7.2/tests/output/
H A Dob_start_basic_004.phpt11 // In HEAD, $chunk_size value of 1 should not have any special behaviour (http://marc.info/?l=php-i…
/PHP-7.2/ext/pdo_oci/
H A Doci_driver.c36 static int pdo_oci_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) /* {{{ */ in pdo_oci_fetch_error_func() argument
52 add_next_index_long(info, einfo->errcode); in pdo_oci_fetch_error_func()
53 add_next_index_string(info, einfo->errmsg); in pdo_oci_fetch_error_func()
/PHP-7.2/ext/pdo_mysql/
H A Dmysql_driver.c117 static int pdo_mysql_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in pdo_mysql_fetch_error_func() argument
132 add_next_index_long(info, einfo->errcode); in pdo_mysql_fetch_error_func()
133 add_next_index_string(info, einfo->errmsg); in pdo_mysql_fetch_error_func()
/PHP-7.2/ext/reflection/
H A Dphp_reflection.c320 if (ce->type == ZEND_USER_CLASS && ce->info.user.doc_comment) { in _class_string()
337 if (ce->type == ZEND_INTERNAL_CLASS && ce->info.internal.module) { in _class_string()
379 ce->info.user.line_start, ce->info.user.line_end); in _class_string()
945 …if ((ce->type == ZEND_INTERNAL_CLASS) && ce->info.internal.module && !strcasecmp(ce->info.internal… in _extension_class_string()
4049 RETURN_STR_COPY(ce->info.user.filename); in ZEND_METHOD()
4067 RETURN_LONG(ce->info.user.line_start); in ZEND_METHOD()
4085 RETURN_LONG(ce->info.user.line_end); in ZEND_METHOD()
4103 RETURN_STR_COPY(ce->info.user.doc_comment); in ZEND_METHOD()
5208 RETURN_STRING(ce->info.internal.module->name); in ZEND_METHOD()
5900 …if ((ce->type == ZEND_INTERNAL_CLASS) && ce->info.internal.module && !strcasecmp(ce->info.internal… in add_extension_class()
[all …]
/PHP-7.2/ext/pdo_mysql/tests/
H A Dpdo_mysql_pconnect.phpt59 printf("[005] Wrong error info %s\n", $tmp);
/PHP-7.2/appveyor/
H A Dbuild_task.bat36 rem SDK is cached, deps info is cached as well
/PHP-7.2/ext/hash/tests/
H A Dhash_hkdf_basic.phpt8 /* Prototype : string hkdf ( string $algo , string $ikm [, int $length , string $info = '' , s…
H A Dhash_hkdf_error.phpt8 /* Prototype : string hkdf ( string $algo , string $ikm [, int $length , string $info = '' , s…
/PHP-7.2/ext/opcache/Optimizer/
H A Ddfa_pass.c292 zend_arg_info *info = &op_array->arg_info[-1]; in can_elide_return_type_check() local
306 if (ZEND_TYPE_CODE(info->type) == IS_CALLABLE || ZEND_TYPE_CODE(info->type) == IS_ITERABLE) { in can_elide_return_type_check()
310 if (ZEND_TYPE_IS_CLASS(info->type)) { in can_elide_return_type_check()
H A Dpass1_5.c278 ce->info.internal.module->type != MODULE_PERSISTENT) || in zend_optimizer_pass1()
280 ce->info.user.filename != op_array->filename)) { in zend_optimizer_pass1()
/PHP-7.2/ext/standard/tests/mail/
H A Dmail_include.inc9 $users = array("webmaster", "info", "admin", "foo"); // tests require 4 valid userids
/PHP-7.2/Zend/
H A Dzend_closures.c533 zval info; in zend_closure_get_debug_info() local
549 ZVAL_NEW_STR(&info, zend_strpprintf(0, "%s", i >= required ? "<optional>" : "<required>")); in zend_closure_get_debug_info()
550 zend_hash_update(Z_ARRVAL(val), name, &info); in zend_closure_get_debug_info()
/PHP-7.2/ext/phar/
H A Dphar_object.c184 fp = phar_get_efp(info, 1); in phar_file_action()
188 if (!phar_open_jit(phar, info, &error)) { in phar_file_action()
195 fp = phar_get_efp(info, 1); in phar_file_action()
198 phar_seek_efp(info, 0, SEEK_SET, 0, 1); in phar_file_action()
205 if (position == (zend_off_t) info->uncompressed_filesize) { in phar_file_action()
318 phar_entry_info *info; in phar_do_404() local
321 info = phar_get_entry_info(phar, f404, f404_len, NULL, 1); in phar_do_404()
323 if (info) { in phar_do_404()
549 phar_entry_info *info = NULL; in PHP_METHOD() local
771 (info = phar_get_entry_info(phar, entry, entry_len, NULL, 0)) == NULL) { in PHP_METHOD()
[all …]
/PHP-7.2/ext/mysqli/
H A Dmysqli_warning.c302 mysqli_resource->ptr = mysqli_resource->info = (void *)w;
H A Dphp_mysqli_structs.h139 void *info; /* additional buffer */ member
/PHP-7.2/main/
H A Dphp_network.h240 char info[126]; member
/PHP-7.2/ext/soap/interop/
H A Dclient_round2_interop.php709 $info = split(':', $method);
711 foreach ($info as $m) {
/PHP-7.2/sapi/phpdbg/
H A Dxml.md160 break / info break
235 info (subcommands)
240 - See above ("break / info break")
257 - if info vars was used it'll have also one of these attributes:
359 - class (then also type and flags attributes, see info classes command for their meanings)
/PHP-7.2/ext/date/tests/
H A Ddate_parse_variation1.phpt6 * Description: Returns associative array with detailed info about given date.

Completed in 94 milliseconds

1...<<11121314