Home
last modified time | relevance | path

Searched refs:opt (Results 1 – 25 of 37) sorted by last modified time

12

/PHP-7.4/ext/pgsql/
H A Dpgsql.c5859 assert(!(opt & ~PGSQL_CONV_OPTS));
6547 if (opt & PGSQL_DML_ASYNC) {
6642 if (opt & PGSQL_DML_ESCAPE) {
6659 if (opt & PGSQL_DML_ESCAPE) {
6700 else if (opt & PGSQL_DML_STRING) {
6811 if (opt & PGSQL_DML_ESCAPE) {
6826 if (opt & PGSQL_DML_ESCAPE) {
6911 if ((opt & PGSQL_DML_EXEC) && do_exec(&querystr, PGRES_COMMAND_OK, pg_link, opt) == 0) {
6913 } else if (opt & PGSQL_DML_STRING) {
7004 if ((opt & PGSQL_DML_EXEC) && do_exec(&querystr, PGRES_COMMAND_OK, pg_link, opt) == 0) {
[all …]
H A Dphp_pgsql.h213 …convert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, zend_ulong opt);
214 PHP_PGSQL_API int php_pgsql_insert(PGconn *pg_link, const char *table, zval *values, zend_ulong opt
215 …te(PGconn *pg_link, const char *table, zval *values, zval *ids, zend_ulong opt , zend_string **sql…
216 PHP_PGSQL_API int php_pgsql_delete(PGconn *pg_link, const char *table, zval *ids, zend_ulong opt, z…
217 …PGconn *pg_link, const char *table, zval *ids, zval *ret_array, zend_ulong opt, long fetch_option,…
/PHP-7.4/azure/macos/
H A Djob.yml12 export PATH="/usr/local/opt/bison/bin:$PATH"
28 --with-pgsql=/usr/local/opt/libpq \
29 --with-pdo-pgsql=/usr/local/opt/libpq \
42 --with-tidy=/usr/local/opt/tidyp \
49 --with-readline=/usr/local/opt/readline \
52 --with-gettext=/usr/local/opt/gettext \
54 --with-bz2=/usr/local/opt/bzip2 \
56 --with-gmp=/usr/local/opt/gmp \
57 --with-iconv=/usr/local/opt/libiconv \
61 --with-pspell=/usr/local/opt/aspell \
[all …]
/PHP-7.4/ext/mbstring/
H A Dmbstring.c3755 int opt; in PHP_FUNCTION() local
3769 opt = 0; in PHP_FUNCTION()
3774 opt |= 0x1; in PHP_FUNCTION()
3777 opt |= 0x10; in PHP_FUNCTION()
3780 opt |= 0x2; in PHP_FUNCTION()
3783 opt |= 0x20; in PHP_FUNCTION()
3786 opt |= 0x4; in PHP_FUNCTION()
3789 opt |= 0x40; in PHP_FUNCTION()
3792 opt |= 0x8; in PHP_FUNCTION()
3795 opt |= 0x80; in PHP_FUNCTION()
[all …]
H A Dphp_mbregex.c1708 OnigOptionType opt; in PHP_FUNCTION() local
1719 opt = 0; in PHP_FUNCTION()
1721 _php_mb_regex_init_options(string, string_len, &opt, &syntax, NULL); in PHP_FUNCTION()
1722 _php_mb_regex_set_options(opt, syntax, NULL, NULL); in PHP_FUNCTION()
1724 opt = MBREX(regex_default_options); in PHP_FUNCTION()
1727 _php_mb_regex_get_option_string(buf, sizeof(buf), opt, syntax); in PHP_FUNCTION()
/PHP-7.4/ext/zip/
H A Dphp_zip.c1345 static void php_zip_entry_get_info(INTERNAL_FUNCTION_PARAMETERS, int opt) /* {{{ */ in php_zip_entry_get_info() argument
1362 switch (opt) { in php_zip_entry_get_info()
/PHP-7.4/ext/xml/
H A Dxml.c1619 zend_long opt; in PHP_FUNCTION() local
1621 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlz", &pind, &opt, &val) == FAILURE) { in PHP_FUNCTION()
1629 switch (opt) { in PHP_FUNCTION()
1672 zend_long opt; in PHP_FUNCTION() local
1674 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rl", &pind, &opt) == FAILURE) { in PHP_FUNCTION()
1682 switch (opt) { in PHP_FUNCTION()
/PHP-7.4/ext/standard/
H A Dstring.c1677 zend_long opt = PHP_PATHINFO_ALL; local
1683 Z_PARAM_LONG(opt)
1686 have_basename = ((opt & PHP_PATHINFO_BASENAME) == PHP_PATHINFO_BASENAME);
1690 if ((opt & PHP_PATHINFO_DIRNAME) == PHP_PATHINFO_DIRNAME) {
1704 if ((opt & PHP_PATHINFO_EXTENSION) == PHP_PATHINFO_EXTENSION) {
1720 if ((opt & PHP_PATHINFO_FILENAME) == PHP_PATHINFO_FILENAME) {
1739 if (opt == PHP_PATHINFO_ALL) {
H A Dbasic_functions.c4362 char opt[2] = { '\0' }; local
4489 opt[0] = o;
4490 optname = opt;
4800 char *message, *opt = NULL, *headers = NULL; local
4809 Z_PARAM_PATH(opt, opt_len)
4817 if (_php_error_log_ex(opt_err, message, message_len, opt, headers) == FAILURE) {
4826 PHPAPI int _php_error_log(int opt_err, char *message, char *opt, char *headers) /* {{{ */ argument
4828 return _php_error_log_ex(opt_err, message, (opt_err == 3) ? strlen(message) : 0, opt, headers);
4832 PHPAPI int _php_error_log_ex(int opt_err, char *message, size_t message_len, char *opt, char *heade… argument
4840 if (!php_mail(opt, "PHP error_log message", message, headers, NULL)) {
[all …]
H A Dbasic_functions.h157 PHPAPI int _php_error_log(int opt_err, char *message, char *opt, char *headers);
158 PHPAPI int _php_error_log_ex(int opt_err, char *message, size_t message_len, char *opt, char *heade…
/PHP-7.4/ext/pdo_firebird/tests/
H A Dcommon.phpt24 $config['ENV']['PDOTEST_DSN'] = 'firebird:dbname=/opt/firebird/test.gdb';
/PHP-7.4/ext/tidy/
H A Dtidy.c543 TidyOption opt = tidyGetOptionByName(doc, optname); in _php_tidy_set_tidy_opt() local
547 if (!opt) { in _php_tidy_set_tidy_opt()
552 if (tidyOptIsReadOnly(opt)) { in _php_tidy_set_tidy_opt()
557 switch(tidyOptGetType(opt)) { in _php_tidy_set_tidy_opt()
569 if (tidyOptSetInt(doc, tidyOptGetId(opt), lval)) { in _php_tidy_set_tidy_opt()
967 *type = tidyOptGetType(opt); in php_tidy_get_opt_val()
1418 TidyOption opt; in PHP_FUNCTION() local
1436 if (!opt) { in PHP_FUNCTION()
1469 opt_name = (char *)tidyOptGetName(opt); in PHP_FUNCTION()
1578 TidyOption opt; in PHP_FUNCTION() local
[all …]
/PHP-7.4/ext/pdo/
H A Dpdo_dbh.c492 zval *options = NULL, *opt, *item, ctor_args; in PHP_METHOD() local
506 …if (ZEND_NUM_ARGS() > 1 && (opt = zend_hash_index_find(Z_ARRVAL_P(options), PDO_ATTR_STATEMENT_CLA… in PHP_METHOD()
507 if (Z_TYPE_P(opt) != IS_ARRAY || (item = zend_hash_index_find(Z_ARRVAL_P(opt), 0)) == NULL in PHP_METHOD()
531 if ((item = zend_hash_index_find(Z_ARRVAL_P(opt), 1)) != NULL) { in PHP_METHOD()
/PHP-7.4/
H A DUPGRADING768 --with-external-gd (to opt into using an external libgd, rather than the
811 to opt into using an external PCRE library, rather than the bundled one.
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd.h211 #define mysqlnd_options(conn, opt, value) ((conn)->data)->m->set_client_option((conn)->data, (opt),… argument
212 #define mysqlnd_options4(conn, opt, k, v) ((conn)->data)->m->set_client_option_2d((conn)->data, (op… argument
H A Dmysqlnd_vio.c447 int opt = PHP_STREAM_OPTION_BLOCKING; in MYSQLND_METHOD() local
449 int was_blocked = net_stream->ops->set_option(net_stream, opt, 0, NULL); in MYSQLND_METHOD()
466 net_stream->ops->set_option(net_stream, opt, 1, NULL); in MYSQLND_METHOD()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg.c1377 int php_optind, opt, show_banner = 1; in main() local
1447 opt = 0; in main()
1454 while ((opt = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 0, 2)) != -1) { in main()
1455 switch (opt) { in main()
/PHP-7.4/ext/
H A Dext_skel.php182 switch($opt = strtolower(substr($val, 2)))
208 } else if ($opt == 'dir' && empty($argv[$i + 1])) {
212 … $options[$opt] = ($opt == 'dir' ? realpath($argv[$i + 1]) . DIRECTORY_SEPARATOR : $argv[$i + 1]);
/PHP-7.4/ext/sodium/
H A Dsodium_pwhash.c44 zval *opt; in get_options() local
51 if ((opt = zend_hash_str_find(options, "memory_cost", strlen("memory_cost")))) { in get_options()
52 zend_long smemlimit = zval_get_long(opt); in get_options()
60 if ((opt = zend_hash_str_find(options, "time_cost", strlen("time_cost")))) { in get_options()
61 *opslimit = zval_get_long(opt); in get_options()
67 …if ((opt = zend_hash_str_find(options, "threads", strlen("threads"))) && (zval_get_long(opt) != 1)… in get_options()
/PHP-7.4/ext/reflection/tests/
H A Dparameters_002.phpt7 NonExistingClass $na, stdClass &$opt = NULL, $def = "FooBar")
14 NonExistingClass $na, stdClass $opt = NULL, $def = "FooBar")
125 getName: string(3) "opt"
191 getName: string(3) "opt"
/PHP-7.4/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-7.4/ext/filter/
H A Dfilter.c738 zval *option, *opt, *def; in PHP_FUNCTION() local
746 …(opt = zend_hash_str_find_deref(Z_ARRVAL_P(filter_args), "options", sizeof("options") - 1)) != NUL… in PHP_FUNCTION()
747 Z_TYPE_P(opt) == IS_ARRAY && in PHP_FUNCTION()
748 (def = zend_hash_str_find_deref(Z_ARRVAL_P(opt), "default", sizeof("default") - 1)) != NULL) { in PHP_FUNCTION()
/PHP-7.4/ext/bz2/
H A Dbz2.c640 static void php_bz2_error(INTERNAL_FUNCTION_PARAMETERS, int opt) in php_bz2_error() argument
664 switch (opt) { in php_bz2_error()
/PHP-7.4/ext/tidy/tests/
H A D007.phpt17 var_dump($a->getopt('bogus-opt'));
25 Warning: tidy::getOpt(): Unknown Tidy Configuration Option 'bogus-opt' in %s007.php on line 10
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug34643.phpt12 public function get_it($opt="zzz") {
13 return $opt;
44 [0] => string get_it(string $opt)

Completed in 109 milliseconds

12