Home
last modified time | relevance | path

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

1...<<11121314

/php-src/ext/dba/tests/
H A Ddba015.phpt9 die("info $HND handler used");
H A Ddba_cdb_001.phpt9 die('info CDB does not support replace or delete');
H A Dvalue_errors_open.phpt10 die("info $HND handler used");
/php-src/.github/scripts/windows/
H A Dbuild_task.bat16 rem SDK is cached, deps info is cached as well
/php-src/ext/snmp/tests/
H A DREADME.md11 suitable (see `snmp_include.inc` for more info):
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitNativeX86_common.c431 __cpuidex((int*)info, (int)info[0], (int)info[2]); in execute_cpu_id()
459 : "r" (info) in execute_cpu_id()
472 mov esi, info in execute_cpu_id()
481 mov rsi, info in execute_cpu_id()
505 sljit_u32 info[4]; in get_cpu_features() local
508 info[0] = 0; in get_cpu_features()
510 max_id = info[0]; in get_cpu_features()
513 info[0] = 7; in get_cpu_features()
514 info[2] = 0; in get_cpu_features()
517 if (info[1] & 0x8) in get_cpu_features()
[all …]
/php-src/ext/standard/tests/image/
H A Dgetimagesize_variation2.phpt66 // loop through each element of the array for info
/php-src/ext/mysqli/tests/
H A Dbug34810.phpt86 ["info"]=>
H A Dmysqli_debug_append.phpt84 print "libmysql/DBUG package prints some debug info here."
H A Dmysqli_stmt_get_result_metadata_fetch_field.phpt2 mysqli_stmt_get_result() - meta data, field info
/php-src/win32/
H A Dioutil.h274 …32_ioutil_realpath_w_ex0(const wchar_t *path, wchar_t *resolved, PBY_HANDLE_FILE_INFORMATION info);
635 … *php_win32_ioutil_realpath_ex0(const char *path, char *resolved, PBY_HANDLE_FILE_INFORMATION info) in php_win32_ioutil_realpath_ex0() argument
647 if (NULL == php_win32_ioutil_realpath_w_ex0(pathw, retw, info)) { in php_win32_ioutil_realpath_ex0()
/php-src/Zend/
H A Dzend_compile.c282 for (; info->name; ++info) { in zend_lookup_builtin_type_by_name()
284 && zend_binary_strcasecmp(ZSTR_VAL(name), ZSTR_LEN(name), info->name, info->name_len) == 0 in zend_lookup_builtin_type_by_name()
286 return info->type; in zend_lookup_builtin_type_by_name()
300 for (; info->name; ++info) { in zend_is_confusable_type()
301 if (zend_string_equals_cstr(name, info->name, info->name_len)) { in zend_is_confusable_type()
696 zend_loop_var info = {0}; in zend_begin_loop() local
706 info.opcode = free_opcode; in zend_begin_loop()
711 info.opcode = ZEND_NOP; in zend_begin_loop()
7488 info->varvars_used = 1; in find_implicit_binds_recursively()
7805 closure_info info; in zend_compile_func_decl() local
[all …]
/php-src/ext/fileinfo/
H A Dlibmagic.patch1067 if (info->i_buf != NULL && info->i_len >= siz) {
1144 - free(*info);
1145 + efree(*info);
1147 *info = NULL;
1153 - free(*info);
1154 + efree(*info);
1155 *info = NULL;
1189 - free(info);
1190 + efree(info);
2937 - free(info);
[all …]
/php-src/ext/openssl/tests/
H A Decc.phpt43 // Check that the public key info is computed from the private key if it is missing.
/php-src/ext/pdo_sqlite/
H A Dsqlite_driver.c85 static void pdo_sqlite_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in pdo_sqlite_fetch_error_func() argument
91 add_next_index_long(info, einfo->errcode); in pdo_sqlite_fetch_error_func()
92 add_next_index_string(info, einfo->errmsg); in pdo_sqlite_fetch_error_func()
/php-src/ext/mbstring/libmbfl/
H A DREADME.md40 …[Detailed info](https://github.com/hirokawa/libmbfl/wiki/Introduction-to-libmbflhttps:--github.com…
/php-src/tests/output/
H A Dob_start_basic_004.phpt10 // In HEAD, $chunk_size value of 1 should not have any special behaviour (http://marc.info/?l=php-i…
/php-src/ext/hash/
H A Dhash.c899 zend_string *returnval, *ikm, *algo, *info = NULL, *salt = NULL; in PHP_FUNCTION() local
907 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "SS|lSS", &algo, &ikm, &length, &info, &salt) == FAILUR… in PHP_FUNCTION()
962 if (info != NULL && ZSTR_LEN(info) > 0) { in PHP_FUNCTION()
963 ops->hash_update(context, (unsigned char *) ZSTR_VAL(info), ZSTR_LEN(info)); in PHP_FUNCTION()
/php-src/ext/mysqli/
H A Dphp_mysqli_structs.h74 void *info; /* additional buffer */ member
/php-src/ext/phar/
H A Dphar_object.c183 fp = phar_get_efp(info, 1); in phar_file_action()
187 if (!phar_open_jit(phar, info, &error)) { in phar_file_action()
194 fp = phar_get_efp(info, 1); in phar_file_action()
197 phar_seek_efp(info, 0, SEEK_SET, 0, 1); in phar_file_action()
204 if (position == (zend_off_t) info->uncompressed_filesize) { in phar_file_action()
312 phar_entry_info *info; in phar_do_404() local
315 info = phar_get_entry_info(phar, f404, f404_len, NULL, 1); in phar_do_404()
317 if (info) { in phar_do_404()
554 phar_entry_info *info = NULL; in PHP_METHOD() local
757 (info = phar_get_entry_info(phar, entry, entry_len, NULL, 0)) == NULL) { in PHP_METHOD()
[all …]
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_pconnect.phpt62 printf("[005] Wrong error info %s\n", $tmp);
/php-src/sapi/cli/tests/
H A Dphp_cli_server.inc3 // TODO: Move address/port info in here?
/php-src/ext/pdo_mysql/
H A Dmysql_driver.c124 static void pdo_mysql_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) in pdo_mysql_fetch_error_func() argument
139 add_next_index_long(info, einfo->errcode); in pdo_mysql_fetch_error_func()
140 add_next_index_string(info, einfo->errmsg); in pdo_mysql_fetch_error_func()
/php-src/ext/snmp/
H A Dsnmp.stub.php249 public array $info; variable in SNMP
/php-src/ext/pdo_pgsql/
H A Dpgsql_driver.c111 static void pdo_pgsql_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) /* {{{ */ in pdo_pgsql_fetch_error_func() argument
117 add_next_index_long(info, einfo->errcode); in pdo_pgsql_fetch_error_func()
120 add_next_index_null(info); in pdo_pgsql_fetch_error_func()
123 add_next_index_string(info, einfo->errmsg); in pdo_pgsql_fetch_error_func()

Completed in 140 milliseconds

1...<<11121314