options           243 ext/bz2/bz2.c  		stream = php_stream_open_wrapper(path, mode, options | STREAM_WILL_CAST | ENFORCE_SAFE_MODE, opened_path);
options            52 ext/bz2/php_bz2.h #define php_stream_bz2open(wrapper, path, mode, options, opened_path)	_php_stream_bz2open((wrapper), (path), (mode), (options), (opened_path), NULL STREAMS_CC TSRMLS_CC)
options           277 ext/curl/streams.c 	if (options & STREAM_WILL_CAST) {
options           419 ext/curl/streams.c 	if (options & STREAM_WILL_CAST) {
options          22387 ext/date/lib/parse_date.c 	if (!(options && TIMELIB_OVERRIDE_TIME) && parsed->have_date && !parsed->have_time) {
options           169 ext/date/lib/timelib.c 	if ((options & 2) == 2) {
options           202 ext/date/lib/timelib.c 	if ((options & 1) == 1) {
options           121 ext/dbase/dbase.c 	zval **dbf_name, **options;
options           126 ext/dbase/dbase.c 	if (ZEND_NUM_ARGS() != 2 || zend_get_parameters_ex(2, &dbf_name, &options) == FAILURE) {
options           130 ext/dbase/dbase.c 	convert_to_long_ex(options);
options           137 ext/dbase/dbase.c 	if (Z_LVAL_PP(options) == 1) {
options           140 ext/dbase/dbase.c 	} else if (Z_LVAL_PP(options) < 0 || Z_LVAL_PP(options) > 3) {
options           141 ext/dbase/dbase.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid access mode %ld", Z_LVAL_PP(options));
options           153 ext/dbase/dbase.c 	dbh = dbf_open(Z_STRVAL_PP(dbf_name), Z_LVAL_PP(options) TSRMLS_CC);
options          1661 ext/dom/document.c 	if (validate && ! (options & XML_PARSE_DTDVALID)) {
options          1662 ext/dom/document.c 		options |= XML_PARSE_DTDVALID;
options          1664 ext/dom/document.c 	if (resolve_externals && ! (options & XML_PARSE_DTDATTR)) {
options          1665 ext/dom/document.c 		options |= XML_PARSE_DTDATTR;
options          1667 ext/dom/document.c 	if (substitute_ent && ! (options & XML_PARSE_NOENT)) {
options          1668 ext/dom/document.c 		options |= XML_PARSE_NOENT;
options          1670 ext/dom/document.c 	if (keep_blanks == 0 && ! (options & XML_PARSE_NOBLANKS)) {
options          1671 ext/dom/document.c 		options |= XML_PARSE_NOBLANKS;
options          1674 ext/dom/document.c 	xmlCtxtUseOptions(ctxt, options);
options          1713 ext/dom/document.c 	long options = 0;
options          1720 ext/dom/document.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &source, &source_len, &options) == FAILURE) {
options          1729 ext/dom/document.c 	newdoc = dom_document_parser(id, mode, source, options TSRMLS_CC);
options          1795 ext/dom/document.c 	long options = 0;
options          1797 ext/dom/document.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os|l", &id, dom_document_class_entry, &file, &file_len, &options) == FAILURE) {
options          1812 ext/dom/document.c 	if (options & LIBXML_SAVE_NOEMPTYTAG) {
options          1817 ext/dom/document.c 	if (options & LIBXML_SAVE_NOEMPTYTAG) {
options          1841 ext/dom/document.c 	long options = 0;
options          1843 ext/dom/document.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O|O!l", &id, dom_document_class_entry, &nodep, dom_node_class_entry, &options) == FAILURE) {
options          1864 ext/dom/document.c 		if (options & LIBXML_SAVE_NOEMPTYTAG) {
options          1869 ext/dom/document.c 		if (options & LIBXML_SAVE_NOEMPTYTAG) {
options          1880 ext/dom/document.c 		if (options & LIBXML_SAVE_NOEMPTYTAG) {
options          1886 ext/dom/document.c 		if (options & LIBXML_SAVE_NOEMPTYTAG) {
options           322 ext/filter/filter.c 	filter_func.function(*value, flags, options, charset TSRMLS_CC);
options           325 ext/filter/filter.c 		options && (Z_TYPE_P(options) == IS_ARRAY || Z_TYPE_P(options) == IS_OBJECT) &&
options           328 ext/filter/filter.c 		zend_hash_exists(HASH_OF(options), "default", sizeof("default"))
options           331 ext/filter/filter.c 		if (zend_hash_find(HASH_OF(options), "default", sizeof("default"), (void **)&tmp) == SUCCESS) {
options           461 ext/filter/filter.c 				php_zval_filter_recursive(element, filter, flags, options, charset, copy TSRMLS_CC);
options           464 ext/filter/filter.c 				php_zval_filter(element, filter, flags, options, charset, copy TSRMLS_CC);
options           468 ext/filter/filter.c 		php_zval_filter(value, filter, flags, options, charset, copy TSRMLS_CC);
options           541 ext/filter/filter.c 	zval  *options = NULL;
options           576 ext/filter/filter.c 					options = *option;
options           579 ext/filter/filter.c 				options = *option;
options           598 ext/filter/filter.c 		php_zval_filter_recursive(filtered, filter, filter_flags, options, charset, copy TSRMLS_CC);
options           614 ext/filter/filter.c 	php_zval_filter(filtered, filter, filter_flags, options, charset, copy TSRMLS_CC);
options           256 ext/hash/hash.c 	long options = 0;
options           261 ext/hash/hash.c 	if (zend_parse_parameters(argc TSRMLS_CC, "s|ls", &algo, &algo_len, &options, &key, &key_len) == FAILURE) {
options           271 ext/hash/hash.c 	if (options & PHP_HASH_HMAC &&
options           284 ext/hash/hash.c 	hash->options = options;
options           287 ext/hash/hash.c 	if (options & PHP_HASH_HMAC) {
options           426 ext/hash/hash.c 	if (hash->options & PHP_HASH_HMAC) {
options            51 ext/hash/php_hash.h 	long options;
options           751 ext/imap/php_imap.c 	zval **mailbox, **user, **passwd, **options, **retries;
options           758 ext/imap/php_imap.c 	if (myargc < 3 || myargc > 5 || zend_get_parameters_ex(myargc, &mailbox, &user, &passwd, &options, &retries) == FAILURE) {
options           766 ext/imap/php_imap.c 		convert_to_long_ex(options);
options           767 ext/imap/php_imap.c 		flags = Z_LVAL_PP(options);
options           832 ext/imap/php_imap.c 	zval **streamind, **mailbox, **options, **retries;
options           839 ext/imap/php_imap.c 	if (myargc < 2 || myargc > 4 || zend_get_parameters_ex(myargc, &streamind, &mailbox, &options, &retries) == FAILURE) {
options           848 ext/imap/php_imap.c 		convert_to_long_ex(options);
options           849 ext/imap/php_imap.c 		flags = Z_LVAL_PP(options);
options          1124 ext/imap/php_imap.c 	zval **options, **streamind=NULL;
options          1129 ext/imap/php_imap.c 	if (myargcount < 1 || myargcount > 2 || zend_get_parameters_ex(myargcount, &streamind, &options) == FAILURE) {
options          1136 ext/imap/php_imap.c 		convert_to_long_ex(options);
options          1137 ext/imap/php_imap.c 		flags = Z_LVAL_PP(options);
options          1242 ext/imap/php_imap.c 	zval **streamind, **seq, **folder, **options;
options          1246 ext/imap/php_imap.c 	if (myargcount > 4 || myargcount < 3 || zend_get_parameters_ex(myargcount, &streamind, &seq, &folder, &options) == FAILURE) {
options          1255 ext/imap/php_imap.c 		convert_to_long_ex(options);
options          1258 ext/imap/php_imap.c 	if (mail_copy_full(imap_le_struct->imap_stream, Z_STRVAL_PP(seq), Z_STRVAL_PP(folder), myargcount==4 ? Z_LVAL_PP(options) : NIL)==T) {
options          1270 ext/imap/php_imap.c 	zval **streamind, **seq, **folder, **options;
options          1274 ext/imap/php_imap.c 	if (myargcount > 4 || myargcount < 3 || zend_get_parameters_ex(myargcount, &streamind, &seq, &folder, &options) == FAILURE) {
options          1283 ext/imap/php_imap.c 		convert_to_long_ex(options);
options          1286 ext/imap/php_imap.c 	if (mail_copy_full(imap_le_struct->imap_stream, Z_STRVAL_PP(seq), Z_STRVAL_PP(folder), myargcount == 4 ? (Z_LVAL_PP(options) | CP_MOVE) : CP_MOVE) == T) {
options           120 ext/mbstring/oniguruma/onigposix.h   OnigOptionType options;    /* default option */
options           154 ext/mbstring/oniguruma/onigposix.h ONIG_EXTERN int    regcomp P_((regex_t* reg, const char* pat, int options));
options           155 ext/mbstring/oniguruma/onigposix.h ONIG_EXTERN int    regexec P_((regex_t* reg, const char* str, size_t nmatch, regmatch_t* matches, int options));
options           485 ext/mbstring/oniguruma/oniguruma.h #define ONIG_OPTION_ON(options,regopt)      ((options) |= (regopt))
options           486 ext/mbstring/oniguruma/oniguruma.h #define ONIG_OPTION_OFF(options,regopt)     ((options) &= ~(regopt))
options           487 ext/mbstring/oniguruma/oniguruma.h #define ONIG_IS_OPTION_ON(options,option)   ((options) & (option))
options           494 ext/mbstring/oniguruma/oniguruma.h   OnigOptionType options;    /* default option */
options           764 ext/mbstring/oniguruma/oniguruma.h   OnigOptionType    options;
options           886 ext/mbstring/oniguruma/oniguruma.h void onig_set_syntax_options P_((OnigSyntaxType* syntax, OnigOptionType options));
options           810 ext/mbstring/oniguruma/regcomp.c       if (IS_MULTILINE(reg->options))
options           823 ext/mbstring/oniguruma/regcomp.c       if (IS_MULTILINE(reg->options)) {
options          1026 ext/mbstring/oniguruma/regcomp.c       if (IS_MULTILINE(reg->options))
options          1034 ext/mbstring/oniguruma/regcomp.c       if (IS_MULTILINE(reg->options))
options          1144 ext/mbstring/oniguruma/regcomp.c   OnigOptionType prev = reg->options;
options          1146 ext/mbstring/oniguruma/regcomp.c   reg->options = node->option;
options          1148 ext/mbstring/oniguruma/regcomp.c   reg->options = prev;
options          1164 ext/mbstring/oniguruma/regcomp.c   OnigOptionType prev = reg->options;
options          1175 ext/mbstring/oniguruma/regcomp.c   reg->options = node->option;
options          1177 ext/mbstring/oniguruma/regcomp.c   reg->options = prev;
options          1528 ext/mbstring/oniguruma/regcomp.c 	r = ((!IS_IGNORECASE(reg->options) && br->back_static[0] <= 2)
options          1632 ext/mbstring/oniguruma/regcomp.c     if (IS_MULTILINE(reg->options))
options          1646 ext/mbstring/oniguruma/regcomp.c 	r = add_option(reg, (reg->options & ONIG_OPTION_IGNORECASE));
options          1657 ext/mbstring/oniguruma/regcomp.c 	if (IS_IGNORECASE(reg->options)) {
options          1678 ext/mbstring/oniguruma/regcomp.c         if (IS_IGNORECASE(reg->options)) {
options          2612 ext/mbstring/oniguruma/regcomp.c 	  !NSTRING_IS_RAW(node) && IS_IGNORECASE(reg->options)) {
options          2644 ext/mbstring/oniguruma/regcomp.c 	  OnigOptionType options = reg->options;
options          2646 ext/mbstring/oniguruma/regcomp.c 	  reg->options = NEFFECT(node).option;
options          2648 ext/mbstring/oniguruma/regcomp.c 	  reg->options = options;
options          3477 ext/mbstring/oniguruma/regcomp.c     if (IS_IGNORECASE(reg->options) && !NSTRING_IS_RAW(node)) {
options          3599 ext/mbstring/oniguruma/regcomp.c 	  OnigOptionType options = reg->options;
options          3600 ext/mbstring/oniguruma/regcomp.c 	  reg->options = NEFFECT(node).option;
options          3602 ext/mbstring/oniguruma/regcomp.c 	  reg->options = options;
options          3729 ext/mbstring/oniguruma/regcomp.c   OnigOptionType  options;
options          4567 ext/mbstring/oniguruma/regcomp.c       OnigOptionType save = env->options;
options          4568 ext/mbstring/oniguruma/regcomp.c       env->options = NEFFECT(NCALL(node).target).option;
options          4570 ext/mbstring/oniguruma/regcomp.c       env->options = save;
options          4588 ext/mbstring/oniguruma/regcomp.c 	  if (IS_MULTILINE(env->options))
options          4635 ext/mbstring/oniguruma/regcomp.c 	  OnigOptionType save = env->options;
options          4637 ext/mbstring/oniguruma/regcomp.c 	  env->options = en->option;
options          4639 ext/mbstring/oniguruma/regcomp.c 	  env->options = save;
options          4770 ext/mbstring/oniguruma/regcomp.c   env.options    = reg->options;
options          5150 ext/mbstring/oniguruma/regcomp.c       !ONIG_IS_OPTION_ON(reg->options, ONIG_OPTION_CAPTURE_GROUP)) {
options          5188 ext/mbstring/oniguruma/regcomp.c   if (IS_FIND_CONDITION(reg->options))
options          5334 ext/mbstring/oniguruma/regcomp.c     option |= syntax->options;
options          5338 ext/mbstring/oniguruma/regcomp.c     option |= syntax->options;
options          5341 ext/mbstring/oniguruma/regcomp.c   (*reg)->options          = option;
options           371 ext/mbstring/oniguruma/regexec.c   OnigOptionType options;
options           382 ext/mbstring/oniguruma/regexec.c   (msa).options = (arg_option);\
options          1410 ext/mbstring/oniguruma/regexec.c   OnigOptionType option = reg->options;
options          1483 ext/mbstring/oniguruma/regexec.c 	  if (IS_POSIX_REGION(msa->options)) {
options          2170 ext/mbstring/oniguruma/regexec.c 	if (IS_NOTBOL(msa->options)) goto fail;
options          2186 ext/mbstring/oniguruma/regexec.c 	  if (IS_NOTEOL(msa->options)) goto fail;
options          2211 ext/mbstring/oniguruma/regexec.c 	  if (IS_NOTEOL(msa->options)) goto fail;   /* Is it needed? */
options          3820 ext/mbstring/oniguruma/regexec.c   if (IS_FIND_NOT_EMPTY(reg->options) && region
options          3859 ext/mbstring/oniguruma/regexec.c   return reg->options;
options           110 ext/mbstring/oniguruma/reggnu.c 		     reg->options, enc, OnigDefaultSyntax, &einfo);
options           905 ext/mbstring/oniguruma/regparse.c   if (ONIG_IS_OPTION_ON(reg->options, ONIG_OPTION_DONT_CAPTURE_GROUP))
options           911 ext/mbstring/oniguruma/regparse.c       !ONIG_IS_OPTION_ON(reg->options, ONIG_OPTION_CAPTURE_GROUP)) {
options          5331 ext/mbstring/oniguruma/regparse.c   env->option      = reg->options;
options           138 ext/mbstring/oniguruma/regposix.c   OnigOptionType options;
options           143 ext/mbstring/oniguruma/regposix.c   options = syntax->options;
options           145 ext/mbstring/oniguruma/regposix.c     ONIG_OPTION_ON(options, ONIG_OPTION_IGNORECASE);
options           147 ext/mbstring/oniguruma/regposix.c     ONIG_OPTION_ON( options, ONIG_OPTION_NEGATE_SINGLELINE);
options           148 ext/mbstring/oniguruma/regposix.c     ONIG_OPTION_OFF(options, ONIG_OPTION_SINGLELINE);
options           155 ext/mbstring/oniguruma/regposix.c 	       options, OnigEncDefaultCharEncoding, syntax,
options           172 ext/mbstring/oniguruma/regposix.c   OnigOptionType options;
options           174 ext/mbstring/oniguruma/regposix.c   options = ONIG_OPTION_POSIX_REGION;
options           175 ext/mbstring/oniguruma/regposix.c   if ((posix_options & REG_NOTBOL) != 0) options |= ONIG_OPTION_NOTBOL;
options           176 ext/mbstring/oniguruma/regposix.c   if ((posix_options & REG_NOTEOL) != 0) options |= ONIG_OPTION_NOTEOL;
options           195 ext/mbstring/oniguruma/regposix.c 		  (OnigRegion* )pm, options);
options           180 ext/mbstring/oniguruma/regsyntax.c   syntax->options = options;
options           204 ext/mbstring/oniguruma/regsyntax.c   return syntax->options;
options           289 ext/mbstring/php_mbregex.c 	if (found == FAILURE || (*rc)->options != options || (*rc)->enc != enc || (*rc)->syntax != syntax) {
options           290 ext/mbstring/php_mbregex.c 		if ((err_code = onig_new(&retval, (OnigUChar *)pattern, (OnigUChar *)(pattern + patlen), options, enc, syntax, &err_info)) != ONIG_NORMAL) {
options           526 ext/mbstring/php_mbregex.c 	OnigOptionType options;
options           535 ext/mbstring/php_mbregex.c 	options = MBSTRG(regex_default_options);
options           537 ext/mbstring/php_mbregex.c 		options |= ONIG_OPTION_IGNORECASE;
options           556 ext/mbstring/php_mbregex.c 	re = php_mbregex_compile_pattern(Z_STRVAL_PP(arg_pattern), Z_STRLEN_PP(arg_pattern), options, MBSTRG(current_mbctype), MBSTRG(regex_default_syntax) TSRMLS_CC);
options           666 ext/mbstring/php_mbregex.c 			_php_mb_regex_init_options(option_str, option_str_len, &options, &syntax, &eval);
options           668 ext/mbstring/php_mbregex.c 			options |= MBSTRG(regex_default_options);
options           685 ext/mbstring/php_mbregex.c 	re = php_mbregex_compile_pattern(arg_pattern, arg_pattern_len, options, MBSTRG(current_mbctype), syntax TSRMLS_CC);
options          1209 ext/mbstring/php_mbregex.c 	MBSTRG(regex_default_options) = options;
options           208 ext/mysqli/mysqli_fe.c 	PHP_FALIAS(options,mysqli_options,NULL)
options           252 ext/pcntl/pcntl.c 	long pid, options = 0;
options           257 ext/pcntl/pcntl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lz|l", &pid, &z_status, &options) == FAILURE)
options           264 ext/pcntl/pcntl.c 	child_id = waitpid((pid_t) pid, &status, options);
options           276 ext/pcntl/pcntl.c 	long options = 0;
options           281 ext/pcntl/pcntl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|l", &z_status, &options) == FAILURE)
options           288 ext/pcntl/pcntl.c 	if(options) {
options           289 ext/pcntl/pcntl.c 		child_id = wait3(&status, options, NULL);
options           488 ext/pcre/pcrelib/pcre_compile.c BOOL utf8 = (options & PCRE_UTF8) != 0;
options           731 ext/pcre/pcrelib/pcre_compile.c     if ((options & PCRE_EXTRA) != 0) switch(c)
options          1081 ext/pcre/pcrelib/pcre_compile.c     if (optbit > 0 && ((int)code[1] & optbit) != (*options & optbit))
options          1082 ext/pcre/pcrelib/pcre_compile.c       *options = (int)code[1];
options          1153 ext/pcre/pcrelib/pcre_compile.c     d = find_fixedlength(cc + ((op == OP_CBRA)? 2:0), options);
options          1212 ext/pcre/pcrelib/pcre_compile.c     if ((options & PCRE_UTF8) != 0)
options          1226 ext/pcre/pcrelib/pcre_compile.c     if ((options & PCRE_UTF8) != 0)
options          2014 ext/pcre/pcrelib/pcre_compile.c if ((options & PCRE_EXTENDED) != 0)
options          2034 ext/pcre/pcrelib/pcre_compile.c   next = check_escape(&ptr, &temperrorcode, cd->bracount, options, FALSE);
options          2051 ext/pcre/pcrelib/pcre_compile.c if ((options & PCRE_EXTENDED) != 0)
options          2116 ext/pcre/pcrelib/pcre_compile.c   if ((options & PCRE_CASELESS) == 0) return FALSE;
options          2356 ext/pcre/pcrelib/pcre_compile.c int options = *optionsptr;
options          2375 ext/pcre/pcrelib/pcre_compile.c BOOL utf8 = (options & PCRE_UTF8) != 0;
options          2390 ext/pcre/pcrelib/pcre_compile.c greedy_default = ((options & PCRE_UNGREEDY) != 0);
options          2410 ext/pcre/pcrelib/pcre_compile.c req_caseopt = ((options & PCRE_CASELESS) != 0)? REQ_CASELESS : 0;
options          2519 ext/pcre/pcrelib/pcre_compile.c       if ((options & PCRE_AUTO_CALLOUT) != 0)
options          2544 ext/pcre/pcrelib/pcre_compile.c   if ((options & PCRE_EXTENDED) != 0)
options          2562 ext/pcre/pcrelib/pcre_compile.c   if ((options & PCRE_AUTO_CALLOUT) != 0 && !is_quantifier)
options          2596 ext/pcre/pcrelib/pcre_compile.c     if ((options & PCRE_MULTILINE) != 0)
options          2772 ext/pcre/pcrelib/pcre_compile.c         if ((options & PCRE_CASELESS) != 0 && posix_class <= 2)
options          2829 ext/pcre/pcrelib/pcre_compile.c         c = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE);
options          3042 ext/pcre/pcrelib/pcre_compile.c           if ((options & PCRE_EXTRA) != 0)
options          3115 ext/pcre/pcrelib/pcre_compile.c           d = check_escape(&ptr, errorcodeptr, cd->bracount, options, TRUE);
options          3154 ext/pcre/pcrelib/pcre_compile.c         if (utf8 && (d > 255 || ((options & PCRE_CASELESS) != 0 && d > 127)))
options          3163 ext/pcre/pcrelib/pcre_compile.c           if ((options & PCRE_CASELESS) != 0)
options          3215 ext/pcre/pcrelib/pcre_compile.c           if ((options & PCRE_CASELESS) == 0 || c > 127) continue;
options          3237 ext/pcre/pcrelib/pcre_compile.c           if ((options & PCRE_CASELESS) != 0)
options          3256 ext/pcre/pcrelib/pcre_compile.c       if (utf8 && (c > 255 || ((options & PCRE_CASELESS) != 0 && c > 127)))
options          3263 ext/pcre/pcrelib/pcre_compile.c         if ((options & PCRE_CASELESS) != 0)
options          3281 ext/pcre/pcrelib/pcre_compile.c         if ((options & PCRE_CASELESS) != 0)
options          3543 ext/pcre/pcrelib/pcre_compile.c             options, cd))
options          3564 ext/pcre/pcrelib/pcre_compile.c           check_auto_possessive(OP_NOT, c, utf8, NULL, ptr + 1, options, cd))
options          3588 ext/pcre/pcrelib/pcre_compile.c           check_auto_possessive(c, 0, utf8, NULL, ptr + 1, options, cd))
options          4112 ext/pcre/pcrelib/pcre_compile.c     newoptions = options;
options          4324 ext/pcre/pcrelib/pcre_compile.c                         (options & PCRE_EXTENDED) != 0)) > 0)
options          4529 ext/pcre/pcrelib/pcre_compile.c                   if ((options & PCRE_DUPNAMES) == 0)
options          4621 ext/pcre/pcrelib/pcre_compile.c                       (options & PCRE_EXTENDED) != 0)) <= 0)
options          4722 ext/pcre/pcrelib/pcre_compile.c                    (options & PCRE_EXTENDED) != 0) < 0)
options          4800 ext/pcre/pcrelib/pcre_compile.c         newoptions = (options | set) & (~unset);
options          4832 ext/pcre/pcrelib/pcre_compile.c             options = newoptions;
options          4836 ext/pcre/pcrelib/pcre_compile.c             if ((options & PCRE_IMS) != (newoptions & PCRE_IMS))
options          4846 ext/pcre/pcrelib/pcre_compile.c             *optionsptr = options = newoptions;
options          4849 ext/pcre/pcrelib/pcre_compile.c             req_caseopt = ((options & PCRE_CASELESS) != 0)? REQ_CASELESS : 0;
options          4870 ext/pcre/pcrelib/pcre_compile.c     else if ((options & PCRE_NO_AUTO_CAPTURE) != 0)
options          4899 ext/pcre/pcrelib/pcre_compile.c          options & PCRE_IMS,           /* The previous ims option state */
options          5067 ext/pcre/pcrelib/pcre_compile.c     c = check_escape(&ptr, errorcodeptr, cd->bracount, options, FALSE);
options          5196 ext/pcre/pcrelib/pcre_compile.c     *code++ = ((options & PCRE_CASELESS) != 0)? OP_CHARNC : OP_CHAR;
options          5342 ext/pcre/pcrelib/pcre_compile.c   if ((options & PCRE_IMS) != oldims)
options          5345 ext/pcre/pcrelib/pcre_compile.c     *code++ = options & PCRE_IMS;
options          5362 ext/pcre/pcrelib/pcre_compile.c   if (!compile_branch(&options, &code, &ptr, errorcodeptr, &branchfirstbyte,
options          5425 ext/pcre/pcrelib/pcre_compile.c       fixed_length = find_fixedlength(last_branch, options);
options          5469 ext/pcre/pcrelib/pcre_compile.c     if ((options & PCRE_IMS) != oldims && *ptr == ')')
options          5572 ext/pcre/pcrelib/pcre_compile.c      options, PCRE_MULTILINE, FALSE);
options          5579 ext/pcre/pcrelib/pcre_compile.c      if (!is_anchored(scode, options, bracket_map, backref_map)) return FALSE;
options          5588 ext/pcre/pcrelib/pcre_compile.c      if (!is_anchored(scode, options, new_map, backref_map)) return FALSE;
options          5595 ext/pcre/pcrelib/pcre_compile.c      if (!is_anchored(scode, options, bracket_map, backref_map)) return FALSE;
options          5603 ext/pcre/pcrelib/pcre_compile.c             (*options & PCRE_DOTALL) != 0)
options          5611 ext/pcre/pcrelib/pcre_compile.c            ((*options & PCRE_MULTILINE) != 0 || op != OP_CIRC))
options          5721 ext/pcre/pcrelib/pcre_compile.c      first_significant_code(code + 1+LINK_SIZE, options, PCRE_CASELESS, TRUE);
options          5734 ext/pcre/pcrelib/pcre_compile.c      if ((d = find_firstassertedchar(scode, options, op == OP_ASSERT)) < 0)
options          5751 ext/pcre/pcrelib/pcre_compile.c        if ((*options & PCRE_CASELESS) != 0) c |= REQ_CASELESS;
options          5791 ext/pcre/pcrelib/pcre_compile.c return pcre_compile2(pattern, options, NULL, errorptr, erroroffset, tables);
options          5852 ext/pcre/pcrelib/pcre_compile.c utf8 = (options & PCRE_UTF8) != 0;
options          5853 ext/pcre/pcrelib/pcre_compile.c if (utf8 && (options & PCRE_NO_UTF8_CHECK) == 0 &&
options          5860 ext/pcre/pcrelib/pcre_compile.c if ((options & PCRE_UTF8) != 0)
options          5867 ext/pcre/pcrelib/pcre_compile.c if ((options & ~PUBLIC_OPTIONS) != 0)
options          5906 ext/pcre/pcrelib/pcre_compile.c     options = (options & ~PCRE_NEWLINE_BITS) | newnl;
options          5908 ext/pcre/pcrelib/pcre_compile.c     options = (options & ~(PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) | newbsr;
options          5914 ext/pcre/pcrelib/pcre_compile.c switch (options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE))
options          5927 ext/pcre/pcrelib/pcre_compile.c switch (options & PCRE_NEWLINE_BITS)
options          5992 ext/pcre/pcrelib/pcre_compile.c cd->external_options = options;
options          6040 ext/pcre/pcrelib/pcre_compile.c re->options = cd->external_options;
options          6076 ext/pcre/pcrelib/pcre_compile.c (void)compile_regex(re->options, re->options & PCRE_IMS, &code, &ptr,
options          6106 ext/pcre/pcrelib/pcre_compile.c   groupptr = find_bracket(codestart, (re->options & PCRE_UTF8) != 0, recno);
options          6139 ext/pcre/pcrelib/pcre_compile.c if ((re->options & PCRE_ANCHORED) == 0)
options          6141 ext/pcre/pcrelib/pcre_compile.c   int temp_options = re->options;   /* May get changed during these scans */
options          6143 ext/pcre/pcrelib/pcre_compile.c     re->options |= PCRE_ANCHORED;
options          6165 ext/pcre/pcrelib/pcre_compile.c      ((re->options & PCRE_ANCHORED) == 0 || (reqbyte & REQ_VARY) != 0))
options          6181 ext/pcre/pcrelib/pcre_compile.c printf("Options=%08x\n", re->options);
options          4384 ext/pcre/pcrelib/pcre_exec.c if ((options & ~PUBLIC_EXEC_OPTIONS) != 0) return PCRE_ERROR_BADOPTION;
options          4435 ext/pcre/pcrelib/pcre_exec.c anchored = ((re->options | options) & PCRE_ANCHORED) != 0;
options          4437 ext/pcre/pcrelib/pcre_exec.c firstline = (re->options & PCRE_FIRSTLINE) != 0;
options          4449 ext/pcre/pcrelib/pcre_exec.c md->endonly = (re->options & PCRE_DOLLAR_ENDONLY) != 0;
options          4450 ext/pcre/pcrelib/pcre_exec.c utf8 = md->utf8 = (re->options & PCRE_UTF8) != 0;
options          4452 ext/pcre/pcrelib/pcre_exec.c md->notbol = (options & PCRE_NOTBOL) != 0;
options          4453 ext/pcre/pcrelib/pcre_exec.c md->noteol = (options & PCRE_NOTEOL) != 0;
options          4454 ext/pcre/pcrelib/pcre_exec.c md->notempty = (options & PCRE_NOTEMPTY) != 0;
options          4455 ext/pcre/pcrelib/pcre_exec.c md->partial = (options & PCRE_PARTIAL) != 0;
options          4465 ext/pcre/pcrelib/pcre_exec.c switch (options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE))
options          4468 ext/pcre/pcrelib/pcre_exec.c   if ((re->options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) != 0)
options          4469 ext/pcre/pcrelib/pcre_exec.c     md->bsr_anycrlf = (re->options & PCRE_BSR_ANYCRLF) != 0;
options          4492 ext/pcre/pcrelib/pcre_exec.c switch ((((options & PCRE_NEWLINE_BITS) == 0)? re->options :
options          4493 ext/pcre/pcrelib/pcre_exec.c         (pcre_uint32)options) & PCRE_NEWLINE_BITS)
options          4539 ext/pcre/pcrelib/pcre_exec.c if (utf8 && (options & PCRE_NO_UTF8_CHECK) == 0)
options          4559 ext/pcre/pcrelib/pcre_exec.c ims = re->options & (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL);
options          4617 ext/pcre/pcrelib/pcre_exec.c       (study->options & PCRE_STUDY_MAPPED) != 0)
options            90 ext/pcre/pcrelib/pcre_fullinfo.c   *((unsigned long int *)where) = re->options & PUBLIC_OPTIONS;
options           120 ext/pcre/pcrelib/pcre_fullinfo.c     (study != NULL && (study->options & PCRE_STUDY_MAPPED) != 0)?
options           190 ext/pcre/pcrelib/pcre_get.c if ((re->options & PCRE_DUPNAMES) == 0 && (re->flags & PCRE_JCHANGED) == 0)
options            84 ext/pcre/pcrelib/pcre_info.c if (optptr != NULL) *optptr = (int)(re->options & PUBLIC_OPTIONS);
options           904 ext/pcre/pcrelib/pcre_internal.h   pcre_uint32 options;            /* Public options */
options           925 ext/pcre/pcrelib/pcre_internal.h   pcre_uint32 options;
options           515 ext/pcre/pcrelib/pcre_study.c if ((options & ~PUBLIC_STUDY_OPTIONS) != 0)
options           528 ext/pcre/pcrelib/pcre_study.c if ((re->options & PCRE_ANCHORED) != 0 ||
options           547 ext/pcre/pcrelib/pcre_study.c if (set_start_bits(code, start_bits, (re->options & PCRE_CASELESS) != 0,
options           548 ext/pcre/pcrelib/pcre_study.c   (re->options & PCRE_UTF8) != 0, &compile_block) != SSB_DONE) return NULL;
options           571 ext/pcre/pcrelib/pcre_study.c study->options = PCRE_STUDY_MAPPED;
options           108 ext/pcre/pcrelib/pcre_try_flipped.c internal_re->options = byteflip(re->options, sizeof(re->options));
options           129 ext/pcre/pcrelib/pcre_try_flipped.c   internal_study->options = byteflip(study->options, sizeof(study->options));
options           244 ext/pcre/pcrelib/pcredemo.c   int options = 0;                 /* Normally no options */
options           254 ext/pcre/pcrelib/pcredemo.c     options = PCRE_NOTEMPTY | PCRE_ANCHORED;
options           265 ext/pcre/pcrelib/pcredemo.c     options,              /* options */
options           279 ext/pcre/pcrelib/pcredemo.c     if (options == 0) break;
options          1612 ext/pcre/pcrelib/pcregrep.c   case 'i': options |= PCRE_CASELESS; break;
options          1615 ext/pcre/pcrelib/pcregrep.c   case 'M': multiline = TRUE; options |= PCRE_MULTILINE|PCRE_FIRSTLINE; break;
options          1621 ext/pcre/pcrelib/pcregrep.c   case 'u': options |= PCRE_UTF8; utf8 = TRUE; break;
options          1636 ext/pcre/pcrelib/pcregrep.c return options;
options          1702 ext/pcre/pcrelib/pcregrep.c   pcre_compile(buffer, options, &error, &errptr, pcretables);
options          1764 ext/pcre/pcrelib/pcregrep.c       return compile_single_pattern(pattern, options, filename, count);
options          1767 ext/pcre/pcrelib/pcregrep.c     if (!compile_single_pattern(buffer, options, filename, count))
options          1771 ext/pcre/pcrelib/pcregrep.c else return compile_single_pattern(pattern, options, filename, count);
options           224 ext/pcre/pcrelib/pcreposix.c int options = 0;
options           226 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_ICASE) != 0)   options |= PCRE_CASELESS;
options           227 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_NEWLINE) != 0) options |= PCRE_MULTILINE;
options           228 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_DOTALL) != 0)  options |= PCRE_DOTALL;
options           229 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_NOSUB) != 0)   options |= PCRE_NO_AUTO_CAPTURE;
options           230 ext/pcre/pcrelib/pcreposix.c if ((cflags & REG_UTF8) != 0)    options |= PCRE_UTF8;
options           232 ext/pcre/pcrelib/pcreposix.c preg->re_pcre = pcre_compile2(pattern, options, &errorcode, &errorptr,
options           265 ext/pcre/pcrelib/pcreposix.c int options = 0;
options           270 ext/pcre/pcrelib/pcreposix.c   (((const pcre *)preg->re_pcre)->options & PCRE_NO_AUTO_CAPTURE) != 0;
options           272 ext/pcre/pcrelib/pcreposix.c if ((eflags & REG_NOTBOL) != 0) options |= PCRE_NOTBOL;
options           273 ext/pcre/pcrelib/pcreposix.c if ((eflags & REG_NOTEOL) != 0) options |= PCRE_NOTEOL;
options           298 ext/pcre/pcrelib/pcreposix.c   0, options, ovector, nmatch * 3);
options           212 ext/pdo/pdo_dbh.c 	zval *options = NULL;
options           217 ext/pdo/pdo_dbh.c 				&username, &usernamelen, &password, &passwordlen, &options)) {
options           275 ext/pdo/pdo_dbh.c 	if (options) {
options           282 ext/pdo/pdo_dbh.c 		if (SUCCESS == zend_hash_index_find(Z_ARRVAL_P(options), PDO_ATTR_PERSISTENT, (void**)&v)) {
options           361 ext/pdo/pdo_dbh.c 	dbh->auto_commit = pdo_attr_lval(options, PDO_ATTR_AUTOCOMMIT, 1 TSRMLS_CC);
options           369 ext/pdo/pdo_dbh.c 		goto options;
options           372 ext/pdo/pdo_dbh.c 	if (driver->db_handle_factory(dbh, options TSRMLS_CC)) {
options           393 ext/pdo/pdo_dbh.c options:
options           394 ext/pdo/pdo_dbh.c 		if (options) {
options           399 ext/pdo/pdo_dbh.c 			zend_hash_internal_pointer_reset(Z_ARRVAL_P(options));
options           400 ext/pdo/pdo_dbh.c 			while (SUCCESS == zend_hash_get_current_data(Z_ARRVAL_P(options), (void**)&attr_value) 
options           401 ext/pdo/pdo_dbh.c 				&& HASH_KEY_IS_LONG == zend_hash_get_current_key(Z_ARRVAL_P(options), &str_key, &long_key, 0)) {
options           404 ext/pdo/pdo_dbh.c 				zend_hash_move_forward(Z_ARRVAL_P(options));
options           505 ext/pdo/pdo_dbh.c 	zval *options = NULL, **opt, **item, *ctor_args;
options           509 ext/pdo/pdo_dbh.c 			&statement_len, &options)) {
options           516 ext/pdo/pdo_dbh.c 	if (ZEND_NUM_ARGS() > 1 && SUCCESS == zend_hash_index_find(Z_ARRVAL_P(options), PDO_ATTR_STATEMENT_CLASS, (void**)&opt)) {
options           580 ext/pdo/pdo_dbh.c 	if (dbh->methods->preparer(dbh, statement, statement_len, stmt, options TSRMLS_CC)) {
options           194 ext/pdo/php_pdo_driver.h 	if (options && SUCCESS == zend_hash_index_find(Z_ARRVAL_P(options), option_name, (void**)&v)) {
options           204 ext/pdo/php_pdo_driver.h 	if (options && SUCCESS == zend_hash_index_find(Z_ARRVAL_P(options), option_name, (void**)&v)) {
options          1402 ext/pdo_sqlite/sqlite/tool/lemon.c   static struct s_options options[] = {
options          1417 ext/pdo_sqlite/sqlite/tool/lemon.c   OptInit(argv,options,stderr);
options           621 ext/pgsql/pgsql.c 	char *host=NULL,*port=NULL,*options=NULL,*tty=NULL,*dbname=NULL,*connstring=NULL;
options           669 ext/pgsql/pgsql.c 			options = Z_STRVAL_PP(args[2]);
options           696 ext/pgsql/pgsql.c 				pgsql=PQsetdb(host,port,options,tty,dbname);
options           731 ext/pgsql/pgsql.c 						le->ptr=PQsetdb(host,port,options,tty,dbname);
options           789 ext/pgsql/pgsql.c 			pgsql = PQsetdb(host,port,options,tty,dbname);
options          2020 ext/simplexml/simplexml.c 	long            options = 0;
options          2024 ext/simplexml/simplexml.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|C!lsb", &filename, &filename_len, &ce, &options, &ns, &ns_len, &isprefix) == FAILURE) {
options          2028 ext/simplexml/simplexml.c 	docp = xmlReadFile(filename, NULL, options);
options          2058 ext/simplexml/simplexml.c 	long            options = 0;
options          2062 ext/simplexml/simplexml.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|C!lsb", &data, &data_len, &ce, &options, &ns, &ns_len, &isprefix) == FAILURE) {
options          2066 ext/simplexml/simplexml.c 	docp = xmlReadMemory(data, data_len, NULL, NULL, options);
options          2095 ext/simplexml/simplexml.c 	long            options = 0;
options          2099 ext/simplexml/simplexml.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|lbsb", &data, &data_len, &options, &is_url, &ns, &ns_len, &isprefix) == FAILURE) {
options          2106 ext/simplexml/simplexml.c 	docp = is_url ? xmlReadFile(data, NULL, options) : xmlReadMemory(data, data_len, NULL, NULL, options);
options           807 ext/soap/php_http.c 				char *options = cookie + cookie_len+1;
options           808 ext/soap/php_http.c 				while (*options) {
options           809 ext/soap/php_http.c 					while (*options == ' ') {options++;}
options           810 ext/soap/php_http.c 					sempos = strstr(options, ";");
options           811 ext/soap/php_http.c 					if (strstr(options,"path=") == options) {
options           812 ext/soap/php_http.c 						eqpos = options + sizeof("path=")-1;
options           814 ext/soap/php_http.c 					} else if (strstr(options,"domain=") == options) {
options           815 ext/soap/php_http.c 						eqpos = options + sizeof("domain=")-1;
options           817 ext/soap/php_http.c 					} else if (strstr(options,"secure") == options) {
options           821 ext/soap/php_http.c 						options = sempos+1;
options          1024 ext/soap/soap.c 	zval *wsdl, *options = NULL;
options          1032 ext/soap/soap.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|a", &wsdl, &options) == FAILURE) {
options          1049 ext/soap/soap.c 	if (options != NULL) {
options          1050 ext/soap/soap.c 		HashTable *ht = Z_ARRVAL_P(options);
options          2297 ext/soap/soap.c 	zval *options = NULL;
options          2306 ext/soap/soap.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|a", &wsdl, &options) == FAILURE) {
options          2321 ext/soap/soap.c 	if (options != NULL) {
options          2322 ext/soap/soap.c 		HashTable *ht = Z_ARRVAL_P(options);
options          2816 ext/soap/soap.c 	zval *options = NULL;
options          2829 ext/soap/soap.c 		&function, &function_len, &args, &options, &headers, &output_headers) == FAILURE) {
options          2833 ext/soap/soap.c 	if (options) {
options          2834 ext/soap/soap.c 		if (Z_TYPE_P(options) == IS_ARRAY) {
options          2835 ext/soap/soap.c 			HashTable *ht = Z_ARRVAL_P(options);
options          2850 ext/soap/soap.c 		} else if (Z_TYPE_P(options) != IS_NULL) {
options          4550 ext/standard/basic_functions.c 	char *options = NULL, **argv = NULL;
options          4562 ext/standard/basic_functions.c 							  &options, &options_len, &p_longopts) == FAILURE) {
options          4686 ext/standard/basic_functions.c 	while ((o = getopt_long(argc, argv, options, longopts, &longindex)) != -1) {
options          4688 ext/standard/basic_functions.c 	while ((o = getopt(argc, argv, options)) != -1) {
options           776 ext/standard/dns.c 			res.options &= ~RES_DEFNAMES;
options           158 ext/standard/file.c 	if (context->options) {
options           159 ext/standard/file.c 		zval_ptr_dtor(&context->options);
options           160 ext/standard/file.c 		context->options = NULL;
options          1416 ext/standard/file.c 	if ((ret = VCWD_MKDIR(dir, (mode_t)mode)) < 0 && (options & REPORT_ERRORS)) {
options          1344 ext/standard/filters.c 			if (options != NULL) {
options          1345 ext/standard/filters.c 				GET_STR_PROP(options, lbchars, lbchars_len, "line-break-chars", 0);
options          1346 ext/standard/filters.c 				GET_UINT_PROP(options, line_len, "line-length");
options          1388 ext/standard/filters.c 			if (options != NULL) {
options          1392 ext/standard/filters.c 				GET_STR_PROP(options, lbchars, lbchars_len, "line-break-chars", 0);
options          1393 ext/standard/filters.c 				GET_UINT_PROP(options, line_len, "line-length");
options          1394 ext/standard/filters.c 				GET_BOOL_PROP(options, opt_binary, "binary"); 
options          1395 ext/standard/filters.c 				GET_BOOL_PROP(options, opt_force_encode_first, "force-encode-first"); 
options          1429 ext/standard/filters.c 			if (options != NULL) {
options          1431 ext/standard/filters.c 				GET_STR_PROP(options, lbchars, lbchars_len, "line-break-chars", 0);
options           188 ext/standard/ftp_fopen_wrapper.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Unable to activate SSL mode");
options           219 ext/standard/ftp_fopen_wrapper.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, err_msg, val);	\
options           420 ext/standard/ftp_fopen_wrapper.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "FTP does not support simultaneous read/write connections");
options           431 ext/standard/ftp_fopen_wrapper.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Unknown file open mode");
options           439 ext/standard/ftp_fopen_wrapper.c 			return php_stream_url_wrap_http(wrapper, path, mode, options, opened_path, context STREAMS_CC TSRMLS_CC);
options           442 ext/standard/ftp_fopen_wrapper.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "FTP proxy may only be used in read mode");
options           447 ext/standard/ftp_fopen_wrapper.c 	stream = php_ftp_fopen_connect(wrapper, path, mode, options, opened_path, context, &reuseid, &resource, &use_ssl, &use_ssl_on_data TSRMLS_CC);
options           494 ext/standard/ftp_fopen_wrapper.c 				php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Remote file already exists and overwrite context option not specified");
options           518 ext/standard/ftp_fopen_wrapper.c 				php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Unable to resume from offset %d", Z_LVAL_PP(tmpzval));
options           562 ext/standard/ftp_fopen_wrapper.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Unable to activate SSL mode");
options           583 ext/standard/ftp_fopen_wrapper.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "FTP server reports %s", tmp_line);
options           681 ext/standard/ftp_fopen_wrapper.c 	stream = php_ftp_fopen_connect(wrapper, path, mode, options, opened_path, context, &reuseid, &resource, &use_ssl, &use_ssl_on_data TSRMLS_CC);
options           726 ext/standard/ftp_fopen_wrapper.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Unable to activate SSL mode");
options           747 ext/standard/ftp_fopen_wrapper.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "FTP server reports %s", tmp_line);
options           893 ext/standard/ftp_fopen_wrapper.c 		if (options & REPORT_ERRORS) {
options           900 ext/standard/ftp_fopen_wrapper.c 		if (options & REPORT_ERRORS) {
options           911 ext/standard/ftp_fopen_wrapper.c 		if (options & REPORT_ERRORS) {
options           964 ext/standard/ftp_fopen_wrapper.c 		if (options & REPORT_ERRORS) {
options           975 ext/standard/ftp_fopen_wrapper.c 		if (options & REPORT_ERRORS) {
options           986 ext/standard/ftp_fopen_wrapper.c 		if (options & REPORT_ERRORS) {
options          1017 ext/standard/ftp_fopen_wrapper.c 	int result, recursive = options & PHP_STREAM_MKDIR_RECURSIVE;
options          1022 ext/standard/ftp_fopen_wrapper.c 		if (options & REPORT_ERRORS) {
options          1029 ext/standard/ftp_fopen_wrapper.c 		if (options & REPORT_ERRORS) {
options          1072 ext/standard/ftp_fopen_wrapper.c 							if (options & REPORT_ERRORS) {
options          1116 ext/standard/ftp_fopen_wrapper.c 		if (options & REPORT_ERRORS) {
options          1123 ext/standard/ftp_fopen_wrapper.c 		if (options & REPORT_ERRORS) {
options          1133 ext/standard/ftp_fopen_wrapper.c 		if (options & REPORT_ERRORS) {
options           113 ext/standard/http_fopen_wrapper.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Redirection limit reached, aborting");
options           141 ext/standard/http_fopen_wrapper.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "HTTP wrapper does not support writeable connections");
options           175 ext/standard/http_fopen_wrapper.c 	stream = php_stream_xport_create(transport_string, transport_len, options,
options           184 ext/standard/http_fopen_wrapper.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "%s", errstr);
options           200 ext/standard/http_fopen_wrapper.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Cannot connect to HTTPS server through proxy");
options           223 ext/standard/http_fopen_wrapper.c 				php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Cannot connect to HTTPS server through proxy");
options           234 ext/standard/http_fopen_wrapper.c 	if (options & STREAM_WILL_CAST)
options           524 ext/standard/http_fopen_wrapper.c 			if (options & STREAM_ONLY_GET_HEADERS) {
options           558 ext/standard/http_fopen_wrapper.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "HTTP request failed, unexpected end of socket!");
options           602 ext/standard/http_fopen_wrapper.c 		if (options & STREAM_ONLY_GET_HEADERS && redirect_max <= 1) {
options           659 ext/standard/http_fopen_wrapper.c 				php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Invalid redirect URL! %s", new_path);
options           671 ext/standard/http_fopen_wrapper.c 				php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Invalid redirect URL! %s", new_path);	\
options           684 ext/standard/http_fopen_wrapper.c 			stream = php_stream_url_wrap_http_ex(wrapper, new_path, mode, options, opened_path, context, --redirect_max, 0 STREAMS_CC TSRMLS_CC);
options           686 ext/standard/http_fopen_wrapper.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "HTTP request failed! %s", tmp_line);
options           713 ext/standard/http_fopen_wrapper.c 		if (options & STREAM_WILL_CAST)
options           730 ext/standard/http_fopen_wrapper.c 	return php_stream_url_wrap_http_ex(wrapper, path, mode, options, opened_path, context, PHP_URL_REDIRECT_MAX, 1 STREAMS_CC TSRMLS_CC);
options           191 ext/standard/php_fopen_wrapper.c 		if ((options & STREAM_OPEN_FOR_INCLUDE) && !PG(allow_url_include) ) {
options           192 ext/standard/php_fopen_wrapper.c 			if (options & REPORT_ERRORS) {
options           201 ext/standard/php_fopen_wrapper.c 		if ((options & STREAM_OPEN_FOR_INCLUDE) && !PG(allow_url_include) ) {
options           202 ext/standard/php_fopen_wrapper.c 			if (options & REPORT_ERRORS) {
options           260 ext/standard/php_fopen_wrapper.c 		if (!(stream = php_stream_open_wrapper(p + 10, mode, options, opened_path))) {
options           859 ext/standard/streamsfuncs.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(options), &pos);
options           860 ext/standard/streamsfuncs.c 	while (SUCCESS == zend_hash_get_current_data_ex(Z_ARRVAL_P(options), (void**)&wval, &pos)) {
options           861 ext/standard/streamsfuncs.c 		if (HASH_KEY_IS_STRING == zend_hash_get_current_key_ex(Z_ARRVAL_P(options), &wkey, &wkey_len, &num_key, 0, &pos)
options           876 ext/standard/streamsfuncs.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(options), &pos);
options           952 ext/standard/streamsfuncs.c 	RETURN_ZVAL(context->options, 1, 0);
options           960 ext/standard/streamsfuncs.c 	zval *options = NULL, *zcontext = NULL, *zvalue = NULL;
options           969 ext/standard/streamsfuncs.c 					"ra", &zcontext, &options) == FAILURE) {
options           982 ext/standard/streamsfuncs.c 	if (options) {
options           984 ext/standard/streamsfuncs.c 		RETVAL_BOOL(parse_context_options(context, options) == SUCCESS);
options          1068 ext/tidy/tidy.c 	zval **options = NULL;
options          1072 ext/tidy/tidy.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|Zs", &input, &input_len, &options, &enc, &enc_len) == FAILURE) {
options          1079 ext/tidy/tidy.c 	TIDY_APPLY_CONFIG_ZVAL(obj->ptdoc->doc, options);
options          1128 ext/tidy/tidy.c 	zval **options = NULL;
options          1133 ext/tidy/tidy.c 							  &options, &enc, &enc_len, &use_include_path) == FAILURE) {
options          1145 ext/tidy/tidy.c 	TIDY_APPLY_CONFIG_ZVAL(obj->ptdoc->doc, options);
options          1441 ext/tidy/tidy.c 	zval **options = NULL;
options          1447 ext/tidy/tidy.c 							  &options, &enc, &enc_len, &use_include_path) == FAILURE) {
options          1459 ext/tidy/tidy.c 		TIDY_APPLY_CONFIG_ZVAL(obj->ptdoc->doc, options);
options          1473 ext/tidy/tidy.c 	zval **options = NULL;
options          1481 ext/tidy/tidy.c 							  &options, &enc, &enc_len, &use_include_path) == FAILURE) {
options          1490 ext/tidy/tidy.c 	TIDY_APPLY_CONFIG_ZVAL(obj->ptdoc->doc, options);
options          1505 ext/tidy/tidy.c 	zval **options = NULL;
options          1510 ext/tidy/tidy.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|Zs", &input, &input_len, &options, &enc, &enc_len) == FAILURE) {
options          1516 ext/tidy/tidy.c 	TIDY_APPLY_CONFIG_ZVAL(obj->ptdoc->doc, options);
options           877 ext/xmlreader/php_xmlreader.c 	long options = 0;
options           884 ext/xmlreader/php_xmlreader.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s!l", &source, &source_len, &encoding, &encoding_len, &options) == FAILURE) {
options           906 ext/xmlreader/php_xmlreader.c 		reader = xmlReaderForFile(valid_file, encoding, options);
options          1060 ext/xmlreader/php_xmlreader.c 	long options = 0;
options          1068 ext/xmlreader/php_xmlreader.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s!l", &source, &source_len, &encoding, &encoding_len, &options) == FAILURE) {
options          1109 ext/xmlreader/php_xmlreader.c 			ret = xmlTextReaderSetup(reader, NULL, uri, encoding, options);
options           384 ext/xmlrpc/libxmlrpc/xml_element.c    if(!options) {
options           385 ext/xmlrpc/libxmlrpc/xml_element.c       options = &default_opts;
options           393 ext/xmlrpc/libxmlrpc/xml_element.c       if(options->encoding && *options->encoding) {
options           398 ext/xmlrpc/libxmlrpc/xml_element.c           xml_elem_writefunc(fptr, options->encoding, data, 0);
options           402 ext/xmlrpc/libxmlrpc/xml_element.c       if(options->verbosity != xml_elem_no_white_space) {
options           407 ext/xmlrpc/libxmlrpc/xml_element.c    if(options->verbosity == xml_elem_pretty && depth > 2) {
options           446 ext/xmlrpc/libxmlrpc/xml_element.c           if(options->escaping && options->escaping != xml_elem_cdata_escaping) {
options           447 ext/xmlrpc/libxmlrpc/xml_element.c              escaped_str = xml_elem_entity_escape(el->text.str, buflen, &buflen, options->escaping );
options           453 ext/xmlrpc/libxmlrpc/xml_element.c           if(options->escaping & xml_elem_cdata_escaping) {
options           463 ext/xmlrpc/libxmlrpc/xml_element.c           if(options->escaping & xml_elem_cdata_escaping) {
options           473 ext/xmlrpc/libxmlrpc/xml_element.c                 if(options->verbosity != xml_elem_no_white_space) {
options           477 ext/xmlrpc/libxmlrpc/xml_element.c              xml_element_serialize(kids, fptr, data, options, depth);
options           481 ext/xmlrpc/libxmlrpc/xml_element.c              if(options->verbosity == xml_elem_pretty && depth > 2) {
options           491 ext/xmlrpc/libxmlrpc/xml_element.c    if(options->verbosity != xml_elem_no_white_space) {
options           537 ext/xmlrpc/libxmlrpc/xml_element.c    xml_element_serialize(el, simplestring_out_fptr, (void *)&buf, options, 0);
options           568 ext/xmlrpc/libxmlrpc/xml_element.c    xml_element_serialize(el, file_out_fptr, (void *)output, options, 0);
options           688 ext/xmlrpc/libxmlrpc/xml_element.c    if(!options) {
options           689 ext/xmlrpc/libxmlrpc/xml_element.c       options = &default_opts;
options           700 ext/xmlrpc/libxmlrpc/xml_element.c       mydata.input_options = options;
options           701 ext/xmlrpc/libxmlrpc/xml_element.c       mydata.needs_enc_conversion = options->encoding && strcmp(options->encoding, encoding_utf_8);
options           162 ext/xmlrpc/libxmlrpc/xml_element.h char* xml_elem_serialize_to_string(xml_element *el, XML_ELEM_OUTPUT_OPTIONS options, int *buf_len);
options           163 ext/xmlrpc/libxmlrpc/xml_element.h void xml_elem_serialize_to_stream(xml_element *el, FILE *output, XML_ELEM_OUTPUT_OPTIONS options);
options           164 ext/xmlrpc/libxmlrpc/xml_element.h xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTIONS options, XML_ELEM_ERROR error);
options          2585 ext/xmlrpc/libxmlrpc/xmlrpc.c    static STRUCT_XMLRPC_OPTIONS options = {
options          2589 ext/xmlrpc/libxmlrpc/xmlrpc.c    return &options;
options          2611 ext/xmlrpc/libxmlrpc/xmlrpc.c    XMLRPC_OPTIONS options = XMLRPC_GetDefaultOptions();
options          2612 ext/xmlrpc/libxmlrpc/xmlrpc.c    return options->id_case;
options          2636 ext/xmlrpc/libxmlrpc/xmlrpc.c    XMLRPC_OPTIONS options = XMLRPC_GetDefaultOptions();
options          2637 ext/xmlrpc/libxmlrpc/xmlrpc.c    options->id_case = id_case;
options          2638 ext/xmlrpc/libxmlrpc/xmlrpc.c    return options->id_case;
options          2662 ext/xmlrpc/libxmlrpc/xmlrpc.c    XMLRPC_OPTIONS options = XMLRPC_GetDefaultOptions();
options          2663 ext/xmlrpc/libxmlrpc/xmlrpc.c    return options->id_case_compare;
options          2687 ext/xmlrpc/libxmlrpc/xmlrpc.c    XMLRPC_OPTIONS options = XMLRPC_GetDefaultOptions();
options          2688 ext/xmlrpc/libxmlrpc/xmlrpc.c    options->id_case_compare = id_case_compare;
options          2689 ext/xmlrpc/libxmlrpc/xmlrpc.c    return options->id_case_compare;
options           306 ext/xmlrpc/xmlrpc-epi-php.c 	if (options) {
options           309 ext/xmlrpc/xmlrpc-epi-php.c 		options->b_php_out = 0;
options           310 ext/xmlrpc/xmlrpc-epi-php.c 		options->b_auto_version = 1;
options           311 ext/xmlrpc/xmlrpc-epi-php.c 		options->xmlrpc_out.version = xmlrpc_version_1_0;
options           312 ext/xmlrpc/xmlrpc-epi-php.c 		options->xmlrpc_out.xml_elem_opts.encoding = ENCODING_DEFAULT;
options           313 ext/xmlrpc/xmlrpc-epi-php.c 		options->xmlrpc_out.xml_elem_opts.verbosity = xml_elem_pretty;
options           314 ext/xmlrpc/xmlrpc-epi-php.c 		options->xmlrpc_out.xml_elem_opts.escaping = xml_elem_markup_escaping | xml_elem_non_ascii_escaping | xml_elem_non_print_escaping;
options           323 ext/xmlrpc/xmlrpc-epi-php.c 						options->b_php_out = 1;
options           325 ext/xmlrpc/xmlrpc-epi-php.c 						options->b_php_out = 0;
options           334 ext/xmlrpc/xmlrpc-epi-php.c 						options->xmlrpc_out.xml_elem_opts.verbosity = xml_elem_no_white_space;
options           336 ext/xmlrpc/xmlrpc-epi-php.c 						options->xmlrpc_out.xml_elem_opts.verbosity = xml_elem_newlines_only;
options           338 ext/xmlrpc/xmlrpc-epi-php.c 						options->xmlrpc_out.xml_elem_opts.verbosity = xml_elem_pretty;
options           346 ext/xmlrpc/xmlrpc-epi-php.c 					options->b_auto_version = 0;
options           348 ext/xmlrpc/xmlrpc-epi-php.c 						options->xmlrpc_out.version = xmlrpc_version_1_0;
options           350 ext/xmlrpc/xmlrpc-epi-php.c 						options->xmlrpc_out.version = xmlrpc_version_simple;
options           352 ext/xmlrpc/xmlrpc-epi-php.c 							options->xmlrpc_out.version = xmlrpc_version_soap_1_1;
options           354 ext/xmlrpc/xmlrpc-epi-php.c 							options->b_auto_version = 1;
options           364 ext/xmlrpc/xmlrpc-epi-php.c 		        options->xmlrpc_out.xml_elem_opts.encoding = estrdup(Z_STRVAL_PP(val));
options           376 ext/xmlrpc/xmlrpc-epi-php.c 		        options->xmlrpc_out.xml_elem_opts.escaping = xml_elem_no_escaping;
options           381 ext/xmlrpc/xmlrpc-epi-php.c 		                    options->xmlrpc_out.xml_elem_opts.escaping |= xml_elem_cdata_escaping;
options           384 ext/xmlrpc/xmlrpc-epi-php.c 		                    options->xmlrpc_out.xml_elem_opts.escaping |= xml_elem_non_ascii_escaping;
options           387 ext/xmlrpc/xmlrpc-epi-php.c 		                    options->xmlrpc_out.xml_elem_opts.escaping |= xml_elem_non_print_escaping;
options           390 ext/xmlrpc/xmlrpc-epi-php.c 		                    options->xmlrpc_out.xml_elem_opts.escaping |= xml_elem_markup_escaping;
options           404 ext/xmlrpc/xmlrpc-epi-php.c 		           options->xmlrpc_out.xml_elem_opts.escaping = xml_elem_cdata_escaping;
options           407 ext/xmlrpc/xmlrpc-epi-php.c 		           options->xmlrpc_out.xml_elem_opts.escaping = xml_elem_non_ascii_escaping;
options           410 ext/xmlrpc/xmlrpc-epi-php.c 		           options->xmlrpc_out.xml_elem_opts.escaping = xml_elem_non_print_escaping;
options           413 ext/xmlrpc/xmlrpc-epi-php.c 		           options->xmlrpc_out.xml_elem_opts.escaping = xml_elem_markup_escaping;
options           113 ext/zlib/zlib_fopen_wrapper.c 		if (options & REPORT_ERRORS) {
options           127 ext/zlib/zlib_fopen_wrapper.c 	innerstream = php_stream_open_wrapper(path, mode, STREAM_MUST_SEEK | options | STREAM_WILL_CAST, opened_path);
options           143 ext/zlib/zlib_fopen_wrapper.c 			if (options & REPORT_ERRORS) {
options           128 main/SAPI.h    	int options;
options           428 main/fopen_wrappers.c 	if (!(SG(options) & SAPI_OPTION_NO_CHDIR)) {
options           135 main/php_streams.h 			int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
options           144 main/php_streams.h 			int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
options           149 main/php_streams.h 	int (*unlink)(php_stream_wrapper *wrapper, char *url, int options, php_stream_context *context TSRMLS_DC);
options           152 main/php_streams.h 	int (*rename)(php_stream_wrapper *wrapper, char *url_from, char *url_to, int options, php_stream_context *context TSRMLS_DC);
options           155 main/php_streams.h 	int (*stream_mkdir)(php_stream_wrapper *wrapper, char *url, int mode, int options, php_stream_context *context TSRMLS_DC);
options           156 main/php_streams.h 	int (*stream_rmdir)(php_stream_wrapper *wrapper, char *url, int options, php_stream_context *context TSRMLS_DC);
options           291 main/streams/cast.c 	stream = php_stream_open_wrapper_rel(path, mode, options|STREAM_WILL_CAST, opened_path);
options           627 main/streams/memory.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "rfc2397: no comma in URL");
options           639 main/streams/memory.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "rfc2397: illegal media type");
options           655 main/streams/memory.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "rfc2397: illegal media type");
options           668 main/streams/memory.c 					php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "rfc2397: illegal parameter");
options           688 main/streams/memory.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "rfc2397: illegal URL");
options           705 main/streams/memory.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "rfc2397: unable to decode");
options            55 main/streams/php_stream_context.h 	zval *options;	/* hash keyed by wrapper family or specific wrapper */
options           849 main/streams/plain_wrapper.c 	if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(path TSRMLS_CC)) {
options           882 main/streams/plain_wrapper.c 	int persistent = options & STREAM_OPEN_PERSISTENT;
options           886 main/streams/plain_wrapper.c 		if (options & REPORT_ERRORS) {
options           919 main/streams/plain_wrapper.c 		if (options & STREAM_OPEN_FOR_INCLUDE) {
options           942 main/streams/plain_wrapper.c 			if (options & STREAM_OPEN_FOR_INCLUDE) {
options           974 main/streams/plain_wrapper.c 	if ((options & USE_PATH) && PG(include_path) != NULL) {
options           975 main/streams/plain_wrapper.c 		return php_stream_fopen_with_path_rel(path, mode, PG(include_path), opened_path, options);
options           978 main/streams/plain_wrapper.c 	if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(path TSRMLS_CC)) {
options           982 main/streams/plain_wrapper.c 	if ((options & ENFORCE_SAFE_MODE) && PG(safe_mode) && (!php_checkuid(path, mode, CHECKUID_CHECK_MODE_PARAM)))
options           985 main/streams/plain_wrapper.c 	return php_stream_fopen_rel(path, mode, opened_path, options);
options          1020 main/streams/plain_wrapper.c 	if (options & ENFORCE_SAFE_MODE) {
options          1032 main/streams/plain_wrapper.c 		if (options & REPORT_ERRORS) {
options          1118 main/streams/plain_wrapper.c 	int ret, recursive = options & PHP_STREAM_MKDIR_RECURSIVE;
options          1190 main/streams/plain_wrapper.c 						if (options & REPORT_ERRORS) {
options          1284 main/streams/plain_wrapper.c 		if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(filename TSRMLS_CC)) {
options          1291 main/streams/plain_wrapper.c 		return php_stream_fopen_rel(filename, mode, opened_path, options);
options          1304 main/streams/plain_wrapper.c 		if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(filename TSRMLS_CC)) {
options          1310 main/streams/plain_wrapper.c 			return php_stream_fopen_rel(filename, mode, opened_path, options);
options          1315 main/streams/plain_wrapper.c 		return php_stream_fopen_rel(filename, mode, opened_path, options);
options          1330 main/streams/plain_wrapper.c 		if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(trypath TSRMLS_CC)) {
options          1334 main/streams/plain_wrapper.c 			return php_stream_fopen_rel(trypath, mode, opened_path, options);
options          1340 main/streams/plain_wrapper.c 		return php_stream_fopen_rel(trypath, mode, opened_path, options);
options          1348 main/streams/plain_wrapper.c 		return php_stream_fopen_rel(filename, mode, opened_path, options);
options          1389 main/streams/plain_wrapper.c 		if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir_ex(trypath, 0 TSRMLS_CC)) {
options          1399 main/streams/plain_wrapper.c 					stream = php_stream_fopen_rel(trypath, mode, opened_path, options);
options          1405 main/streams/plain_wrapper.c 		stream = php_stream_fopen_rel(trypath, mode, opened_path, options);
options           207 main/streams/streams.c 	if (options & REPORT_ERRORS || wrapper == NULL) {
options          1498 main/streams/streams.c 	if (options & IGNORE_URL) {
options          1499 main/streams/streams.c 		return (options & STREAM_LOCATE_WRAPPERS_ONLY) ? NULL : &php_plain_files_wrapper;
options          1549 main/streams/streams.c 				if (options & REPORT_ERRORS) {
options          1569 main/streams/streams.c 		if (options & STREAM_LOCATE_WRAPPERS_ONLY) {
options          1586 main/streams/streams.c 			if (options & REPORT_ERRORS) {
options          1597 main/streams/streams.c         (options & STREAM_DISABLE_URL_PROTECTION) == 0 &&
options          1599 main/streams/streams.c 	     (((options & STREAM_OPEN_FOR_INCLUDE) ||
options          1601 main/streams/streams.c 		if (options & REPORT_ERRORS) {
options          1622 main/streams/streams.c 	return wrapper->wops->stream_mkdir(wrapper, path, mode, options, context TSRMLS_CC);
options          1637 main/streams/streams.c 	return wrapper->wops->stream_rmdir(wrapper, path, options, context TSRMLS_CC);
options          1700 main/streams/streams.c 	wrapper = php_stream_locate_url_wrapper(path, &path_to_open, options TSRMLS_CC);
options          1704 main/streams/streams.c 				path_to_open, "r", options ^ REPORT_ERRORS, NULL,
options          1712 main/streams/streams.c 		php_stream_wrapper_log_error(wrapper, options ^ REPORT_ERRORS TSRMLS_CC, "not implemented");
options          1714 main/streams/streams.c 	if (stream == NULL && (options & REPORT_ERRORS)) {
options          1742 main/streams/streams.c 	int persistent = options & STREAM_OPEN_PERSISTENT;
options          1756 main/streams/streams.c 	wrapper = php_stream_locate_url_wrapper(path, &path_to_open, options TSRMLS_CC);
options          1757 main/streams/streams.c 	if (options & STREAM_USE_URL && (!wrapper || !wrapper->is_url)) {
options          1764 main/streams/streams.c 			php_stream_wrapper_log_error(wrapper, options ^ REPORT_ERRORS TSRMLS_CC,
options          1768 main/streams/streams.c 				path_to_open, mode, options ^ REPORT_ERRORS,
options          1774 main/streams/streams.c 		if (stream && (options & STREAM_OPEN_PERSISTENT) && !stream->is_persistent) {
options          1775 main/streams/streams.c 			php_stream_wrapper_log_error(wrapper, options ^ REPORT_ERRORS TSRMLS_CC,
options          1794 main/streams/streams.c 	if (stream != NULL && (options & STREAM_MUST_SEEK)) {
options          1798 main/streams/streams.c 					(options & STREAM_WILL_CAST)
options          1811 main/streams/streams.c 				if (options & REPORT_ERRORS) {
options          1818 main/streams/streams.c 					options ^= REPORT_ERRORS;
options          1832 main/streams/streams.c 	if (stream == NULL && (options & REPORT_ERRORS)) {
options          1866 main/streams/streams.c 	if (context->options) {
options          1867 main/streams/streams.c 		zval_ptr_dtor(&context->options);
options          1868 main/streams/streams.c 		context->options = NULL;
options          1887 main/streams/streams.c 	MAKE_STD_ZVAL(context->options);
options          1888 main/streams/streams.c 	array_init(context->options);
options          1912 main/streams/streams.c 	if (FAILURE == zend_hash_find(Z_ARRVAL_P(context->options), (char*)wrappername, strlen(wrappername)+1, (void**)&wrapperhash)) {
options          1929 main/streams/streams.c 	if (FAILURE == zend_hash_find(Z_ARRVAL_P(context->options), (char*)wrappername, strlen(wrappername)+1, (void**)&wrapperhash)) {
options          1932 main/streams/streams.c 		if (FAILURE == zend_hash_update(Z_ARRVAL_P(context->options), (char*)wrappername, strlen(wrappername)+1, (void**)&category, sizeof(zval *), NULL)) {
options           133 main/streams/transports.c 			(char*)name, namelen, persistent_id, options, flags, timeout,
options           223 main/streams/userspace.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "infinite recursion prevented");
options           234 main/streams/userspace.c 		(options & STREAM_OPEN_FOR_INCLUDE) &&
options           304 main/streams/userspace.c 	ZVAL_LONG(zoptions, options);
options           336 main/streams/userspace.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "\"%s::" USERSTREAM_OPEN "\" call failed",
options           372 main/streams/userspace.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "infinite recursion prevented");
options           403 main/streams/userspace.c 	ZVAL_LONG(zoptions, options);
options           424 main/streams/userspace.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "\"%s::" USERSTREAM_DIR_OPEN "\" call failed",
options          1109 main/streams/userspace.c 	ZVAL_LONG(zoptions, options);
options          1174 main/streams/userspace.c 	ZVAL_LONG(zoptions, options);
options            48 regex/main.c   			copts = options('c', optarg);
options            51 regex/main.c   			eopts = options('e', optarg);
options           161 regex/main.c   		try(f[0], f[1], f[2], f[3], f[4], options('c', f[1]));
options           164 regex/main.c   					options('c', f[1]) &~ REG_EXTENDED);
options           254 regex/main.c   	if (options('e', f1)&REG_STARTEND) {
options           260 regex/main.c   	err = regexec(&re, f2copy, NSUBS, subs, options('e', f1));
options          1651 sapi/cgi/cgi_main.c 						SG(options) |= SAPI_OPTION_NO_CHDIR;
options           805 sapi/cli/php_cli.c 		SG(options) |= SAPI_OPTION_NO_CHDIR;
options           189 sapi/embed/php_embed.c   SG(options) |= SAPI_OPTION_NO_CHDIR;
options          1003 sapi/milter/php_milter.c 		SG(options) |= SAPI_OPTION_NO_CHDIR;
options           275 server-tests.php         $this->options = $options;
options           285 server-tests.php         if (isset($this->options['timeout'])) 
options           286 server-tests.php             $this->timeout = (int)$this->options['timeout'];
options           336 server-tests.php         if (isset($this->options['proxy_host'])) {
options           339 server-tests.php         if (isset($this->options['proxy_user'])) {
options           340 server-tests.php             $headers['Proxy-Authorization'] = 'Basic ' . base64_encode($this->options['proxy_user'].":".$this->options['proxy_pass']);
options           353 server-tests.php         $method = trim($this->options['method'])?strtoupper(trim($this->options['method'])):'GET';
options           366 server-tests.php         if (isset($this->options['proxy_host'])) {
options           367 server-tests.php             $host = $this->options['proxy_host'];
options           368 server-tests.php             $port = isset($this->options['proxy_port'])?$this->options['proxy_port']:8080;