/PHP-5.6/main/ |
H A D | getopt.c | 58 PHPAPI int php_getopt(int argc, char* const *argv, const opt_struct opts[], char **optarg, int *opt… in php_getopt() argument 112 if (opts[php_optidx].opt_char == '-') { in php_getopt() 115 …} else if (opts[php_optidx].opt_name && !strncmp(&argv[*optind][2], opts[php_optidx].opt_name, arg… in php_getopt() 122 arg_start += strlen(opts[php_optidx].opt_name); in php_getopt() 139 if (opts[php_optidx].opt_char == '-') { in php_getopt() 151 } else if (argv[*optind][optchr] == opts[php_optidx].opt_char) { in php_getopt() 156 if (opts[php_optidx].need_param) { in php_getopt() 164 if (opts[php_optidx].need_param == 1) { in php_getopt() 168 } else if (opts[php_optidx].need_param == 1) { in php_getopt() 179 return opts[php_optidx].opt_char; in php_getopt() [all …]
|
H A D | php_getopt.h | 45 PHPAPI int php_getopt(int argc, char* const *argv, const opt_struct opts[], char **optarg, int *opt…
|
/PHP-5.6/ext/mcrypt/tests/ |
H A D | mcrypt_filters.phpt | 19 $opts = array('iv'=>$iv, 'key'=>$key); 22 stream_filter_append($fp, 'mcrypt.tripledes', STREAM_FILTER_WRITE, $opts); 29 stream_filter_append($fp, 'mdecrypt.tripledes', STREAM_FILTER_READ, $opts);
|
H A D | bug72535.phpt | 13 $opts = array('iv' => $iv, 'key' => $key, 'mode' => 'stream'); 18 stream_filter_append($fp, 'mcrypt.arcfour', STREAM_FILTER_WRITE, $opts);
|
/PHP-5.6/ext/intl/tests/ |
H A D | uconverter_func_subst.phpt | 10 $opts = array('to_subst' => $subst); 11 $ret = UConverter::transcode("This is an ascii string", 'ascii', 'utf-8', $opts); 17 $ret = UConverter::transcode("Snowman: (\xE2\x98\x83)", 'ascii', 'utf-8', $opts);
|
/PHP-5.6/tests/basic/ |
H A D | bug67198.phpt | 26 $opts = array('http' => 34 $context = stream_context_create($opts);
|
/PHP-5.6/ext/ereg/regex/ |
H A D | main.c | 204 try(f0, f1, f2, f3, f4, opts) in try() argument 210 int opts; /* may not match f1 */ 221 char *type = (opts & REG_EXTENDED) ? "ERE" : "BRE"; 228 re.re_endp = (opts®_PEND) ? f0copy + strlen(f0copy) : NULL; 230 err = regcomp(&re, f0copy, opts); 277 } else if (opts®_NOSUB) {
|
H A D | main.ih | 8 void try(char *f0, char *f1, char *f2, char *f3, char *f4, int opts);
|
/PHP-5.6/ext/interbase/ |
H A D | ibase_service.c | 427 long opts = 0; in _php_ibase_backup_restore() local 434 &res, &db, &dblen, &bk, &bklen, &opts, &verbose)) { in _php_ibase_backup_restore() 445 (char)opts,(char)(opts >> 8), (char)(opts >> 16), (char)(opts >> 24)); in _php_ibase_backup_restore()
|
/PHP-5.6/ext/standard/ |
H A D | basic_functions.c | 4191 if ((opts[i] >= 48 && opts[i] <= 57) || 4192 (opts[i] >= 65 && opts[i] <= 90) || 4193 (opts[i] >= 97 && opts[i] <= 122) 4202 while ( (*opts >= 48 && *opts <= 57) || /* 0 - 9 */ 4203 (*opts >= 65 && *opts <= 90) || /* A - Z */ 4204 (*opts >= 97 && *opts <= 122) /* a - z */ 4210 opts++; 4213 opts++; 4299 opts += len; 4329 opts++; [all …]
|
H A D | filters.c | 748 int opts; member 795 int opts; in php_conv_qprint_encode_convert() local 799 opts = inst->opts; in php_conv_qprint_encode_convert() 814 if (!(opts & PHP_CONV_QPRINT_OPT_BINARY) && inst->lbchars != NULL && inst->lbchars_len > 0) { in php_conv_qprint_encode_convert() 848 if (!(opts & PHP_CONV_QPRINT_OPT_BINARY) && in php_conv_qprint_encode_convert() 990 inst->opts = opts; in php_conv_qprint_encode_ctor() 1421 int opts = 0; in php_conv_open() local 1443 opts |= (opt_binary ? PHP_CONV_QPRINT_OPT_BINARY : 0); in php_conv_open() 1444 opts |= (opt_force_encode_first ? PHP_CONV_QPRINT_OPT_FORCE_ENCODE_FIRST : 0); in php_conv_open() 1448 …code_ctor((php_conv_qprint_encode *)retval, line_len, lbchars, lbchars_len, 1, opts, persistent)) { in php_conv_open() [all …]
|
/PHP-5.6/ext/fileinfo/libmagic/ |
H A D | funcs.c | 443 int opts = 0; in file_replace() local 454 opts |= PCRE_MULTILINE; in file_replace() 455 convert_libmagic_pattern(patt, opts); in file_replace()
|
/PHP-5.6/ext/xmlrpc/ |
H A D | xmlrpc-epi-php.c | 790 STRUCT_XMLRPC_REQUEST_INPUT_OPTIONS opts = {{0}}; in decode_request_worker() local 792 …opts.xml_elem_opts.encoding = encoding_in ? utf8_get_encoding_id_from_string(encoding_in) : ENCODI… in decode_request_worker() 795 response = XMLRPC_REQUEST_FromXML(xml_in, xml_in_len, &opts); in decode_request_worker() 1166 XMLRPC_REQUEST_OUTPUT_OPTIONS opts = XMLRPC_RequestGetOutputOptions(xRequest); in PHP_FUNCTION() local 1167 if (opts) { in PHP_FUNCTION() 1168 out.xmlrpc_out.version = opts->version; in PHP_FUNCTION()
|
/PHP-5.6/sapi/continuity/ |
H A D | capi.c | 473 int phpFservice(httpTtrans * t, lstTset * opts) in phpFservice() argument
|
/PHP-5.6/ext/fileinfo/ |
H A D | libmagic.patch | 2104 + int opts = 0; 2132 + opts |= PCRE_MULTILINE; 2133 + convert_libmagic_pattern(patt, opts);
|
/PHP-5.6/ |
H A D | ltmain.sh | 5842 opts=
|