Home
last modified time | relevance | path

Searched refs:bin (Results 26 – 50 of 134) sorted by relevance

123456

/PHP-5.6/ext/bz2/
H A Dbz2_filter.c92 size_t bin = 0, desired; in php_bz2_decompress_filter() local
95 while (bin < bucket->buflen) { in php_bz2_decompress_filter()
112 desired = bucket->buflen - bin; in php_bz2_decompress_filter()
116 memcpy(data->strm.next_in, bucket->buf + bin, desired); in php_bz2_decompress_filter()
137 bin += desired; in php_bz2_decompress_filter()
228 size_t bin = 0, desired; in php_bz2_compress_filter() local
232 while (bin < bucket->buflen) { in php_bz2_compress_filter()
233 desired = bucket->buflen - bin; in php_bz2_compress_filter()
237 memcpy(data->strm.next_in, bucket->buf + bin, desired); in php_bz2_compress_filter()
250 bin += desired; in php_bz2_compress_filter()
/PHP-5.6/ext/gd/tests/
H A Dimageloadfont_invalid.phpt10 $bin = "\x41\x41\x41\x41\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00";
12 fwrite($fp, $bin);
/PHP-5.6/sapi/caudium/
H A Dconfig.m421 if test -f $PHP_CAUDIUM/bin/caudium; then
22 PIKE=$PHP_CAUDIUM/bin/caudium
23 elif test -f $PHP_CAUDIUM/bin/pike; then
24 PIKE=$PHP_CAUDIUM/bin/pike
26 AC_MSG_ERROR([Could not find a pike in $PHP_CAUDIUM/bin/])
/PHP-5.6/sapi/aolserver/
H A Dconfig.m417 if test ! -d $PHP_AOLSERVER/bin ; then
24 INSTALL_IT="\$(INSTALL) -m 0755 $SAPI_SHARED \$(INSTALL_ROOT)$PHP_AOLSERVER/bin/"
/PHP-5.6/sapi/cgi/
H A DREADME.FastCGI74 Now, we'll create a fcgi-bin directory, just like you would do with normal
76 FastCGI binaries. We'll use /space/fcgi-bin/ for this example. Remember to
80 ScriptAlias /fcgi-bin/ /space/fcgi-bin/
81 <Location /fcgi-bin/>
91 Alias /fcgi-bin/ /space/fcgi-bin/
95 use the FastCGI binary /fcgi-bin/php to deliver PHP pages.
99 Action application/x-httpd-fastphp /fcgi-bin/php-cgi
/PHP-5.6/ext/pgsql/tests/
H A D08escape.phpt47 $sql = "INSERT INTO ".$table_name." (num, bin) VALUES (-9999, CAST ('".$escaped_data."' AS BYTEA));…
52 $sql = "SELECT bin::bytea FROM ".$table_name." WHERE num = -9999";
56 if ($data === pg_unescape_bytea($row['bin'])) {
H A D15pg_delete.phpt13 $fields = array('num'=>'1234', 'str'=>'XXX', 'bin'=>'YYY');
H A D22pg_fetch_object.phpt34 ["bin"]=>
/PHP-5.6/sapi/nsapi/
H A Dconfig.m49 if test ! -d $PHP_NSAPI/bin ; then
33 INSTALL_IT="\$(INSTALL) -m 0755 $SAPI_SHARED \$(INSTALL_ROOT)$PHP_NSAPI/bin/"
/PHP-5.6/ext/intl/tests/_files/
H A Des-bundle.txt8 testbin:bin { a1b2c3d4e5f67890 }
H A Dresourcebundle.txt8 testbin:bin { a1b2c3d4e5f67890 }
/PHP-5.6/sapi/cli/tests/
H A Dbug67741.phpt11 #!/bin/env php
/PHP-5.6/ext/snmp/
H A Dconfig.m414 AC_PATH_PROG(SNMP_CONFIG,net-snmp-config,,[/usr/local/bin:$PATH])
16 SNMP_CONFIG="$PHP_SNMP/bin/net-snmp-config"
/PHP-5.6/ext/xsl/
H A Dconfig.m420 if test -x "$i/bin/xslt-config"; then
21 XSLT_CONFIG=$i/bin/xslt-config
/PHP-5.6/ext/pdo_pgsql/
H A Dconfig.m418 for i in $PHP_PDO_PGSQL $PHP_PDO_PGSQL/bin /usr/local/pgsql/bin /usr/local/bin /usr/bin ""; do
/PHP-5.6/sapi/fpm/
H A Dphp-fpm.service.in9 ExecReload=/bin/kill -USR2 $MAINPID
/PHP-5.6/ext/phar/tests/tar/
H A Dbug67761.phpt17 #!/usr/bin/env php
/PHP-5.6/ext/pgsql/
H A Dconfig.m413 for i in $PHP_PGSQL $PHP_PGSQL/bin /usr/local/pgsql/bin /usr/local/bin /usr/bin ""; do
/PHP-5.6/scripts/dev/
H A Dphpextdist7 phpize=`php-config --prefix`/bin/phpize
/PHP-5.6/ext/standard/tests/general_functions/
H A Dbug44667.phpt4 <?php if (!is_executable('/bin/cat')) echo 'skip cat not found'; ?>
/PHP-5.6/sapi/fpm/tests/
H A D021-uds-acl.phpt6 if (!(file_exists('/usr/bin/getfacl') && file_exists('/etc/passwd') && file_exists('/etc/group'))) …
59 passthru("/usr/bin/getfacl -cp $socket");
/PHP-5.6/ext/mbstring/
H A DREADME7 http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/php-i18n/
/PHP-5.6/ext/snmp/tests/
H A Dsnmpd.conf27 exec HexTest /bin/sh /etc/snmp/bigtest.sh
/PHP-5.6/ext/mbstring/tests/
H A Dbug52861.phpt13 sendmail_path=/bin/cat
/PHP-5.6/ext/ereg/tests/
H A Dregular_expressions.inc5 * based on documentation on http://www.tin.org/bin/man.cgi?section=7&topic=regex .

Completed in 56 milliseconds

123456