option 168 ext/curl/interface.c static int php_curl_option_str(php_curl *ch, long option, const char *str, const int len, zend_bool make_copy TSRMLS_DC) option 184 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, copystr); option 188 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, str); option 304 ext/curl/interface.c ZEND_ARG_INFO(0, option) option 319 ext/curl/interface.c ZEND_ARG_INFO(0, option) option 353 ext/curl/interface.c ZEND_ARG_INFO(0, option) option 413 ext/curl/interface.c ZEND_ARG_INFO(0, option) option 2098 ext/curl/interface.c static int _php_curl_setopt(php_curl *ch, long option, zval **zvalue TSRMLS_DC) /* {{{ */ option 2102 ext/curl/interface.c switch (option) { option 2110 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, 2); option 2261 ext/curl/interface.c if ((option == CURLOPT_PROTOCOLS || option == CURLOPT_REDIR_PROTOCOLS) && option 2267 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, Z_LVAL_PP(zvalue)); option 2333 ext/curl/interface.c return php_curl_option_str(ch, option, Z_STRVAL_PP(zvalue), Z_STRLEN_PP(zvalue), 0 TSRMLS_CC); option 2353 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, NULL); option 2356 ext/curl/interface.c return php_curl_option_str(ch, option, Z_STRVAL_PP(zvalue), Z_STRLEN_PP(zvalue), 0 TSRMLS_CC); option 2364 ext/curl/interface.c return php_curl_option_str(ch, option, Z_STRVAL_PP(zvalue), Z_STRLEN_PP(zvalue), 1 TSRMLS_CC); option 2396 ext/curl/interface.c switch (option) { option 2475 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, fp); option 2502 ext/curl/interface.c switch (option) { option 2551 ext/curl/interface.c zend_hash_index_update(ch->to_free->slist, (ulong) option, &slist, sizeof(struct curl_slist *), NULL); option 2556 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, slist); option 2575 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, Z_LVAL_PP(zvalue)); option 2788 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, (curl_off_t)Z_LVAL_PP(zvalue)); option 2839 ext/curl/interface.c return php_curl_option_str(ch, option, Z_STRVAL_PP(zvalue), Z_STRLEN_PP(zvalue), 0 TSRMLS_CC); option 2925 ext/curl/interface.c ulong option; option 2938 ext/curl/interface.c if (zend_hash_get_current_key_ex(Z_ARRVAL_P(arr), &string_key, &str_key_len, &option, 0, &pos) != HASH_KEY_IS_LONG) { option 2942 ext/curl/interface.c if (_php_curl_setopt(ch, (long) option, entry TSRMLS_CC) == FAILURE) { option 3031 ext/curl/interface.c long option = 0; option 3033 ext/curl/interface.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|l", &zid, &option) == FAILURE) { option 3150 ext/curl/interface.c switch (option) { option 3172 ext/curl/interface.c int type = CURLINFO_TYPEMASK & option; option 3178 ext/curl/interface.c if (curl_easy_getinfo(ch->cp, option, &s_code) == CURLE_OK && s_code) { option 3189 ext/curl/interface.c if (curl_easy_getinfo(ch->cp, option, &code) == CURLE_OK) { option 3200 ext/curl/interface.c if (curl_easy_getinfo(ch->cp, option, &code) == CURLE_OK) { option 3212 ext/curl/interface.c if (curl_easy_getinfo(ch->cp, option, &slist) == CURLE_OK) { option 385 ext/curl/multi.c static int _php_curl_multi_setopt(php_curlm *mh, long option, zval **zvalue, zval *return_value TSRMLS_DC) /* {{{ */ option 389 ext/curl/multi.c switch (option) { option 397 ext/curl/multi.c error = curl_multi_setopt(mh->multi, option, Z_LVAL_PP(zvalue)); option 69 ext/curl/share.c static int _php_curl_share_setopt(php_curlsh *sh, long option, zval **zvalue, zval *return_value TSRMLS_DC) /* {{{ */ option 73 ext/curl/share.c switch (option) { option 77 ext/curl/share.c error = curl_share_setopt(sh->share, option, Z_LVAL_PP(zvalue)); option 138 ext/date/lib/timelib.h void timelib_time_set_option(timelib_time* tm, int option, void* option_value); option 4602 ext/date/php_date.c char *option = NULL; option 4605 ext/date/php_date.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|ls", &what, &option, &option_len) == FAILURE) { option 4623 ext/date/php_date.c if (tzdb->data[table[i].pos + 5] == option[0] && tzdb->data[table[i].pos + 6] == option[1]) { option 594 ext/filter/filter.c zval **option; option 613 ext/filter/filter.c if (zend_hash_find(HASH_OF(*filter_args), "filter", sizeof("filter"), (void **)&option) == SUCCESS) { option 614 ext/filter/filter.c PHP_FILTER_GET_LONG_OPT(option, filter); option 617 ext/filter/filter.c if (zend_hash_find(HASH_OF(*filter_args), "flags", sizeof("flags"), (void **)&option) == SUCCESS) { option 618 ext/filter/filter.c PHP_FILTER_GET_LONG_OPT(option, filter_flags); option 625 ext/filter/filter.c if (zend_hash_find(HASH_OF(*filter_args), "options", sizeof("options"), (void **)&option) == SUCCESS) { option 627 ext/filter/filter.c if (Z_TYPE_PP(option) == IS_ARRAY) { option 628 ext/filter/filter.c options = *option; option 631 ext/filter/filter.c options = *option; option 758 ext/filter/filter.c zval **option, **opt, **def; option 762 ext/filter/filter.c } else if (Z_TYPE_PP(filter_args) == IS_ARRAY && zend_hash_find(HASH_OF(*filter_args), "flags", sizeof("flags"), (void **)&option) == SUCCESS) { option 763 ext/filter/filter.c PHP_FILTER_GET_LONG_OPT(option, filter_flags); option 839 ext/filter/filter.c zval **option; option 843 ext/filter/filter.c } else if (Z_TYPE_PP(op) == IS_ARRAY && zend_hash_find(HASH_OF(*op), "flags", sizeof("flags"), (void **)&option) == SUCCESS) { option 844 ext/filter/filter.c PHP_FILTER_GET_LONG_OPT(option, filter_flags); option 233 ext/ftp/php_ftp.c ZEND_ARG_INFO(0, option) option 239 ext/ftp/php_ftp.c ZEND_ARG_INFO(0, option) option 1373 ext/ftp/php_ftp.c long option; option 1376 ext/ftp/php_ftp.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlz", &z_ftp, &option, &z_value) == FAILURE) { option 1382 ext/ftp/php_ftp.c switch (option) { option 1415 ext/ftp/php_ftp.c php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown option '%ld'", option); option 1427 ext/ftp/php_ftp.c long option; option 1430 ext/ftp/php_ftp.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &z_ftp, &option) == FAILURE) { option 1436 ext/ftp/php_ftp.c switch (option) { option 1447 ext/ftp/php_ftp.c php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown option '%ld'", option); option 137 ext/intl/idn/idn.c const char *domain, int domain_len, uint32_t option, int mode, zval *idna_info) option 147 ext/intl/idn/idn.c uts46 = uidna_openUTS46(option, &status); option 205 ext/intl/idn/idn.c const char *domain, int domain_len, uint32_t option, int mode) option 233 ext/intl/idn/idn.c converted_ret_len = uidna_IDNToASCII(ustring, ustring_len, converted, MAXPATHLEN, (int32_t)option, &parse_error, &status); option 235 ext/intl/idn/idn.c converted_ret_len = uidna_IDNToUnicode(ustring, ustring_len, converted, MAXPATHLEN, (int32_t)option, &parse_error, &status); option 266 ext/intl/idn/idn.c long option = 0, option 273 ext/intl/idn/idn.c &domain, &domain_len, &option, &variant, &idna_info) == FAILURE) { option 316 ext/intl/idn/idn.c domain, domain_len, (uint32_t)option, mode); option 321 ext/intl/idn/idn.c (uint32_t)option, mode, idna_info); option 375 ext/intl/php_intl.c ZEND_ARG_INFO(0, option) option 382 ext/intl/php_intl.c ZEND_ARG_INFO(0, option) option 2023 ext/ldap/ldap.c long option; option 2025 ext/ldap/ldap.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlz", &link, &option, &retval) != SUCCESS) { option 2031 ext/ldap/ldap.c switch (option) { option 2045 ext/ldap/ldap.c if (ldap_get_option(ld->link, option, &val)) { option 2117 ext/ldap/ldap.c if (ldap_get_option(ld->link, option, &val) || val == NULL || *val == '\0') { option 2147 ext/ldap/ldap.c long option; option 2149 ext/ldap/ldap.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zlZ", &link, &option, &newval) != SUCCESS) { option 2160 ext/ldap/ldap.c switch (option) { option 2175 ext/ldap/ldap.c if (ldap_set_option(ldap, option, &val)) { option 2234 ext/ldap/ldap.c if (ldap_set_option(ldap, option, val)) { option 2248 ext/ldap/ldap.c if (ldap_set_option(ldap, option, val)) { option 2303 ext/ldap/ldap.c error = ldap_set_option(ldap, option, ctrls); option 3163 ext/ldap/ldap.c ZEND_ARG_INFO(0, option) option 3169 ext/ldap/ldap.c ZEND_ARG_INFO(0, option) option 401 ext/mbstring/mbstring.c ZEND_ARG_INFO(0, option) option 461 ext/mbstring/mbstring.c ZEND_ARG_INFO(0, option) option 474 ext/mbstring/mbstring.c ZEND_ARG_INFO(0, option) option 486 ext/mbstring/mbstring.c ZEND_ARG_INFO(0, option) option 491 ext/mbstring/mbstring.c ZEND_ARG_INFO(0, option) option 496 ext/mbstring/mbstring.c ZEND_ARG_INFO(0, option) option 501 ext/mbstring/mbstring.c ZEND_ARG_INFO(0, option) option 507 ext/mbstring/mbstring.c ZEND_ARG_INFO(0, option) option 396 ext/mbstring/oniguruma/oniguruma.h #define ONIG_IS_OPTION_ON(options,option) ((options) & (option)) option 712 ext/mbstring/oniguruma/oniguruma.h OnigOptionType option; option 726 ext/mbstring/oniguruma/oniguruma.h int onig_new P_((OnigRegex*, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigOptionType option, OnigEncoding enc, OnigSyntaxType* syntax, OnigErrorInfo* einfo)); option 728 ext/mbstring/oniguruma/oniguruma.h int onig_reg_init P_((regex_t* reg, OnigOptionType option, OnigCaseFoldType case_fold_flag, OnigEncoding enc, OnigSyntaxType* syntax)); option 729 ext/mbstring/oniguruma/oniguruma.h int onig_new_without_alloc P_((OnigRegex, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigOptionType option, OnigEncoding enc, OnigSyntaxType* syntax, OnigErrorInfo* einfo)); option 737 ext/mbstring/oniguruma/oniguruma.h int onig_recompile P_((OnigRegex, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigOptionType option, OnigEncoding enc, OnigSyntaxType* syntax, OnigErrorInfo* einfo)); option 741 ext/mbstring/oniguruma/oniguruma.h int onig_search P_((OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUChar* start, const OnigUChar* range, OnigRegion* region, OnigOptionType option)); option 743 ext/mbstring/oniguruma/oniguruma.h int onig_match P_((OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUChar* at, OnigRegion* region, OnigOptionType option)); option 264 ext/mbstring/oniguruma/regcomp.c add_option(regex_t* reg, OnigOptionType option) option 266 ext/mbstring/oniguruma/regcomp.c BBUF_ADD(reg, &option, SIZE_OPTION); option 296 ext/mbstring/oniguruma/regcomp.c add_opcode_option(regex_t* reg, int opcode, OnigOptionType option) option 302 ext/mbstring/oniguruma/regcomp.c r = add_option(reg, option); option 1164 ext/mbstring/oniguruma/regcomp.c reg->options = node->option; option 1170 ext/mbstring/oniguruma/regcomp.c if (IS_DYNAMIC_OPTION(prev ^ node->option)) { option 1184 ext/mbstring/oniguruma/regcomp.c if (IS_DYNAMIC_OPTION(prev ^ node->option)) { option 1185 ext/mbstring/oniguruma/regcomp.c r = add_opcode_option(reg, OP_SET_OPTION_PUSH, node->option); option 1193 ext/mbstring/oniguruma/regcomp.c reg->options = node->option; option 1197 ext/mbstring/oniguruma/regcomp.c if (IS_DYNAMIC_OPTION(prev ^ node->option)) { option 2633 ext/mbstring/oniguruma/regcomp.c reg->options = NENCLOSE(node)->option; option 3015 ext/mbstring/oniguruma/regcomp.c !ONIG_IS_OPTION_ON(env->option, ONIG_OPTION_CAPTURE_GROUP)) { option 3808 ext/mbstring/oniguruma/regcomp.c reg->options = NENCLOSE(node)->option; option 4763 ext/mbstring/oniguruma/regcomp.c env->options = NENCLOSE(NCALL(node)->target)->option; option 4832 ext/mbstring/oniguruma/regcomp.c env->options = en->option; option 5452 ext/mbstring/oniguruma/regcomp.c OnigOptionType option, OnigEncoding enc, OnigSyntaxType* syntax, option 5458 ext/mbstring/oniguruma/regcomp.c r = onig_new(&new_reg, pattern, pattern_end, option, enc, syntax, einfo); option 5473 ext/mbstring/oniguruma/regcomp.c onig_reg_init(regex_t* reg, OnigOptionType option, option 5486 ext/mbstring/oniguruma/regcomp.c if ((option & (ONIG_OPTION_DONT_CAPTURE_GROUP|ONIG_OPTION_CAPTURE_GROUP)) option 5493 ext/mbstring/oniguruma/regcomp.c if ((option & ONIG_OPTION_NEGATE_SINGLELINE) != 0) { option 5494 ext/mbstring/oniguruma/regcomp.c option |= syntax->options; option 5495 ext/mbstring/oniguruma/regcomp.c option &= ~ONIG_OPTION_SINGLELINE; option 5498 ext/mbstring/oniguruma/regcomp.c option |= syntax->options; option 5501 ext/mbstring/oniguruma/regcomp.c (reg)->options = option; option 5520 ext/mbstring/oniguruma/regcomp.c const UChar* pattern_end, OnigOptionType option, OnigEncoding enc, option 5525 ext/mbstring/oniguruma/regcomp.c r = onig_reg_init(reg, option, ONIGENC_CASE_FOLD_DEFAULT, enc, syntax); option 5534 ext/mbstring/oniguruma/regcomp.c OnigOptionType option, OnigEncoding enc, OnigSyntaxType* syntax, option 5542 ext/mbstring/oniguruma/regcomp.c r = onig_reg_init(*reg, option, ONIGENC_CASE_FOLD_DEFAULT, enc, syntax); option 5851 ext/mbstring/oniguruma/regcomp.c OnigOptionType option = *((OnigOptionType* )bp); option 5853 ext/mbstring/oniguruma/regcomp.c fprintf(f, ":%d", option); option 5990 ext/mbstring/oniguruma/regcomp.c OnigOptionType option; option 5993 ext/mbstring/oniguruma/regcomp.c GET_OPTION_INC(option, bp); option 5994 ext/mbstring/oniguruma/regcomp.c fprintf(f, ":%d", option); option 6218 ext/mbstring/oniguruma/regcomp.c fprintf(f, "option:%d", NENCLOSE(node)->option); option 1250 ext/mbstring/oniguruma/regexec.c OnigOptionType option = reg->options; option 1321 ext/mbstring/oniguruma/regexec.c if (IS_FIND_LONGEST(option)) { option 1413 ext/mbstring/oniguruma/regexec.c if (IS_FIND_CONDITION(option)) { option 1414 ext/mbstring/oniguruma/regexec.c if (IS_FIND_NOT_EMPTY(option) && s == sstart) { option 1418 ext/mbstring/oniguruma/regexec.c if (IS_FIND_LONGEST(option) && DATA_ENSURE_CHECK1) { option 2311 ext/mbstring/oniguruma/regexec.c GET_OPTION_INC(option, p); option 2319 ext/mbstring/oniguruma/regexec.c GET_OPTION_INC(option, p); option 3050 ext/mbstring/oniguruma/regexec.c OnigOptionType option) option 3081 ext/mbstring/oniguruma/regexec.c MATCH_ARG_INIT(msa, option, region, at); option 3091 ext/mbstring/oniguruma/regexec.c && !IS_POSIX_REGION(option) option 3351 ext/mbstring/oniguruma/regexec.c const UChar* start, const UChar* range, OnigRegion* region, OnigOptionType option) option 3394 ext/mbstring/oniguruma/regexec.c && !IS_POSIX_REGION(option) option 3550 ext/mbstring/oniguruma/regexec.c MATCH_ARG_INIT(msa, option, region, start); option 3566 ext/mbstring/oniguruma/regexec.c MATCH_ARG_INIT(msa, option, region, orig_start); option 3723 ext/mbstring/oniguruma/regexec.c && !IS_POSIX_REGION(option) option 187 ext/mbstring/oniguruma/regext.c r = onig_reg_init(*reg, ci->option, ci->case_fold_flag, ci->target_enc, option 288 ext/mbstring/oniguruma/regint.h #define IS_SINGLELINE(option) ((option) & ONIG_OPTION_SINGLELINE) option 289 ext/mbstring/oniguruma/regint.h #define IS_MULTILINE(option) ((option) & ONIG_OPTION_MULTILINE) option 290 ext/mbstring/oniguruma/regint.h #define IS_IGNORECASE(option) ((option) & ONIG_OPTION_IGNORECASE) option 291 ext/mbstring/oniguruma/regint.h #define IS_EXTEND(option) ((option) & ONIG_OPTION_EXTEND) option 292 ext/mbstring/oniguruma/regint.h #define IS_FIND_LONGEST(option) ((option) & ONIG_OPTION_FIND_LONGEST) option 293 ext/mbstring/oniguruma/regint.h #define IS_FIND_NOT_EMPTY(option) ((option) & ONIG_OPTION_FIND_NOT_EMPTY) option 294 ext/mbstring/oniguruma/regint.h #define IS_FIND_CONDITION(option) ((option) & \ option 296 ext/mbstring/oniguruma/regint.h #define IS_NOTBOL(option) ((option) & ONIG_OPTION_NOTBOL) option 297 ext/mbstring/oniguruma/regint.h #define IS_NOTEOL(option) ((option) & ONIG_OPTION_NOTEOL) option 298 ext/mbstring/oniguruma/regint.h #define IS_POSIX_REGION(option) ((option) & ONIG_OPTION_POSIX_REGION) option 305 ext/mbstring/oniguruma/regint.h #define IS_DYNAMIC_OPTION(option) 0 option 573 ext/mbstring/oniguruma/regint.h #define GET_OPTION_INC(option,p) PLATFORM_GET_INC(option, p, OnigOptionType) option 1383 ext/mbstring/oniguruma/regparse.c NENCLOSE(node)->option = 0; option 1397 ext/mbstring/oniguruma/regparse.c node_new_enclose_memory(OnigOptionType option, int is_named) option 1405 ext/mbstring/oniguruma/regparse.c NENCLOSE(node)->option = option; option 1411 ext/mbstring/oniguruma/regparse.c node_new_option(OnigOptionType option) option 1415 ext/mbstring/oniguruma/regparse.c NENCLOSE(node)->option = option; option 3704 ext/mbstring/oniguruma/regparse.c tok->u.subtype = (IS_SINGLELINE(env->option) option 3711 ext/mbstring/oniguruma/regparse.c tok->u.subtype = (IS_SINGLELINE(env->option) option 3726 ext/mbstring/oniguruma/regparse.c if (IS_EXTEND(env->option)) { option 3738 ext/mbstring/oniguruma/regparse.c if (IS_EXTEND(env->option)) option 4510 ext/mbstring/oniguruma/regparse.c OnigOptionType option; option 4524 ext/mbstring/oniguruma/regparse.c option = env->option; option 4592 ext/mbstring/oniguruma/regparse.c *np = node_new_enclose_memory(env->option, 1); option 4622 ext/mbstring/oniguruma/regparse.c *np = node_new_enclose_memory(env->option, 0); option 4655 ext/mbstring/oniguruma/regparse.c case 'x': ONOFF(option, ONIG_OPTION_EXTEND, neg); break; option 4656 ext/mbstring/oniguruma/regparse.c case 'i': ONOFF(option, ONIG_OPTION_IGNORECASE, neg); break; option 4659 ext/mbstring/oniguruma/regparse.c ONOFF(option, ONIG_OPTION_MULTILINE, neg); option 4667 ext/mbstring/oniguruma/regparse.c ONOFF(option, ONIG_OPTION_SINGLELINE, (neg == 0 ? 1 : 0)); option 4670 ext/mbstring/oniguruma/regparse.c ONOFF(option, ONIG_OPTION_MULTILINE, neg); option 4677 ext/mbstring/oniguruma/regparse.c ONOFF(option, ONIG_OPTION_MULTILINE|ONIG_OPTION_SINGLELINE, neg); option 4685 ext/mbstring/oniguruma/regparse.c *np = node_new_option(option); option 4691 ext/mbstring/oniguruma/regparse.c OnigOptionType prev = env->option; option 4693 ext/mbstring/oniguruma/regparse.c env->option = option; option 4697 ext/mbstring/oniguruma/regparse.c env->option = prev; option 4699 ext/mbstring/oniguruma/regparse.c *np = node_new_option(option); option 4717 ext/mbstring/oniguruma/regparse.c if (ONIG_IS_OPTION_ON(env->option, ONIG_OPTION_DONT_CAPTURE_GROUP)) option 4720 ext/mbstring/oniguruma/regparse.c *np = node_new_enclose_memory(env->option, 0); option 5062 ext/mbstring/oniguruma/regparse.c OnigOptionType prev = env->option; option 5064 ext/mbstring/oniguruma/regparse.c env->option = NENCLOSE(*np)->option; option 5068 ext/mbstring/oniguruma/regparse.c env->option = prev; option 5274 ext/mbstring/oniguruma/regparse.c if (IS_IGNORECASE(env->option)) { option 5533 ext/mbstring/oniguruma/regparse.c env->option = reg->options; option 190 ext/mbstring/oniguruma/regparse.h OnigOptionType option; option 279 ext/mbstring/oniguruma/regparse.h OnigOptionType option; option 132 ext/mbstring/oniguruma/testu.c ci.option = ONIG_OPTION_DEFAULT; option 474 ext/mbstring/php_mbregex.c static size_t _php_mb_regex_get_option_string(char *str, size_t len, OnigOptionType option, OnigSyntaxType *syntax) option 481 ext/mbstring/php_mbregex.c if ((option & ONIG_OPTION_IGNORECASE) != 0) { option 489 ext/mbstring/php_mbregex.c if ((option & ONIG_OPTION_EXTEND) != 0) { option 497 ext/mbstring/php_mbregex.c if ((option & (ONIG_OPTION_MULTILINE | ONIG_OPTION_SINGLELINE)) == option 505 ext/mbstring/php_mbregex.c if ((option & ONIG_OPTION_MULTILINE) != 0) { option 513 ext/mbstring/php_mbregex.c if ((option & ONIG_OPTION_SINGLELINE) != 0) { option 521 ext/mbstring/php_mbregex.c if ((option & ONIG_OPTION_FIND_LONGEST) != 0) { option 528 ext/mbstring/php_mbregex.c if ((option & ONIG_OPTION_FIND_NOT_EMPTY) != 0) { option 580 ext/mbstring/php_mbregex.c _php_mb_regex_init_options(const char *parg, int narg, OnigOptionType *option, OnigSyntaxType **syntax, int *eval) option 645 ext/mbstring/php_mbregex.c if (option != NULL) *option|=optm; option 1140 ext/mbstring/php_mbregex.c OnigOptionType option = 0; option 1154 ext/mbstring/php_mbregex.c _php_mb_regex_init_options(option_str, option_str_len, &option, &syntax, NULL); option 1156 ext/mbstring/php_mbregex.c option |= MBREX(regex_default_options); option 1161 ext/mbstring/php_mbregex.c if ((re = php_mbregex_compile_pattern(arg_pattern, arg_pattern_len, option, MBREX(current_mbctype), syntax TSRMLS_CC)) == NULL) { option 1184 ext/mbstring/php_mbregex.c OnigOptionType option; option 1192 ext/mbstring/php_mbregex.c option = MBREX(regex_default_options); option 1195 ext/mbstring/php_mbregex.c option = 0; option 1196 ext/mbstring/php_mbregex.c _php_mb_regex_init_options(arg_options, arg_options_len, &option, &syntax, NULL); option 1201 ext/mbstring/php_mbregex.c if ((MBREX(search_re) = php_mbregex_compile_pattern(arg_pattern, arg_pattern_len, option, MBREX(current_mbctype), MBREX(regex_default_syntax) TSRMLS_CC)) == NULL) { option 1315 ext/mbstring/php_mbregex.c OnigOptionType option; option 1326 ext/mbstring/php_mbregex.c option = MBREX(regex_default_options); option 1330 ext/mbstring/php_mbregex.c option = 0; option 1331 ext/mbstring/php_mbregex.c _php_mb_regex_init_options(arg_options, arg_options_len, &option, &syntax, NULL); option 1336 ext/mbstring/php_mbregex.c if ((MBREX(search_re) = php_mbregex_compile_pattern(arg_pattern, arg_pattern_len, option, MBREX(current_mbctype), syntax TSRMLS_CC)) == NULL) { option 1740 ext/mysqli/mysqli_api.c static int mysqli_options_get_option_zval_type(int option) option 1742 ext/mysqli/mysqli_api.c switch (option) { option 290 ext/mysqli/mysqli_fe.c ZEND_ARG_INFO(0, option) option 295 ext/mysqli/mysqli_fe.c ZEND_ARG_INFO(0, option) option 394 ext/mysqlnd/mysqlnd.c MYSQLND_METHOD(mysqlnd_conn_data, set_server_option)(MYSQLND_CONN_DATA * const conn, enum_mysqlnd_server_option option TSRMLS_DC) option 402 ext/mysqlnd/mysqlnd.c int2store(buffer, (unsigned int) option); option 2322 ext/mysqlnd/mysqlnd.c enum mysqlnd_option option, option 2329 ext/mysqlnd/mysqlnd.c DBG_INF_FMT("conn=%llu option=%u", conn->thread_id, option); option 2334 ext/mysqlnd/mysqlnd.c switch (option) { option 2350 ext/mysqlnd/mysqlnd.c ret = conn->net->data->m.set_client_option(conn->net, option, value TSRMLS_CC); option 2520 ext/mysqlnd/mysqlnd.c enum mysqlnd_option option, option 2528 ext/mysqlnd/mysqlnd.c DBG_INF_FMT("conn=%llu option=%u", conn->thread_id, option); option 2533 ext/mysqlnd/mysqlnd.c switch (option) { option 719 ext/mysqlnd/mysqlnd_net.c MYSQLND_METHOD(mysqlnd_net, set_client_option)(MYSQLND_NET * const net, enum mysqlnd_option option, const char * const value TSRMLS_DC) option 722 ext/mysqlnd/mysqlnd_net.c DBG_INF_FMT("option=%u", option); option 723 ext/mysqlnd/mysqlnd_net.c switch (option) { option 290 ext/mysqlnd/mysqlnd_structs.h typedef enum_func_status (*func_mysqlnd_net__set_client_option)(MYSQLND_NET * const net, enum_mysqlnd_option option, const char * const value TSRMLS_DC); option 469 ext/mysqlnd/mysqlnd_structs.h typedef enum_func_status (*func_mysqlnd_conn_data__set_server_option)(MYSQLND_CONN_DATA * const conn, enum_mysqlnd_server_option option TSRMLS_DC); option 470 ext/mysqlnd/mysqlnd_structs.h typedef enum_func_status (*func_mysqlnd_conn_data__set_client_option)(MYSQLND_CONN_DATA * const conn, enum_mysqlnd_option option, const char * const value TSRMLS_DC); option 228 ext/odbc/php_odbc.c ZEND_ARG_INFO(0, option) option 2154 ext/openssl/xp_ssl.c static int php_openssl_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) option 2160 ext/openssl/xp_ssl.c switch (option) { option 2240 ext/openssl/xp_ssl.c php_stream_socket_ops.set_option(stream, option, value, ptrparam TSRMLS_CC); option 2269 ext/openssl/xp_ssl.c return php_stream_socket_ops.set_option(stream, option, value, ptrparam TSRMLS_CC); option 5347 ext/pgsql/pgsql.c static int php_pgsql_fd_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) option 5350 ext/pgsql/pgsql.c switch (option) { option 6448 ext/pgsql/pgsql.c ulong option = 0; option 6453 ext/pgsql/pgsql.c "rsa|l", &pgsql_link, &table_name, &table_name_len, &values, &option) == FAILURE) { option 6456 ext/pgsql/pgsql.c if (option & ~PGSQL_CONV_OPTS) { option 6471 ext/pgsql/pgsql.c if (php_pgsql_convert(pg_link, table_name, values, return_value, option TSRMLS_CC) == FAILURE) { option 6671 ext/pgsql/pgsql.c ulong option = PGSQL_DML_EXEC, return_sql; option 6679 ext/pgsql/pgsql.c &pgsql_link, &table, &table_len, &values, &option) == FAILURE) { option 6682 ext/pgsql/pgsql.c if (option & ~(PGSQL_CONV_OPTS|PGSQL_DML_NO_CONV|PGSQL_DML_EXEC|PGSQL_DML_ASYNC|PGSQL_DML_STRING|PGSQL_DML_ESCAPE)) { option 6692 ext/pgsql/pgsql.c return_sql = option & PGSQL_DML_STRING; option 6693 ext/pgsql/pgsql.c if (option & PGSQL_DML_EXEC) { option 6695 ext/pgsql/pgsql.c option = option & ~PGSQL_DML_EXEC; option 6696 ext/pgsql/pgsql.c if (php_pgsql_insert(pg_link, table, values, option|PGSQL_DML_STRING, &sql TSRMLS_CC) == FAILURE) { option 6737 ext/pgsql/pgsql.c } else if (php_pgsql_insert(pg_link, table, values, option, &sql TSRMLS_CC) == FAILURE) { option 6893 ext/pgsql/pgsql.c ulong option = PGSQL_DML_EXEC; option 6898 ext/pgsql/pgsql.c &pgsql_link, &table, &table_len, &values, &ids, &option) == FAILURE) { option 6901 ext/pgsql/pgsql.c if (option & ~(PGSQL_CONV_OPTS|PGSQL_DML_NO_CONV|PGSQL_DML_EXEC|PGSQL_DML_STRING|PGSQL_DML_ESCAPE)) { option 6911 ext/pgsql/pgsql.c if (php_pgsql_update(pg_link, table, values, ids, option, &sql TSRMLS_CC) == FAILURE) { option 6914 ext/pgsql/pgsql.c if (option & PGSQL_DML_STRING) { option 6985 ext/pgsql/pgsql.c ulong option = PGSQL_DML_EXEC; option 6990 ext/pgsql/pgsql.c &pgsql_link, &table, &table_len, &ids, &option) == FAILURE) { option 6993 ext/pgsql/pgsql.c if (option & ~(PGSQL_CONV_FORCE_NULL|PGSQL_DML_NO_CONV|PGSQL_DML_EXEC|PGSQL_DML_STRING|PGSQL_DML_ESCAPE)) { option 7003 ext/pgsql/pgsql.c if (php_pgsql_delete(pg_link, table, ids, option, &sql TSRMLS_CC) == FAILURE) { option 7006 ext/pgsql/pgsql.c if (option & PGSQL_DML_STRING) { option 7123 ext/pgsql/pgsql.c ulong option = PGSQL_DML_EXEC; option 7128 ext/pgsql/pgsql.c &pgsql_link, &table, &table_len, &ids, &option) == FAILURE) { option 7131 ext/pgsql/pgsql.c if (option & ~(PGSQL_CONV_FORCE_NULL|PGSQL_DML_NO_CONV|PGSQL_DML_EXEC|PGSQL_DML_ASYNC|PGSQL_DML_STRING|PGSQL_DML_ESCAPE)) { option 7142 ext/pgsql/pgsql.c if (php_pgsql_select(pg_link, table, ids, return_value, option, &sql TSRMLS_CC) == FAILURE) { option 7146 ext/pgsql/pgsql.c if (option & PGSQL_DML_STRING) { option 234 ext/pgsql/php_pgsql.h static int php_pgsql_fd_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC); option 820 ext/pspell/pspell.c static void pspell_config_path(INTERNAL_FUNCTION_PARAMETERS, char *option) option 838 ext/pspell/pspell.c pspell_config_replace(config, option, value); option 2476 ext/standard/basic_functions.c ZEND_ARG_INFO(0, option) option 5325 ext/standard/basic_functions.c zval *option; option 5335 ext/standard/basic_functions.c MAKE_STD_ZVAL(option); option 5336 ext/standard/basic_functions.c array_init(option); option 5339 ext/standard/basic_functions.c add_assoc_stringl(option, "global_value", ini_entry->orig_value, ini_entry->orig_value_length, 1); option 5341 ext/standard/basic_functions.c add_assoc_stringl(option, "global_value", ini_entry->value, ini_entry->value_length, 1); option 5343 ext/standard/basic_functions.c add_assoc_null(option, "global_value"); option 5347 ext/standard/basic_functions.c add_assoc_stringl(option, "local_value", ini_entry->value, ini_entry->value_length, 1); option 5349 ext/standard/basic_functions.c add_assoc_null(option, "local_value"); option 5352 ext/standard/basic_functions.c add_assoc_long(option, "access", ini_entry->modifiable); option 5354 ext/standard/basic_functions.c add_assoc_zval_ex(ini_array, ini_entry->name, ini_entry->name_length, option); option 438 ext/standard/filestat.c int option; option 441 ext/standard/filestat.c option = PHP_STREAM_META_GROUP; option 444 ext/standard/filestat.c option = PHP_STREAM_META_GROUP_NAME; option 450 ext/standard/filestat.c if(wrapper->wops->stream_metadata(wrapper, filename, option, value, NULL TSRMLS_CC)) { option 575 ext/standard/filestat.c int option; option 578 ext/standard/filestat.c option = PHP_STREAM_META_OWNER; option 581 ext/standard/filestat.c option = PHP_STREAM_META_OWNER_NAME; option 587 ext/standard/filestat.c if(wrapper->wops->stream_metadata(wrapper, filename, option, value, NULL TSRMLS_CC)) { option 138 ext/standard/syslog.c long option, facility; option 142 ext/standard/syslog.c &ident_len, &option, &facility) == FAILURE) { option 152 ext/standard/syslog.c openlog(BG(syslog_device), option, facility); option 360 ext/tidy/tidy.c ZEND_ARG_INFO(0, option) option 199 ext/xml/xml.c ZEND_ARG_INFO(0, option) option 205 ext/xml/xml.c ZEND_ARG_INFO(0, option) option 361 ext/zip/php_zip.c zval **option; option 362 ext/zip/php_zip.c if (zend_hash_find(HASH_OF(options), "remove_all_path", sizeof("remove_all_path"), (void **)&option) == SUCCESS) { option 364 ext/zip/php_zip.c if (Z_TYPE_PP(option) != IS_LONG) { option 365 ext/zip/php_zip.c zval tmp = **option; option 370 ext/zip/php_zip.c opt = Z_LVAL_PP(option); option 376 ext/zip/php_zip.c if (zend_hash_find(HASH_OF(options), "remove_path", sizeof("remove_path"), (void **)&option) == SUCCESS) { option 377 ext/zip/php_zip.c if (Z_TYPE_PP(option) != IS_STRING) { option 382 ext/zip/php_zip.c if (Z_STRLEN_PP(option) < 1) { option 387 ext/zip/php_zip.c if (Z_STRLEN_PP(option) >= MAXPATHLEN) { option 389 ext/zip/php_zip.c MAXPATHLEN - 1, Z_STRLEN_PP(option)); option 392 ext/zip/php_zip.c *remove_path_len = Z_STRLEN_PP(option); option 393 ext/zip/php_zip.c *remove_path = Z_STRVAL_PP(option); option 396 ext/zip/php_zip.c if (zend_hash_find(HASH_OF(options), "add_path", sizeof("add_path"), (void **)&option) == SUCCESS) { option 397 ext/zip/php_zip.c if (Z_TYPE_PP(option) != IS_STRING) { option 402 ext/zip/php_zip.c if (Z_STRLEN_PP(option) < 1) { option 407 ext/zip/php_zip.c if (Z_STRLEN_PP(option) >= MAXPATHLEN) { option 409 ext/zip/php_zip.c MAXPATHLEN - 1, Z_STRLEN_PP(option)); option 412 ext/zip/php_zip.c *add_path_len = Z_STRLEN_PP(option); option 413 ext/zip/php_zip.c *add_path = Z_STRVAL_PP(option); option 129 main/php_streams.h int (*set_option)(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC); option 361 main/php_streams.h PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC); option 362 main/php_streams.h #define php_stream_set_option(stream, option, value, ptrvalue) _php_stream_set_option((stream), (option), (value), (ptrvalue) TSRMLS_CC) option 247 main/streams/memory.c static int php_stream_memory_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) /* {{{ */ option 252 main/streams/memory.c switch(option) { option 532 main/streams/memory.c static int php_stream_temp_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) /* {{{ */ option 536 main/streams/memory.c switch(option) { option 544 main/streams/memory.c return php_stream_set_option(ts->innerstream, option, value, ptrparam); option 576 main/streams/plain_wrapper.c static int php_stdiop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) option 589 main/streams/plain_wrapper.c switch(option) { option 1277 main/streams/plain_wrapper.c static int php_plain_files_metadata(php_stream_wrapper *wrapper, const char *url, int option, void *value, php_stream_context *context TSRMLS_DC) option 1305 main/streams/plain_wrapper.c switch(option) { option 1322 main/streams/plain_wrapper.c if(option == PHP_STREAM_META_OWNER_NAME) { option 1334 main/streams/plain_wrapper.c if(option == PHP_STREAM_META_GROUP_NAME) { option 1350 main/streams/plain_wrapper.c php_error_docref1(NULL TSRMLS_CC, url, E_WARNING, "Unknown option %d for stream_metadata", option); option 1352 main/streams/streams.c PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) option 1357 main/streams/streams.c ret = stream->ops->set_option(stream, option, value, ptrparam TSRMLS_CC); option 1361 main/streams/streams.c switch(option) { option 54 main/streams/userspace.c static int user_wrapper_metadata(php_stream_wrapper *wrapper, const char *url, int option, void *value, php_stream_context *context TSRMLS_DC); option 969 main/streams/userspace.c static int php_userstreamop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) { option 978 main/streams/userspace.c switch (option) { option 1092 main/streams/userspace.c ZVAL_LONG(zoption, option); option 1101 main/streams/userspace.c switch(option) { option 1378 main/streams/userspace.c static int user_wrapper_metadata(php_stream_wrapper *wrapper, const char *url, int option, option 1389 main/streams/userspace.c switch(option) { option 1408 main/streams/userspace.c php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown option %d for " USERSTREAM_METADATA, option); option 1426 main/streams/userspace.c ZVAL_LONG(zoption, option); option 51 main/streams/xp_socket.c static int php_tcp_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC); option 268 main/streams/xp_socket.c static int php_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) option 274 main/streams/xp_socket.c switch(option) { option 756 main/streams/xp_socket.c static int php_tcp_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) option 761 main/streams/xp_socket.c switch(option) { option 784 main/streams/xp_socket.c return php_sockop_set_option(stream, option, value, ptrparam TSRMLS_CC);