Home
last modified time | relevance | path

Searched refs:info (Results 76 – 100 of 265) sorted by relevance

1234567891011

/PHP-5.4/ext/standard/tests/image/
H A Dgetimagesize_variation3.phpt5 /* Prototype : array getimagesize(string imagefile [, array info])
31 var_dump( getimagesize(dirname(__FILE__)."/$filename", $info) );
32 var_dump( $info );
H A Dgetimagesize_basic.phpt5 /* Prototype : array getimagesize(string imagefile [, array info])
44 var_dump( getimagesize(dirname(__FILE__)."/$filename", $info) );
45 var_dump( $info );
/PHP-5.4/ext/pdo/
H A Dpdo_dbh.c77 zval *ex, *info; in pdo_raise_impl_error() local
86 MAKE_STD_ZVAL(info); in pdo_raise_impl_error()
87 array_init(info); in pdo_raise_impl_error()
90 add_next_index_long(info, 0); in pdo_raise_impl_error()
93 zval_ptr_dtor(&info); in pdo_raise_impl_error()
111 zval *info = NULL; in pdo_handle_error() local
128 MAKE_STD_ZVAL(info); in pdo_handle_error()
129 array_init(info); in pdo_handle_error()
164 if (info) { in pdo_handle_error()
171 if (info) { in pdo_handle_error()
[all …]
/PHP-5.4/ext/standard/
H A Dimage.c440 static int php_read_APP(php_stream * stream, unsigned int marker, zval *info TSRMLS_DC) in php_read_APP()
464 add_assoc_stringl(info, markername, buffer, length, 1); in php_read_APP()
474 static struct gfxinfo *php_handle_jpeg (php_stream * stream, zval *info TSRMLS_DC) in php_handle_jpeg()
505 if (!info || length < 8) { /* if we don't want an extanded info -> return */ in php_handle_jpeg()
534 if (info) { in php_handle_jpeg()
1312 if (info) { in php_getimagesize_from_stream()
1313 result = php_handle_jpeg(stream, *info TSRMLS_CC); in php_getimagesize_from_stream()
1392 zval **info = NULL; in php_getimagesize_from_any() local
1403 zval_dtor(*info); in php_getimagesize_from_any()
1404 array_init(*info); in php_getimagesize_from_any()
[all …]
H A DMakefile.frag8 $(builddir)/info.lo: $(builddir)/../../main/build-defs.h
/PHP-5.4/ext/standard/tests/strings/
H A Dsetlocale_variation4.phpt30 echo "Locale info, before setting the locale\n";
39 echo "Locale info, after setting the locale\n";
56 Locale info, before setting the locale
106 Locale info, after setting the locale
H A Dsetlocale_variation5.phpt30 echo "Locale info, before setting the locale\n";
41 echo "Locale info, after setting the locale\n";
60 Locale info, before setting the locale
110 Locale info, after setting the locale
/PHP-5.4/sapi/tests/
H A Dtest006.phpt39 Content-Disposition: form-data; name="file"; filename="info.php"
66 [name] => info.php
/PHP-5.4/Zend/
H A Dzend_alloc.c367 zend_mm_block_info info; member
380 zend_mm_block_info info; member
392 zend_mm_block_info info; member
645 …if (UNEXPECTED((block)->info._size != ZEND_MM_BLOCK_AT(block, ZEND_MM_FREE_BLOCK_SIZE(block))->inf…
647 UNEXPECTED(ZEND_MM_PREV_BLOCK(block)->info._size != (block)->info._prev))) { \
1249 p->info._size != q->info._prev) { in zend_mm_find_leaks()
1285 p->info._size != q->info._prev) { in zend_mm_check_leaks()
1380 if (p->info._size != ZEND_MM_NEXT_BLOCK(p)->info._prev) { in zend_mm_check_ptr()
1388 if (p->info._prev != ZEND_MM_GUARD_BLOCK && in zend_mm_check_ptr()
1389 ZEND_MM_PREV_BLOCK(p)->info._size != p->info._prev) { in zend_mm_check_ptr()
[all …]
/PHP-5.4/ext/pdo_dblib/
H A Ddblib_driver.c38 static int dblib_fetch_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info TSRMLS_DC) in dblib_fetch_error()
63 add_next_index_long(info, einfo->dberr); in dblib_fetch_error()
64 add_next_index_string(info, message, 0); in dblib_fetch_error()
65 add_next_index_long(info, einfo->oserr); in dblib_fetch_error()
66 add_next_index_long(info, einfo->severity); in dblib_fetch_error()
68 add_next_index_string(info, einfo->oserrstr, 1); in dblib_fetch_error()
/PHP-5.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_init_command.phpt28 $info = $db->errorInfo();
29 var_dump($info[0]);
/PHP-5.4/ext/gd/libgd/
H A Dgdxpm.c20 XpmInfo info; in gdImageCreateFromXpm() local
30 ret = XpmReadFileToXpmImage(filename, &image, &info); in gdImageCreateFromXpm()
136 XpmFreeXpmInfo(&info); in gdImageCreateFromXpm()
/PHP-5.4/tests/lang/
H A Dbug28800.phpt5 $strings = array('into', 'info', 'inf', 'infinity', 'infin', 'inflammable');
/PHP-5.4/ext/pdo_firebird/
H A Dfirebird_driver.c145 static char const info[] = { isc_info_sql_stmt_type }; in firebird_handle_preparer() local
169 if (isc_dsql_sql_info(H->isc_status, &s, sizeof(info), const_cast(info), sizeof(result), in firebird_handle_preparer()
603 static int pdo_firebird_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info TSRMLS_DC) /*… in pdo_firebird_fetch_error_func()
611 add_next_index_long(info, sqlcode); in pdo_firebird_fetch_error_func()
617 add_next_index_string(info, buf, 1); in pdo_firebird_fetch_error_func()
619 add_next_index_long(info, -999); in pdo_firebird_fetch_error_func()
620 add_next_index_string(info, const_cast(H->last_app_error),1); in pdo_firebird_fetch_error_func()
/PHP-5.4/ext/mbstring/
H A Dmb_gpc.h50 const mbfl_encoding *_php_mb_encoding_handler_ex(const php_mb_encoding_handler_info_t *info, zval *…
/PHP-5.4/ext/xsl/tests/
H A Dxsl-phpinfo.phpt2 Test phpinfo() displays xsl info
/PHP-5.4/Zend/tests/
H A Dbug52237.phpt6 preg_match('//', '', $data->info);
/PHP-5.4/ext/gettext/tests/
H A Dgettext_gettext_error_wrongparams.phpt16 Moritz Neuhaeuser, info@xcompile.net
/PHP-5.4/ext/mbstring/libmbfl/nls/
H A DMakefile.am3 libmbfl_nls_la_LDFLAGS=-version-info $(SHLIB_VERSION)
/PHP-5.4/ext/phar/tests/
H A Dphar_createdefaultstub.phpt171 $info = self::_unpack($m);
172 $f = $info['c'];
251 $info = unpack('V', substr($m, 0, 4));
259 for ($i = 0; $i < $info[1]; $i++) {
465 $info = self::_unpack($m);
466 $f = $info['c'];
545 $info = unpack('V', substr($m, 0, 4));
553 for ($i = 0; $i < $info[1]; $i++) {
767 $info = self::_unpack($m);
768 $f = $info['c'];
[all …]
H A Dphar_setdefaultstub.phpt191 $info = self::_unpack($m);
192 $f = $info['c'];
271 $info = unpack('V', substr($m, 0, 4));
279 for ($i = 0; $i < $info[1]; $i++) {
486 $info = self::_unpack($m);
487 $f = $info['c'];
566 $info = unpack('V', substr($m, 0, 4));
574 for ($i = 0; $i < $info[1]; $i++) {
781 $info = self::_unpack($m);
782 $f = $info['c'];
[all …]
/PHP-5.4/win32/
H A Dtime.c135 LPTIMECALLBACK setitimer_timeout(UINT uTimerID, UINT info, DWORD dwUser, DWORD dw1, DWORD dw2)
137 struct timer_msg *msg = (struct timer_msg *) info;
/PHP-5.4/sapi/cgi/tests/
H A D009.phpt2 path info request without exported PATH_INFO
/PHP-5.4/ext/dba/tests/
H A Ddba001.phpt6 die("info $HND handler used");
/PHP-5.4/ext/com_dotnet/
H A Dcom_com.c48 COSERVERINFO info; in PHP_FUNCTION() local
126 info.dwReserved1 = 0; in PHP_FUNCTION()
127 info.dwReserved2 = 0; in PHP_FUNCTION()
128info.pwszName = php_com_string_to_olestring(server_name, server_name_len, obj->code_page TSRMLS_CC… in PHP_FUNCTION()
150 info.pAuthInfo = &authinfo; in PHP_FUNCTION()
152 info.pAuthInfo = NULL; in PHP_FUNCTION()
172 bopt.pServerInfo = &info; in PHP_FUNCTION()
203 res = CoCreateInstanceEx(&clsid, NULL, ctx, &info, 1, &qi); in PHP_FUNCTION()
218 STR_FREE((char*)info.pwszName); in PHP_FUNCTION()

Completed in 97 milliseconds

1234567891011