Searched refs:optname (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_4/win32/build/ |
| H A D | confutils.js | 196 function ConfigureArg(type, optname, helptext, defval)
201 this.arg = "--" + opptype + "-" + optname;
202 this.imparg = "--" + type + "-" + optname;
204 this.arg = "--" + type + "-" + optname;
205 this.imparg = "--" + opptype + "-" + optname;
208 this.optname = optname;
211 this.symval = optname.toUpperCase().replace(new RegExp("-", "g"), "_");
216 function ARG_WITH(optname, helptext, defval)
218 configure_args[configure_args.length] = new ConfigureArg("with", optname, helptex [all...] |
| /PHP_5_4/ext/pdo/ |
| H A D | pdo.c | 270 if (0 == strncmp(data_source + optstart, parsed[j].optname, nlen) && parsed[j].optname[nlen] == '\0') {
|
| H A D | php_pdo_driver.h | 640 const char *optname; member in struct:pdo_data_src_parser
|
| /PHP_5_4/ext/standard/ |
| H A D | basic_functions.c | 4192 char *optname; local 4326 optname = opts[php_optidx].opt_name; 4332 optname = opt; 4344 optname_len = strlen(optname); 4345 if (!(optname_len > 1 && optname[0] == '0') && is_numeric_string(optname, optname_len, NULL, NULL, 0) == IS_LONG) { 4347 int optname_int = atoi(optname); 4358 if (zend_hash_find(HASH_OF(return_value), optname, strlen(optname)+1, (void **)&args) != FAILURE) { 4364 zend_hash_add(HASH_OF(return_value), optname, strle local [all...] |
| /PHP_5_4/ext/tidy/ |
| H A D | tidy.c | 328 ZEND_ARG_INFO(0, optname) 493 static int _php_tidy_set_tidy_opt(TidyDoc doc, char *optname, zval *value TSRMLS_DC) argument 495 TidyOption opt = tidyGetOptionByName(doc, optname); 499 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Unknown Tidy Configuration Option '%s'", optname); 504 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Attempting to set read-only option '%s'", optname); 1366 /* {{{ proto string tidy_get_opt_doc(tidy resource, string optname) 1371 char *optval, *optname; local 1378 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &optname, &optname_len) == FAILURE) { 1382 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, NULL, "Os", &object, tidy_ce_doc, &optname, &optname_len) == FAILURE) { 1389 opt = tidyGetOptionByName(obj->ptdoc->doc, optname); 1530 char *optname; local [all...] |
| /PHP_5_4/ext/sockets/ |
| H A D | sockets.c | 247 ZEND_ARG_INFO(0, optname) 253 ZEND_ARG_INFO(0, optname) 1982 /* {{{ proto mixed socket_get_option(resource socket, int level, int optname) U 1995 long level, optname; local 1997 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rll", &arg1, &level, &optname) == FAILURE) { 2004 switch (optname) { 2009 if (getsockopt(php_sock->bsd_socket, level, optname, (char*)&if_addr, &optlen) != 0) { 2023 switch(optname) { 2027 if (getsockopt(php_sock->bsd_socket, level, optname, (char*)&linger_val, &optlen) != 0) { 2042 if (getsockopt(php_sock->bsd_socket, level, optname, (cha 2080 php_do_mcast_opt(php_socket *php_sock, int level, int optname, zval **arg4 TSRMLS_DC) argument 2189 long level, optname; local [all...] |
Completed in 36 milliseconds