Home
last modified time | relevance | path

Searched refs:info (Results 201 – 225 of 282) sorted by relevance

12345678910>>...12

/PHP-5.5/sapi/isapi/stresstest/
H A Dnotes.txt34 e:\inetpub\pages\info.php
/PHP-5.5/TSRM/
H A Dtsrm_win32.c75 CloseHandle(ptr->info); in tsrm_win32_dtor()
625 shm->info = info_handle; in shmget()
626 shm->descriptor = MapViewOfFileEx(shm->info, FILE_MAP_ALL_ACCESS, 0, 0, 0, NULL); in shmget()
647 CloseHandle(shm->info); in shmget()
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_debug_control_string.phpt73 print "libmysql/DBUG package prints some debug info here."
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_debug_append.phpt86 print "libmysql/DBUG package prints some debug info here."
/PHP-5.5/ext/snmp/tests/
H A DREADME11 sutable (see snmp_include.inc for more info):
/PHP-5.5/ext/dba/tests/
H A Ddba_db4_018.phpt7 die("info $HND handler used");
H A Ddba015.phpt7 die("info $HND handler used");
H A Ddba_cdb_001.phpt7 die('info CDB does not support replace or delete');
/PHP-5.5/ext/spl/internal/
H A Dmultipleiterator.inc61 * @param $inf associative info forIteraotr, must be NULL, integer or string
64 * @throws IllegalValueException if a inf is already an associated info
/PHP-5.5/Zend/
H A Dzend_closures.c353 char *name, *info; in zend_closure_get_debug_info() local
364 info_len = zend_spprintf(&info, 0, "%s", in zend_closure_get_debug_info()
366 add_assoc_stringl_ex(val, name, name_len + 1, info, info_len, 0); in zend_closure_get_debug_info()
/PHP-5.5/
H A Drun-tests.php1490 $info = '';
1542 $info = " (info: $m[1])";
1549 $info = " (warn: $m[1])";
1999 $info = " (warn: XFAIL section but test passes)";
2029 $info = " (warn: XFAIL section but test passes)";
2063 $info = ' XFAIL REASON: ' . rtrim($section_text['XFAIL']);
2113 show_result(implode('&', $restype), $tested, $tested_file, $info, $temp_filenames);
2121 'info' => $info,
2131 …junit_mark_test_as($restype, str_replace($cwd . '/', '', $tested_file), $tested, null, $info, $dif…
H A Dserver-tests.php542 $info = array();
548 $info[$name] = $value;
551 $this->exec_info = $info;
767 $info = '';
769 $info .= sprintf("%-20.s: %s\n",$k,$v);
790 "$exeinfo$info\n".
/PHP-5.5/ext/mysqli/
H A Dmysqli_api.c1420 const char * info = mysql_get_client_info(); local
1421 if (info) {
1422 RETURN_STRING(info, 1);
1475 const char *info; local
1482 info = mysql_get_server_info(mysql->mysql);
1483 if (info) {
1484 RETURN_STRING(info, 1);
1511 const char *info; local
1518 info = mysql_info(mysql->mysql);
1519 if (info) {
[all …]
/PHP-5.5/ext/phar/tests/files/
H A Dpear2coverage.phar.php720 $info = $this->aggregator->coverageInfo($this->path);
721 return $info[0];
1475 foreach ($results as $line => $info) {
1476 if ($info > 0) {
1585 $info = $this->aggregator->coverageInfoByTest($this->path, $this->testname);
1586 return $info[0];
/PHP-5.5/ext/mysql/tests/
H A Dmysql_info.phpt51 var_inspect($info);
/PHP-5.5/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 TSRMLS_DC) in pdo_mysql_fetch_error_func()
132 add_next_index_long(info, einfo->errcode); in pdo_mysql_fetch_error_func()
133 add_next_index_string(info, einfo->errmsg, 1); in pdo_mysql_fetch_error_func()
/PHP-5.5/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 TSRMLS_DC) /* {{{ … in pdo_oci_fetch_error_func()
52 add_next_index_long(info, einfo->errcode); in pdo_oci_fetch_error_func()
53 add_next_index_string(info, einfo->errmsg, 1); in pdo_oci_fetch_error_func()
/PHP-5.5/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-5.5/ext/reflection/
H A Dphp_reflection.c366 if (ce->type == ZEND_USER_CLASS && ce->info.user.doc_comment) { in _class_string()
384 string_printf(str, ":%s", ce->info.internal.module->name); in _class_string()
425 ce->info.user.line_start, ce->info.user.line_end); in _class_string()
1009 …f (((*pce)->type == ZEND_INTERNAL_CLASS) && (*pce)->info.internal.module && !strcasecmp((*pce)->in… in _extension_class_string()
3576 RETURN_STRING(ce->info.user.filename, 1); in ZEND_METHOD()
3594 RETURN_LONG(ce->info.user.line_start); in ZEND_METHOD()
3612 RETURN_LONG(ce->info.user.line_end); in ZEND_METHOD()
3630 RETURN_STRINGL(ce->info.user.doc_comment, ce->info.user.doc_comment_len, 1); in ZEND_METHOD()
4668 RETURN_STRING(ce->info.internal.module->name, 1); in ZEND_METHOD()
5365 …f (((*pce)->type == ZEND_INTERNAL_CLASS) && (*pce)->info.internal.module && !strcasecmp((*pce)->in… in add_extension_class()
[all …]
/PHP-5.5/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 TSRMLS_DC) in pdo_sqlite_fetch_error_func()
95 add_next_index_long(info, einfo->errcode); in pdo_sqlite_fetch_error_func()
96 add_next_index_string(info, einfo->errmsg, 1); in pdo_sqlite_fetch_error_func()
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_pconnect.phpt59 printf("[005] Wrong error info %s\n", $tmp);
/PHP-5.5/ext/standard/tests/mail/
H A Dmail_include.inc9 $users = array("webmaster", "info", "admin", "foo"); // tests require 4 valid userids
/PHP-5.5/ext/phar/
H A Dphar_object.c212 fp = phar_get_efp(info, 1 TSRMLS_CC); in phar_file_action()
216 if (!phar_open_jit(phar, info, &error TSRMLS_CC)) { in phar_file_action()
223 fp = phar_get_efp(info, 1 TSRMLS_CC); in phar_file_action()
226 phar_seek_efp(info, 0, SEEK_SET, 0, 1 TSRMLS_CC); in phar_file_action()
229 got = php_stream_read(fp, buf, MIN(8192, info->uncompressed_filesize - position)); in phar_file_action()
233 if (position == (off_t) info->uncompressed_filesize) { in phar_file_action()
351 phar_entry_info *info; in phar_do_404() local
354 info = phar_get_entry_info(phar, f404, f404_len, NULL, 1 TSRMLS_CC); in phar_do_404()
356 if (info) { in phar_do_404()
573 phar_entry_info *info = NULL; in PHP_METHOD() local
[all …]
/PHP-5.5/main/
H A Dphp_network.h222 char info[126]; member

Completed in 134 milliseconds

12345678910>>...12