Home
last modified time | relevance | path

Searched refs:options (Results 226 – 250 of 490) sorted by last modified time

12345678910>>...20

/PHP-7.2/ext/pcre/pcrelib/
H A Dpcre_printint.c316 unsigned int options = re->options; in pcre_printint() local
326 options = ((options << 24) & 0xff000000) | in pcre_printint()
327 ((options << 8) & 0x00ff0000) | in pcre_printint()
328 ((options >> 8) & 0x0000ff00) | in pcre_printint()
329 ((options >> 24) & 0x000000ff); in pcre_printint()
334 utf = (options & PCRE_UTF8) != 0; in pcre_printint()
H A Dpcre_compile.c4214 if ((options & PCRE_CASELESS) != 0) in add_to_class()
4217 if ((options & PCRE_UTF8) != 0) in add_to_class()
4267 if ((options & PCRE_UTF8) == 0) in add_to_class()
4273 if ((options & PCRE_UTF16) == 0) in add_to_class()
5576 (options & PCRE_UCP) != 0)) in compile_branch()
6759 newoptions = options; in compile_branch()
9230 options = (options & ~PCRE_NEWLINE_BITS) | newnl; in pcre_compile2()
9232 options = (options & ~(PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) | newbsr; in pcre_compile2()
9237 utf = (options & PCRE_UTF8) != 0; in pcre_compile2()
9273 if ((options & PCRE_UCP) != 0) in pcre_compile2()
[all …]
H A Dpcre_exec.c6433 utf = md->utf = (re->options & PCRE_UTF8) != 0; in pcre_exec()
6441 if (utf && (options & PCRE_NO_UTF8_CHECK) == 0) in pcre_exec()
6545 anchored = ((re->options | options) & PCRE_ANCHORED) != 0; in pcre_exec()
6547 firstline = (re->options & PCRE_FIRSTLINE) != 0; in pcre_exec()
6560 md->use_ucp = (re->options & PCRE_UCP) != 0; in pcre_exec()
6567 md->notbol = (options & PCRE_NOTBOL) != 0; in pcre_exec()
6568 md->noteol = (options & PCRE_NOTEOL) != 0; in pcre_exec()
6569 md->notempty = (options & PCRE_NOTEMPTY) != 0; in pcre_exec()
6611 switch ((((options & PCRE_NEWLINE_BITS) == 0)? re->options : in pcre_exec()
6777 if (((options | re->options) & PCRE_NO_START_OPTIMIZE) == 0) in pcre_exec()
[all …]
H A Dpcre_fullinfo.c106 *((unsigned long int *)where) = re->options & PUBLIC_COMPILE_OPTIONS; in pcre_fullinfo()
H A Dpcre_get.c286 if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0) in get_first_set()
290 if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0) in get_first_set()
294 if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0) in get_first_set()
H A DChangeLog814 13. Added the -T and -TM options to pcretest.
1066 30. Update RunTest with additional test selector options.
1359 -I, and --text options.
1977 the PCRE_UTF8 and PCRE_DOTALL options being set.
2527 these options useful.
3637 of the options.
4051 (i) Added the -D (--devices) and -d (--directories) options.
4297 PCRE options from within the C++ wrapper.
4431 two more options that take data. Such options can now be given in four
5765 localized options. All options to pcre_study() were also removed.
[all …]
H A DHACKING134 Changeable options
137 The /i, /m, or /s options (PCRE_CASELESS, PCRE_MULTILINE, PCRE_DOTALL, and some
141 options state any more.
160 compilation options. Data values that are counts (e.g. quantifiers) are two
H A DNEWS189 . pcregrep now recognizes binary files and there are related options.
261 . Added an optional parentheses number to the -o and --only-matching options
346 added. Also the --line-offsets and --file-offsets options were added to
353 The only change of specification is the addition of options to control whether
381 5. Some PCRE-specific settings for varying the newline options at the start of
535 multiline-matching and options for output more matching context. See the
671 (ii) Added --help to list all options with an explanatory phrase.
733 pcre_exec(pattern, extra, subject, length, options, ovec, ovecsize)
735 pcre_exec(pattern, extra, subject, length, 0, options, ovec, ovecsize)
H A DREADME200 by adding one of these options to the "configure" command:
239 . There are no separate options for enabling UTF-8, UTF-16 and UTF-32
419 . config.h build-time configuration options for the library
665 There is another script called RunGrepTest that tests the options of the
682 Some tests are relevant only when certain build-time options were selected. For
/PHP-7.2/ext/pcre/pcrelib/doc/
H A Dpcre.txt1862 section on pcre_exec() options below.
2472 56 inconsistent NEWLINE options
2581 0, /* no options */
3094 0, /* default options */
3241 (JIT) compile options, the only supported options for JIT execution are
8541 other two options:
8803 or both of these options:
8858 two partial matching options are set.
9618 options and identifying error codes.
9970 pcrecpp::RE_Options options;
[all …]
/PHP-7.2/ext/pcntl/tests/
H A D001.phpt18 $options=0;
19 pcntl_waitpid($pid, $status, $options);
33 $options=0;
35 pcntl_waitpid($pid, $status, $options);
55 $options=WUNTRACED;
57 pcntl_waitpid($pid, $status, $options);
/PHP-7.2/ext/pcntl/
H A Dtest-pcntl.php39 pcntl_waitpid($pid, &$status, $options);
H A Dpcntl.c67 ZEND_ARG_INFO(0, options)
73 ZEND_ARG_INFO(0, options)
660 zend_long pid, options = 0; in PHP_FUNCTION() local
684 child_id = wait4((pid_t) pid, &status, options, &rusage); in PHP_FUNCTION()
686 child_id = waitpid((pid_t) pid, &status, options); in PHP_FUNCTION()
689 child_id = waitpid((pid_t) pid, &status, options); in PHP_FUNCTION()
713 zend_long options = 0; in PHP_FUNCTION() local
721 if (zend_parse_parameters(ZEND_NUM_ARGS(), "z/|lz/", &z_status, &options, &z_rusage) == FAILURE) { in PHP_FUNCTION()
736 child_id = wait3(&status, options, &rusage); in PHP_FUNCTION()
737 } else if (options) { in PHP_FUNCTION()
[all …]
/PHP-7.2/ext/openssl/
H A Dxp_ssl.c2613 const char *persistent_id, int options, int flags, in php_openssl_ssl_socket_factory() argument
H A DREADME126 The options correspond to the options of the same name for the
/PHP-7.2/ext/openssl/tests/
H A Dopenssl_csr_new_basic.phpt21 // options type check
/PHP-7.2/ext/opcache/
H A DREADME43 We recommend the following configuration options for best performance
/PHP-7.2/ext/odbc/
H A Dconfig.m4100 dnl configure options
/PHP-7.2/ext/mysqlnd/
H A Dmysqlnd_result.c736 conn->options->int_and_float_native, in MYSQLND_METHOD()
857 conn->options->int_and_float_native, in MYSQLND_METHOD()
1010 conn->options->int_and_float_native, in MYSQLND_METHOD()
1100 conn->options->int_and_float_native, in MYSQLND_METHOD()
1192 conn->options->int_and_float_native, in MYSQLND_METHOD()
1644 conn->options->int_and_float_native)) in MYSQLND_METHOD()
1681 conn->options->int_and_float_native)) in MYSQLND_METHOD()
1708 conn->options->int_and_float_native)) in MYSQLND_METHOD()
H A Dmysqlnd_structs.h404 …_status (*func_mysqlnd_conn_data__refresh_server)(MYSQLND_CONN_DATA * const conn, uint8_t options);
824 MYSQLND_VIO_OPTIONS options; member
926 MYSQLND_SESSION_OPTIONS * options; member
H A Dmysqlnd_vio.c344 if (net->data->options.ssl_key) { in MYSQLND_METHOD()
362 if (net->data->options.ssl_ca) { in MYSQLND_METHOD()
496 if (net->data->options.ssl_key) { in MYSQLND_METHOD()
503 if (net->data->options.ssl_cert) { in MYSQLND_METHOD()
507 if (!net->data->options.ssl_key) { in MYSQLND_METHOD()
513 if (net->data->options.ssl_ca) { in MYSQLND_METHOD()
613 if (net->data->options.ssl_key) { in MYSQLND_METHOD()
615 net->data->options.ssl_key = NULL; in MYSQLND_METHOD()
617 if (net->data->options.ssl_cert) { in MYSQLND_METHOD()
621 if (net->data->options.ssl_ca) { in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_driver.c127 data->options = &(data->options_impl); in MYSQLND_METHOD()
H A Dmysqlnd_loaddata.c157 if (!(conn->options->flags & CLIENT_LOCAL_FILES)) { in mysqlnd_handle_local_infile()
H A Dmysqlnd_net.c747 if (net->data->options.ssl_key) { in MYSQLND_METHOD()
765 if (net->data->options.ssl_ca) { in MYSQLND_METHOD()
910 if (net->data->options.ssl_key) { in MYSQLND_METHOD()
917 if (net->data->options.ssl_cert) { in MYSQLND_METHOD()
921 if (!net->data->options.ssl_key) { in MYSQLND_METHOD()
927 if (net->data->options.ssl_ca) { in MYSQLND_METHOD()
1031 if (net->data->options.ssl_key) { in MYSQLND_METHOD()
1033 net->data->options.ssl_key = NULL; in MYSQLND_METHOD()
1035 if (net->data->options.ssl_cert) { in MYSQLND_METHOD()
1039 if (net->data->options.ssl_ca) { in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_commands.c449 uint8_t options; member
466 int1store(bits, command->context.options); in mysqlnd_com_refresh_run()
494 command->context.options = va_arg(args, unsigned int); in mysqlnd_com_refresh_create_command()
1341 conn->options, mysql_flags)) in mysqlnd_com_handshake_run()

Completed in 162 milliseconds

12345678910>>...20