| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | main.c | 201 == void try(char *f0, char *f1, char *f2, char *f3, char *f4, int opts); 204 try(f0, f1, f2, f3, f4, opts) 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_TRUNK/ |
| H A D | ltmain.sh | 5842 opts=
|
| /PHP_TRUNK/ext/interbase/ |
| H A D | ibase_service.c | 429 long opts = 0; local 436 &res, &db, &dblen, &bk, &bklen, &opts, &verbose)) { 447 (char)opts,(char)(opts >> 8), (char)(opts >> 16), (char)(opts >> 24));
|
| /PHP_TRUNK/ext/xmlrpc/ |
| H A D | xmlrpc-epi-php.c | 781 STRUCT_XMLRPC_REQUEST_INPUT_OPTIONS opts = {{0}}; local 783 opts.xml_elem_opts.encoding = encoding_in ? utf8_get_encoding_id_from_string(encoding_in) : ENCODING_DEFAULT; 786 response = XMLRPC_REQUEST_FromXML(xml_in, xml_in_len, &opts); 1157 XMLRPC_REQUEST_OUTPUT_OPTIONS opts = XMLRPC_RequestGetOutputOptions(xRequest); local 1158 if (opts) { 1159 out.xmlrpc_out.version = opts->version;
|
| /PHP_TRUNK/main/ |
| H A D | getopt.c | 58 PHPAPI int php_getopt(int argc, char* const *argv, const opt_struct opts[], char **optarg, int *optind, int show_err, int arg_start) /* {{{ */ argument 104 if (opts[php_optidx].opt_char == '-') { 107 } else if (opts[php_optidx].opt_name && !strncmp(&argv[*optind][2], opts[php_optidx].opt_name, arg_end) && arg_end == strlen(opts[php_optidx].opt_name)) { 114 arg_start += strlen(opts[php_optidx].opt_name); 131 if (opts[php_optidx].opt_char == '-') { 143 } else if (argv[*optind][optchr] == opts[php_optidx].opt_char) { 148 if (opts[php_optidx].need_param) { 156 if (opts[php_optid [all...] |
| H A D | php_getopt.h | 43 /* holds the index of the latest fetched element from the opts array */ 45 PHPAPI int php_getopt(int argc, char* const *argv, const opt_struct opts[], char **optarg, int *optind, int show_err, int arg_start);
|
| /PHP_TRUNK/sapi/continuity/ |
| H A D | capi.c | 473 int phpFservice(httpTtrans * t, lstTset * opts) argument
|
| /PHP_TRUNK/ext/fileinfo/libmagic/ |
| H A D | funcs.c | 445 int opts = 0; local 454 opts |= PCRE_MULTILINE; 455 convert_libmagic_pattern(patt, opts);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | basic_functions.c | 669 ZEND_ARG_INFO(0, opts) /* ARRAY_INFO(0, opts, 1) */ 4201 static int parse_opts(char * opts, opt_struct ** result) argument 4206 for (i = 0; i < strlen(opts); i++) { 4207 if ((opts[i] >= 48 && opts[i] <= 57) || 4208 (opts[i] >= 65 && opts[i] <= 90) || 4209 (opts[i] >= 97 && opts[ 4250 opt_struct *opts, *orig_opts; local [all...] |
| H A D | filters.c | 748 int opts; member in struct:_php_conv_qprint_encode 795 int opts; local 799 opts = inst->opts; 814 if (!(opts & PHP_CONV_QPRINT_OPT_BINARY) && inst->lbchars != NULL && inst->lbchars_len > 0) { 848 if (!(opts & PHP_CONV_QPRINT_OPT_BINARY) && 907 } else if ((!(opts & PHP_CONV_QPRINT_OPT_FORCE_ENCODE_FIRST) || line_ccnt < inst->line_len) && ((c >= 33 && c <= 60) || (c >= 62 && c <= 126))) { 971 static php_conv_err_t php_conv_qprint_encode_ctor(php_conv_qprint_encode *inst, unsigned int line_len, const char *lbchars, size_t lbchars_len, int lbchars_dup, int opts, int persistent) argument 988 inst->opts = opts; 1419 int opts = 0; local [all...] |