Home
last modified time | relevance | path

Searched refs:opt (Results 1 – 25 of 48) sorted by relevance

12

/PHP-8.0/.github/actions/configure-macos/
H A Daction.yml12 export PATH="/usr/local/opt/bison/bin:$PATH"
14 export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/opt/krb5/lib/pkgconfig"
27 --with-pgsql=/usr/local/opt/libpq \
28 --with-pdo-pgsql=/usr/local/opt/libpq \
41 --with-tidy=/usr/local/opt/tidy-html5 \
47 --with-readline=/usr/local/opt/readline \
50 --with-gettext=/usr/local/opt/gettext \
52 --with-bz2=/usr/local/opt/bzip2 \
54 --with-gmp=/usr/local/opt/gmp \
55 --with-iconv=/usr/local/opt/libiconv \
[all …]
/PHP-8.0/ext/session/
H A Dmod_files.sh39 select opt in "$@"; do
41 if [[ $opt = "Delete directory contents" ]]; then
44 elif [[ $opt = "Choose another directory" ]]; then
47 elif [[ $opt = "Quit" ]]; then
/PHP-8.0/ext/curl/tests/
H A Dbug46711.phpt13 $opt = array(
20 foreach( $opt as $option => $value ) {
24 var_dump($opt); // with this bug, $opt[58] becomes NULL
/PHP-8.0/ext/sodium/
H A Dsodium_pwhash.c42 zval *opt; in get_options() local
49 if ((opt = zend_hash_str_find(options, "memory_cost", strlen("memory_cost")))) { in get_options()
50 zend_long smemlimit = zval_get_long(opt); in get_options()
58 if ((opt = zend_hash_str_find(options, "time_cost", strlen("time_cost")))) { in get_options()
59 *opslimit = zval_get_long(opt); in get_options()
65 …if ((opt = zend_hash_str_find(options, "threads", strlen("threads"))) && (zval_get_long(opt) != 1)… in get_options()
/PHP-8.0/ext/mbstring/tests/
H A Dmb_ereg_search_xxx.phpt16 function test_search( $test_enc, $str, $look_for, $opt, $in_enc = 'EUC-JP' ) {
20 mb_ereg_search_init( $str, $look_for, $opt );
27 function do_tests( $enc, $opt ) {
28 test_search( $enc, "�ϡ� ����\n", ' (��?�ϡ�?)[[:space:]]', $opt );
29 test_search( $enc, 'abcde abdeabcf anvfabc odu abcd ', '(ab[a-z]+)', $opt );
/PHP-8.0/ext/soap/tests/bugs/
H A Dbug34643.phpt12 public function get_it($opt="zzz") {
13 return $opt;
44 [0] => string get_it(string $opt)
H A Dbug38067.phpt16 function __construct($wsdl, $opt) {
17 parent::__construct($wsdl, $opt);
18 $this->server = new SoapServer($wsdl, $opt);
H A Dbug38005.phpt14 function __construct($wsdl, $opt) {
15 parent::__construct($wsdl, $opt);
16 $this->server = new SoapServer($wsdl, $opt);
/PHP-8.0/.github/actions/apt-x64/
H A Daction.yml63 mkdir /opt/oracle
68 mv instantclient_*_* /opt/oracle/instantclient
70 rm /opt/oracle/instantclient/sdk/include/ldap.h
72 echo DISABLE_INTERRUPT=on > /opt/oracle/instantclient/network/admin/sqlnet.ora
73 …sudo sh -c 'echo /opt/oracle/instantclient >/etc/ld.so.conf.d/oracle-instantclient.conf && ldconfi…
/PHP-8.0/ext/opcache/tests/
H A Dbug66338.phpt32 $opt = -1; # This test works if $opt = 0
33 …-d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.optimization_level=$opt -d opcache.file_upd…
/PHP-8.0/ext/
H A Dext_skel.php175 switch($opt = strtolower(substr($val, 2)))
201 } else if ($opt == 'dir' && empty($argv[$i + 1])) {
205 … $options[$opt] = ($opt == 'dir' ? realpath($argv[$i + 1]) . DIRECTORY_SEPARATOR : $argv[$i + 1]);
/PHP-8.0/ext/tidy/tests/
H A D007.phpt18 $a->getopt('bogus-opt');
34 tidy::getOpt(): Argument #1 ($option) is an invalid configuration option, "bogus-opt" given
/PHP-8.0/ext/pgsql/
H A Dphp_pgsql.h180 …convert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, zend_ulong opt);
181 PHP_PGSQL_API int php_pgsql_insert(PGconn *pg_link, const char *table, zval *values, zend_ulong opt
182 …te(PGconn *pg_link, const char *table, zval *values, zval *ids, zend_ulong opt , zend_string **sql…
183 PHP_PGSQL_API int php_pgsql_delete(PGconn *pg_link, const char *table, zval *ids, zend_ulong opt, z…
184 …PGconn *pg_link, const char *table, zval *ids, zval *ret_array, zend_ulong opt, long fetch_option,…
H A Dpgsql.c4584 ZEND_ASSERT(!(opt & ~PGSQL_CONV_OPTS)); in php_pgsql_convert()
5271 if (opt & PGSQL_DML_ASYNC) { in do_exec()
5365 if (opt & PGSQL_DML_ESCAPE) { in php_pgsql_insert()
5382 if (opt & PGSQL_DML_ESCAPE) { in php_pgsql_insert()
5422 else if (opt & PGSQL_DML_STRING) { in php_pgsql_insert()
5538 if (opt & PGSQL_DML_ESCAPE) { in build_assignment_string()
5553 if (opt & PGSQL_DML_ESCAPE) { in build_assignment_string()
5637 if ((opt & PGSQL_DML_EXEC) && do_exec(&querystr, PGRES_COMMAND_OK, pg_link, opt) == 0) { in php_pgsql_update()
5639 } else if (opt & PGSQL_DML_STRING) { in php_pgsql_update()
5734 if ((opt & PGSQL_DML_EXEC) && do_exec(&querystr, PGRES_COMMAND_OK, pg_link, opt) == 0) { in php_pgsql_delete()
[all …]
/PHP-8.0/ext/tidy/
H A Dtidy.c292 TidyOption opt = tidyGetOptionByName(doc, optname); in _php_tidy_set_tidy_opt() local
296 if (!opt) { in _php_tidy_set_tidy_opt()
301 if (tidyOptIsReadOnly(opt)) { in _php_tidy_set_tidy_opt()
306 switch(tidyOptGetType(opt)) { in _php_tidy_set_tidy_opt()
318 if (tidyOptSetInt(doc, tidyOptGetId(opt), lval)) { in _php_tidy_set_tidy_opt()
724 *type = tidyOptGetType(opt); in php_tidy_get_opt_val()
1171 TidyOption opt; in PHP_FUNCTION() local
1182 if (!opt) { in PHP_FUNCTION()
1214 opt_name = (char *)tidyOptGetName(opt); in PHP_FUNCTION()
1314 TidyOption opt; in PHP_FUNCTION() local
[all …]
/PHP-8.0/.github/actions/verify-generated-files/
H A Daction.yml8 [[ "$OSTYPE" == "darwin"* ]] && export PATH="/usr/local/opt/bison/bin:$PATH"
/PHP-8.0/ext/standard/
H A Dbasic_functions.h50 PHPAPI int _php_error_log(int opt_err, const char *message, const char *opt, const char *headers);
51 PHPAPI int _php_error_log_ex(int opt_err, const char *message, size_t message_len, const char *opt,…
/PHP-8.0/.github/actions/configure-x64/
H A Daction.yml76 --with-pdo-oci=shared,instantclient,/opt/oracle/instantclient \
77 --with-oci8=shared,instantclient,/opt/oracle/instantclient \
/PHP-8.0/ext/opcache/jit/dynasm/
H A Ddynasm.lua1032 local function parseopt(opt, args)
1033 opt_current = #opt == 1 and "-"..opt or "--"..opt
1034 local f = opt_map[opt] or opt_map[opt_alias[opt]]
1055 local lopt, opt = match(a, "^%-(%-?)(.+)")
1056 if not opt then break end
1060 for o in gmatch(opt, ".") do parseopt(o, args) end
1063 parseopt(opt, args)
/PHP-8.0/ext/pdo_firebird/tests/
H A Dcommon.phpt24 $config['ENV']['PDOTEST_DSN'] = 'firebird:dbname=/opt/firebird/test.gdb';
/PHP-8.0/Zend/tests/
H A Ddebug_backtrace_options.phpt6 function backtrace_print($opt = null)
8 if(is_null($opt)) {
11 print_r(debug_backtrace($opt));
/PHP-8.0/ext/reflection/tests/
H A Dparameters_002.phpt7 NonExistingClass $na, stdClass &$opt = NULL, $def = "FooBar")
14 NonExistingClass $na, stdClass $opt = NULL, $def = "FooBar")
143 getName: string(3) "opt"
237 getName: string(3) "opt"
/PHP-8.0/ext/pdo_firebird/
H A Dconfig.m45 [/opt/firebird]])])
/PHP-8.0/.github/actions/setup-x64/
H A Daction.yml17 …docker exec sql1 /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U SA -P "<YourStrong@Passw0rd>" -Q "cre…
/PHP-8.0/ext/phar/phar/
H A Dclicommand.inc262 foreach($conf['select'] as $opt => $what) {
263 $ls = max($ls, strlen($opt));
267 foreach($conf['select'] as $opt => $what) {
268 … $inf .= $this->cli_wordwrap($sp2 . " " . sprintf("%-${ls}s ", $opt) . $what, $l3, $sp3) . "\n";

Completed in 56 milliseconds

12