Searched defs:option (Results 1 - 25 of 29) sorted by relevance

12

/PHP_5_5/scripts/dev/generate-phpt/src/setup/
H A DgtCommandLineOptions.php51 $option = substr($argv[$i], 1); variable
53 throw new gtUnknownOptionException('Unrecognised command line option ' . $argv[$i]);
56 if (!in_array($option, array_merge($this->shortOptions, $this->shortOptionsWithArgs)))
58 throw new gtUnknownOptionException('Unknown option ' . $argv[$i]);
61 if (in_array($option, $this->shortOptions)) {
62 $this->options[$option] = true;
68 throw new gtMissingArgumentException('Missing argument for command line option ' . $argv[$i]);
72 $this->options[$option] = $argv[$i];
79 public function getOption($option)
81 if (!isset($this->options[$option])) {
[all...]
/PHP_5_5/ext/intl/idn/
H A Didn.c137 const char *domain, int domain_len, uint32_t option, int mode, zval *idna_info)
147 uts46 = uidna_openUTS46(option, &status);
205 const char *domain, int domain_len, uint32_t option, int mode)
233 converted_ret_len = uidna_IDNToASCII(ustring, ustring_len, converted, MAXPATHLEN, (int32_t)option, &parse_error, &status);
235 converted_ret_len = uidna_IDNToUnicode(ustring, ustring_len, converted, MAXPATHLEN, (int32_t)option, &parse_error, &status);
266 long option = 0, local
273 &domain, &domain_len, &option, &variant, &idna_info) == FAILURE) {
316 domain, domain_len, (uint32_t)option, mode);
321 (uint32_t)option, mode, idna_info);
136 php_intl_idn_to_46(INTERNAL_FUNCTION_PARAMETERS, const char *domain, int domain_len, uint32_t option, int mode, zval *idna_info) argument
204 php_intl_idn_to(INTERNAL_FUNCTION_PARAMETERS, const char *domain, int domain_len, uint32_t option, int mode) argument
/PHP_5_5/ext/mbstring/oniguruma/
H A Dregexec.c1250 OnigOptionType option = reg->options; local
1321 if (IS_FIND_LONGEST(option)) {
1413 if (IS_FIND_CONDITION(option)) {
1414 if (IS_FIND_NOT_EMPTY(option) && s == sstart) {
1418 if (IS_FIND_LONGEST(option) && DATA_ENSURE_CHECK1) {
2311 GET_OPTION_INC(option, p);
2319 GET_OPTION_INC(option, p);
3050 OnigOptionType option)
3081 MATCH_ARG_INIT(msa, option, region, at);
3091 && !IS_POSIX_REGION(option)
3049 onig_match(regex_t* reg, const UChar* str, const UChar* end, const UChar* at, OnigRegion* region, OnigOptionType option) argument
3350 onig_search(regex_t* reg, const UChar* str, const UChar* end, const UChar* start, const UChar* range, OnigRegion* region, OnigOptionType option) argument
[all...]
H A Dregparse.h190 OnigOptionType option; member in struct:__anon265
279 OnigOptionType option; member in struct:__anon274
/PHP_5_5/ext/curl/
H A Dshare.c69 static int _php_curl_share_setopt(php_curlsh *sh, long option, zval **zvalue, zval *return_value TSRMLS_DC) /* {{{ */ argument
73 switch (option) {
77 error = curl_share_setopt(sh->share, option, Z_LVAL_PP(zvalue));
81 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid curl share configuration option");
94 /* {{{ proto bool curl_share_setopt(resource sh, int option, mixed value)
95 Set an option for a cURL transfer */
H A Dmulti.c380 static int _php_curl_multi_setopt(php_curlm *mh, long option, zval **zvalue, zval *return_value TSRMLS_DC) /* {{{ */ argument
384 switch (option) {
392 error = curl_multi_setopt(mh->multi, option, Z_LVAL_PP(zvalue));
396 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid curl multi configuration option");
409 /* {{{ proto int curl_multi_setopt(resource mh, int option, mixed value)
410 Set an option for the curl multi handle */
H A Dinterface.c287 ZEND_ARG_INFO(0, option)
302 ZEND_ARG_INFO(0, option)
336 ZEND_ARG_INFO(0, option)
396 ZEND_ARG_INFO(0, option)
2058 static int _php_curl_setopt(php_curl *ch, long option, zval **zvalue, zval *return_value TSRMLS_DC) /* {{{ */ argument
2062 switch (option) {
2070 error = curl_easy_setopt(ch->cp, option, 2);
2222 if ((option == CURLOPT_PROTOCOLS || option == CURLOPT_REDIR_PROTOCOLS) &&
2229 error = curl_easy_setopt(ch->cp, option, Z_LVAL_P
2877 ulong option; local
2983 long option = 0; local
[all...]
/PHP_5_5/ext/ftp/
H A Dphp_ftp.c233 ZEND_ARG_INFO(0, option)
239 ZEND_ARG_INFO(0, option)
1361 /* {{{ proto bool ftp_set_option(resource stream, int option, mixed value)
1362 Sets an FTP option */
1366 long option; local
1369 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlz", &z_ftp, &option, &z_value) == FAILURE) {
1375 switch (option) {
1399 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown option '%ld'", option);
1406 /* {{{ proto mixed ftp_get_option(resource stream, int option)
1411 long option; local
[all...]
/PHP_5_5/ext/ldap/
H A Dldap.c1550 /* {{{ proto bool ldap_get_option(resource link, int option, mixed retval)
1556 long option; local
1558 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlz", &link, &option, &retval) != SUCCESS) {
1564 switch (option) {
1578 if (ldap_get_option(ld->link, option, &val)) {
1631 if (ldap_get_option(ld->link, option, &val) || val == NULL || *val == '\0') {
1654 /* {{{ proto bool ldap_set_option(resource link, int option, mixed newval)
1661 long option; local
1663 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zlZ", &link, &option, &newval) != SUCCESS) {
1674 switch (option) {
[all...]
/PHP_5_5/ext/pspell/
H A Dpspell.c820 static void pspell_config_path(INTERNAL_FUNCTION_PARAMETERS, char *option) argument
838 pspell_config_replace(config, option, value);
/PHP_5_5/ext/standard/
H A Dsyslog.c128 /* {{{ proto bool openlog(string ident, int option, int facility)
138 long option, facility; local
142 &ident_len, &option, &facility) == FAILURE) {
152 openlog(BG(syslog_device), option, facility); local
H A Dbasic_functions.c2502 ZEND_ARG_INFO(0, option)
4375 /* Prepare the option character and the argument string. */
4394 /* Add this option / argument pair to the result hash. */
4594 Get the value of a PHP configuration option */
4662 2nd arg = error option
4668 1 = send via email to 3rd parameter 4th option = additional headers
4719 php_error_docref(NULL TSRMLS_CC, E_WARNING, "TCP/IP option not available!");
5319 Get a configuration option */
5344 zval *option; local
5354 MAKE_STD_ZVAL(option);
[all...]
H A Dfilestat.c438 int option; local
441 option = PHP_STREAM_META_GROUP;
444 option = PHP_STREAM_META_GROUP_NAME;
450 if(wrapper->wops->stream_metadata(wrapper, filename, option, value, NULL TSRMLS_CC)) {
575 int option; local
578 option = PHP_STREAM_META_OWNER;
581 option = PHP_STREAM_META_OWNER_NAME;
587 if(wrapper->wops->stream_metadata(wrapper, filename, option, value, NULL TSRMLS_CC)) {
/PHP_5_5/main/streams/
H A Dmemory.c243 static int php_stream_memory_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) /* {{{ */ argument
248 switch(option) {
519 static int php_stream_temp_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) /* {{{ */ argument
523 switch(option) {
531 return php_stream_set_option(ts->innerstream, option, value, ptrparam);
H A Dplain_wrapper.c551 static int php_stdiop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) argument
564 switch(option) {
1265 static int php_plain_files_metadata(php_stream_wrapper *wrapper, char *url, int option, void *value, php_stream_context *context TSRMLS_DC) argument
1296 switch(option) {
1313 if(option == PHP_STREAM_META_OWNER_NAME) {
1325 if(option == PHP_STREAM_META_OWNER_NAME) {
1341 php_error_docref1(NULL TSRMLS_CC, url, E_WARNING, "Unknown option %d for stream_metadata", option);
H A Duserspace.c54 static int user_wrapper_metadata(php_stream_wrapper *wrapper, char *url, int option, void *value, php_stream_context *context TSRMLS_DC);
208 function stream_set_option($option, $arg1, $arg2)
210 switch($option) {
958 static int php_userstreamop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) { argument
967 switch (option) {
1081 ZVAL_LONG(zoption, option);
1090 switch(option) {
1364 static int user_wrapper_metadata(php_stream_wrapper *wrapper, char *url, int option, void *value, php_stream_context *context TSRMLS_DC) argument
1374 switch(option) {
1393 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown option
[all...]
H A Dstreams.c1348 PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) argument
1353 ret = stream->ops->set_option(stream, option, value, ptrparam TSRMLS_CC);
1357 switch(option) {
H A Dxp_socket.c51 static int php_tcp_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC);
268 static int php_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) argument
274 switch(option) {
659 spprintf(&xparam->outputs.error_text, 0, "local_addr context option is not a string.");
745 static int php_tcp_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) argument
750 switch(option) {
773 return php_sockop_set_option(stream, option, value, ptrparam TSRMLS_CC);
/PHP_5_5/ext/intl/calendar/
H A Dcalendar_methods.cpp1064 long option; local
1068 "Ol", &object, Calendar_ce_ptr, &option) == FAILURE) {
1074 if (option != UCAL_WALLTIME_FIRST && option != UCAL_WALLTIME_LAST) {
1076 "intlcal_set_repeated_wall_time_option: invalid option", 0 TSRMLS_CC);
1082 co->ucal->setRepeatedWallTimeOption((UCalendarWallTimeOption)option);
1089 long option; local
1093 "Ol", &object, Calendar_ce_ptr, &option) == FAILURE) {
1099 if (option != UCAL_WALLTIME_FIRST && option !
[all...]
/PHP_5_5/ext/filter/
H A Dfilter.c594 zval **option; local
613 if (zend_hash_find(HASH_OF(*filter_args), "filter", sizeof("filter"), (void **)&option) == SUCCESS) {
614 PHP_FILTER_GET_LONG_OPT(option, filter);
617 if (zend_hash_find(HASH_OF(*filter_args), "flags", sizeof("flags"), (void **)&option) == SUCCESS) {
618 PHP_FILTER_GET_LONG_OPT(option, filter_flags);
625 if (zend_hash_find(HASH_OF(*filter_args), "options", sizeof("options"), (void **)&option) == SUCCESS) {
627 if (Z_TYPE_PP(option) == IS_ARRAY) {
628 options = *option;
631 options = *option;
758 zval **option, **op local
839 zval **option; local
[all...]
/PHP_5_5/ext/zip/
H A Dphp_zip.c351 zval **option; local
352 if (zend_hash_find(HASH_OF(options), "remove_all_path", sizeof("remove_all_path"), (void **)&option) == SUCCESS) {
354 if (Z_TYPE_PP(option) != IS_LONG) {
355 zval tmp = **option;
360 opt = Z_LVAL_PP(option);
366 if (zend_hash_find(HASH_OF(options), "remove_path", sizeof("remove_path"), (void **)&option) == SUCCESS) {
367 if (Z_TYPE_PP(option) != IS_STRING) {
368 php_error_docref(NULL TSRMLS_CC, E_WARNING, "remove_path option expected to be a string");
372 if (Z_STRLEN_PP(option) < 1) {
373 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Empty string given as remove_path option");
[all...]
/PHP_5_5/ext/mysqli/
H A Dmysqli_api.c1659 static int mysqli_options_get_option_zval_type(int option) argument
1661 switch (option) {
/PHP_5_5/ext/pgsql/
H A Dpgsql.c955 /* For connection option */
5921 ulong option = 0; local
5926 "rsa|l", &pgsql_link, &table_name, &table_name_len, &values, &option) == FAILURE) {
5929 if (option & ~PGSQL_CONV_OPTS) {
5930 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid option is specified");
5944 if (php_pgsql_convert(pg_link, table_name, values, return_value, option TSRMLS_CC) == FAILURE) {
6089 ulong option = PGSQL_DML_EXEC; local
6094 &pgsql_link, &table, &table_len, &values, &option) == FAILURE) {
6097 if (option & ~(PGSQL_CONV_OPTS|PGSQL_DML_NO_CONV|PGSQL_DML_EXEC|PGSQL_DML_ASYNC|PGSQL_DML_STRING)) {
6098 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid option i
6245 ulong option = PGSQL_DML_EXEC; local
6337 ulong option = PGSQL_DML_EXEC; local
6475 ulong option = PGSQL_DML_EXEC; local
[all...]
/PHP_5_5/ext/mbstring/
H A Dphp_mbregex.c474 static size_t _php_mb_regex_get_option_string(char *str, size_t len, OnigOptionType option, OnigSyntaxType *syntax) argument
481 if ((option & ONIG_OPTION_IGNORECASE) != 0) {
489 if ((option & ONIG_OPTION_EXTEND) != 0) {
497 if ((option & (ONIG_OPTION_MULTILINE | ONIG_OPTION_SINGLELINE)) ==
505 if ((option & ONIG_OPTION_MULTILINE) != 0) {
513 if ((option & ONIG_OPTION_SINGLELINE) != 0) {
521 if ((option & ONIG_OPTION_FIND_LONGEST) != 0) {
528 if ((option & ONIG_OPTION_FIND_NOT_EMPTY) != 0) {
580 _php_mb_regex_init_options(const char *parg, int narg, OnigOptionType *option, OnigSyntaxType **syntax, int *eval) argument
645 if (option !
1140 OnigOptionType option = 0; local
1184 OnigOptionType option; local
1315 OnigOptionType option; local
[all...]
/PHP_5_5/ext/openssl/
H A Dxp_ssl.c142 php_error_docref(NULL TSRMLS_CC, E_WARNING, "SSL_R_NO_SHARED_CIPHER: no suitable shared cipher could be used. This could be because the server is missing an SSL certificate (local_cert context option)");
690 static int php_openssl_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC) argument
696 switch (option) {
774 /* TODO: Async connects need to check the enable_on_connect option when
776 php_stream_socket_ops.set_option(stream, option, value, ptrparam TSRMLS_CC);
805 return php_stream_socket_ops.set_option(stream, option, value, ptrparam TSRMLS_CC);

Completed in 138 milliseconds

12