Home
last modified time | relevance | path

Searched refs:config (Results 1 – 25 of 285) sorted by relevance

12345678910>>...12

/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_conf.c745 if (wp->config->prefix && *wp->config->prefix) { in fpm_conf_process_all_pools()
791 struct fpm_worker_pool_config_s *config = wp->config; in fpm_conf_process_all_pools() local
815config->pm_start_servers = config->pm_min_spare_servers + ((config->pm_max_spare_servers - config-… in fpm_conf_process_all_pools()
818 …} else if (config->pm_start_servers < config->pm_min_spare_servers || config->pm_start_servers > c… in fpm_conf_process_all_pools()
919 if (wp->config->slowlog && *wp->config->slowlog) { in fpm_conf_process_all_pools()
941 if (wp->config->slowlog && *wp->config->slowlog) { in fpm_conf_process_all_pools()
962 if (wp->config->chroot && *wp->config->chroot) { in fpm_conf_process_all_pools()
978 if (wp->config->chdir && *wp->config->chdir) { in fpm_conf_process_all_pools()
1091config->listen_address && *wp->config->listen_address && wp2->config->listen_address && *wp2->conf… in fpm_conf_process_all_pools()
1359 config = current_wp->config; in fpm_conf_ini_parser_entry()
[all …]
H A Dfpm_unix.c81 if (wp->config->user && *wp->config->user) { in fpm_unix_conf_wp()
82 if (strlen(wp->config->user) == strspn(wp->config->user, "0123456789")) { in fpm_unix_conf_wp()
101 if (wp->config->group && *wp->config->group) { in fpm_unix_conf_wp()
102 if (strlen(wp->config->group) == strspn(wp->config->group, "0123456789")) { in fpm_unix_conf_wp()
123 if (wp->config->user && *wp->config->user) { in fpm_unix_conf_wp()
126 if (wp->config->group && *wp->config->group) { in fpm_unix_conf_wp()
129 if (wp->config->chroot && *wp->config->chroot) { in fpm_unix_conf_wp()
152 if (wp->config->rlimit_files) { in fpm_unix_init_child()
162 if (wp->config->rlimit_core) { in fpm_unix_init_child()
172 if (is_root && wp->config->chroot && *wp->config->chroot) { in fpm_unix_init_child()
[all …]
H A Dfpm_process_ctl.c158 child->wp->config->name, signo, in fpm_pctl_kill_all()
298 int slowlog_timeout = wp->config->request_slowlog_timeout; in fpm_pctl_check_request_timeout()
322 if (wp->config == NULL) continue; in fpm_pctl_perform_idle_server_maintenance()
359 if (wp->config->pm == PM_STYLE_ONDEMAND) { in fpm_pctl_perform_idle_server_maintenance()
377 if (wp->config->pm != PM_STYLE_DYNAMIC) continue; in fpm_pctl_perform_idle_server_maintenance()
388 if (idle < wp->config->pm_min_spare_servers) { in fpm_pctl_perform_idle_server_maintenance()
389 if (wp->running_children >= wp->config->pm_max_children) { in fpm_pctl_perform_idle_server_maintenance()
392 …reached pm.max_children setting (%d), consider raising it", wp->config->name, wp->config->pm_max_c… in fpm_pctl_perform_idle_server_maintenance()
411 …reached pm.max_children setting (%d), consider raising it", wp->config->name, wp->config->pm_max_c… in fpm_pctl_perform_idle_server_maintenance()
512 if (wp->running_children >= wp->config->pm_max_children) { in fpm_pctl_on_socket_accept()
[all …]
H A Dfpm.c30 .config = NULL,
45 int fpm_init(int argc, char **argv, char *config, char *prefix, char *pid, int test_conf, int run_a… in fpm_init() argument
49 if (config && *config) { in fpm_init()
50 fpm_globals.config = strdup(config); in fpm_init()
/PHP-5.5/ext/pdo_oci/tests/
H A Dcommon.phpt9 $config = array(
16 $config['ENV']['PDOTEST_DSN'] = getenv('PDO_OCI_TEST_DSN');
17 $config['ENV']['PDOTEST_USER'] = getenv('PDO_OCI_TEST_USER');
18 $config['ENV']['PDOTEST_PASS'] = getenv('PDO_OCI_TEST_PASS');
19 $config['ENV']['PDOTEST_ATTR'] = getenv('PDO_OCI_TEST_ATTR');
21 $config['ENV']['PDOTEST_DSN'] = 'oci:dbname=localhost/xe;charset=WE8MSWIN1252';
22 $config['ENV']['PDOTEST_USER'] = 'SYSTEM';
23 $config['ENV']['PDOTEST_PASS'] = 'oracle';
26 return $config;
/PHP-5.5/ext/pdo_firebird/tests/
H A Dcommon.phpt9 $config = array(
16 $config['ENV']['PDOTEST_DSN'] = getenv('PDO_FIREBIRD_TEST_DSN');
17 $config['ENV']['PDOTEST_USER'] = getenv('PDO_FIREBIRD_TEST_USER');
18 $config['ENV']['PDOTEST_PASS'] = getenv('PDO_FIREBIRD_TEST_PASS');
20 $config['ENV']['PDOTEST_ATTR'] = getenv('PDO_FIREBIRD_TEST_ATTR');
23 $config['ENV']['PDOTEST_DSN'] = 'firebird:dbname=/opt/firebird/test.gdb';
24 $config['ENV']['PDOTEST_USER'] = 'SYSDBA';
25 $config['ENV']['PDOTEST_PASS'] = 'password';
27 return $config;
/PHP-5.5/ext/pdo_mysql/tests/
H A Dcommon.phpt10 $config = array(
16 $config['ENV']['PDOTEST_DSN'] = getenv('PDO_MYSQL_TEST_DSN');
17 $config['ENV']['PDOTEST_USER'] = getenv('PDO_MYSQL_TEST_USER');
18 $config['ENV']['PDOTEST_PASS'] = getenv('PDO_MYSQL_TEST_PASS');
20 $config['ENV']['PDOTEST_ATTR'] = getenv('PDO_MYSQL_TEST_ATTR');
23 $config['ENV']['PDOTEST_DSN'] = 'mysql:host=localhost;dbname=test';
24 $config['ENV']['PDOTEST_USER'] = 'root';
25 $config['ENV']['PDOTEST_PASS'] = '';
28 return $config;
H A Dconfig.inc6 $config['ENV']['PDOTEST_DSN'] = getenv('PDO_MYSQL_TEST_DSN');
7 $config['ENV']['PDOTEST_USER'] = getenv('PDO_MYSQL_TEST_USER');
8 $config['ENV']['PDOTEST_PASS'] = getenv('PDO_MYSQL_TEST_PASS');
10 $config['ENV']['PDOTEST_ATTR'] = getenv('PDO_MYSQL_TEST_ATTR');
13 $config['ENV']['PDOTEST_DSN'] = 'mysql:host=localhost;dbname=test';
14 $config['ENV']['PDOTEST_USER'] = 'root';
15 $config['ENV']['PDOTEST_PASS'] = '';
18 foreach ($config['ENV'] as $k => $v) {
28 …alse !== getenv('PDO_MYSQL_TEST_DSN')) ? getenv('PDO_MYSQL_TEST_DSN') : $config['ENV']['PDOTEST_DS…
29 …se !== getenv('PDO_MYSQL_TEST_USER')) ? getenv('PDO_MYSQL_TEST_USER') : $config['ENV']['PDOTEST_US…
[all …]
/PHP-5.5/ext/pspell/
H A Dpspell.c94 ZEND_ARG_INFO(0, config)
278 PspellConfig *config; in PHP_FUNCTION() local
375 PspellConfig *config; in PHP_FUNCTION() local
468 PspellConfig *config; in PHP_FUNCTION() local
689 PspellConfig *config; in PHP_FUNCTION() local
757 PspellConfig *config; in PHP_FUNCTION() local
777 PspellConfig *config; in PHP_FUNCTION() local
805 PspellConfig *config; in PHP_FUNCTION() local
826 PspellConfig *config; in pspell_config_path() local
875 PspellConfig *config; in PHP_FUNCTION() local
[all …]
/PHP-5.5/scripts/
H A DMakefile.frag21 config.guess \
22 config.sub
24 bin_SCRIPTS = phpize php-config
25 man_PAGES = phpize php-config
34 install-programs: $(builddir)/phpize $(builddir)/php-config
48 $(builddir)/phpize: $(srcdir)/phpize.in $(top_builddir)/config.status
49 (CONFIG_FILES=$@ CONFIG_HEADERS= $(top_builddir)/config.status)
51 $(builddir)/php-config: $(srcdir)/php-config.in $(top_builddir)/config.status
52 (CONFIG_FILES=$@ CONFIG_HEADERS= $(top_builddir)/config.status)
/PHP-5.5/ext/mbstring/oniguruma/win32/
H A DMakefile67 Makefile.in configure.in config.h.in configure \
85 $(CP) win32\config.h config.h
97 regparse.obj: regparse.c $(onigheaders) config.h st.h
98 regext.obj: regext.c $(onigheaders) config.h
99 regtrav.obj: regtrav.c $(onigheaders) config.h
100 regcomp.obj: regcomp.c $(onigheaders) config.h
104 regenc.obj: regenc.c regenc.h oniguruma.h config.h
106 regversion.obj: regversion.c oniguruma.h config.h
108 regposerr.obj: regposerr.c $(posixheaders) config.h
109 st.obj: st.c regint.h oniguruma.h config.h st.h
[all …]
/PHP-5.5/sapi/apache2filter/
H A Dapache_config.c47 HashTable config; member
131 zend_hash_copy(&n->config, &e->config, NULL, NULL, sizeof(php_dir_entry)); in merge_php_config()
134 for (zend_hash_internal_pointer_reset(&d->config); in merge_php_config()
135 zend_hash_get_current_key_ex(&d->config, &str, &str_len, in merge_php_config()
137 zend_hash_move_forward(&d->config)) { in merge_php_config()
139 zend_hash_get_current_data(&d->config, (void **) &data); in merge_php_config()
169 for (zend_hash_internal_pointer_reset(&d->config); in apply_config()
172 zend_hash_move_forward(&d->config)) { in apply_config()
173 zend_hash_get_current_data(&d->config, (void **) &data); in apply_config()
196 zend_hash_destroy(&d->config); in destroy_php_config()
[all …]
/PHP-5.5/sapi/apache2handler/
H A Dapache_config.c47 HashTable config; member
151 zend_hash_copy(&n->config, &d->config, NULL, NULL, sizeof(php_dir_entry)); in merge_php_config()
154 …zend_hash_merge_ex(&n->config, &e->config, NULL, sizeof(php_dir_entry), (merge_checker_func_t) sho… in merge_php_config()
156 for (zend_hash_internal_pointer_reset(&d->config); in merge_php_config()
157 zend_hash_get_current_key_ex(&d->config, &str, &str_len, in merge_php_config()
159 zend_hash_move_forward(&d->config)) { in merge_php_config()
161 zend_hash_get_current_data(&d->config, (void **) &data); in merge_php_config()
191 for (zend_hash_internal_pointer_reset(&d->config); in apply_config()
194 zend_hash_move_forward(&d->config)) { in apply_config()
219 zend_hash_destroy(&d->config); in destroy_php_config()
[all …]
/PHP-5.5/ext/pdo_pgsql/tests/
H A Dcommon.phpt8 # Also update config.inc if you make changes here...
10 $config = array(
16 $config['ENV']['PDOTEST_DSN'] = getenv('PDO_PGSQL_TEST_DSN');
18 $config['ENV']['PDOTEST_ATTR'] = getenv('PDO_PGSQL_TEST_ATTR');
21 $config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=root password=';
24 return $config;
H A Dconfig.inc4 $config['ENV']['PDOTEST_DSN'] = getenv('PDO_PGSQL_TEST_DSN');
6 $config['ENV']['PDOTEST_ATTR'] = getenv('PDO_PGSQL_TEST_ATTR');
9 $config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=root password=';
12 foreach ($config['ENV'] as $k => $v) {
/PHP-5.5/Zend/tests/
H A Dbug53748.phpt8 abstract protected function __construct($config);
9 public static function getInstance($config) {
10 if (!isset(self::$instances[$serialize = serialize($config)])) {
11 self::$instances[$serialize] = new self($config);
19 public function __construct($config)
21 var_dump( $config);
/PHP-5.5/ext/phar/tests/cache_list/files/
H A Dblog.phar1 <?php if(file_exists(dirname(__FILE__) . "/files/config.xml")) {
2 Phar::mount("config.xml", dirname(__FILE__) . "/files/config.xml");
6 …��7Hv���r�%�������� ���install.php����7H���2���������<?php if (!file_exists("config.xml")) {
10 var_dump(file_get_contents("config.xml"));
H A Dblog.phar.inc7 $phar->setStub('<?php if(file_exists(dirname(__FILE__) . "/files/config.xml")) {
8 Phar::mount("config.xml", dirname(__FILE__) . "/files/config.xml");
12 $phar['index.php'] = '<?php if (!file_exists("config.xml")) {
16 var_dump(file_get_contents("config.xml"));
/PHP-5.5/ext/phar/tests/files/
H A Dblog.phar3 if(file_exists(dirname(__FILE__) . "/files/config.xml")) {
4 Phar::mount("config.xml", dirname(__FILE__) . "/files/config.xml");
8 …���?2�I����坙�������� ���install.php���?2�I���2���������<?php if (!file_exists("config.xml")) {
12 var_dump(str_replace("\r\n", "\n", file_get_contents("config.xml")));
H A Dblog.phar.inc9 if(file_exists(dirname(__FILE__) . "/files/config.xml")) {
10 Phar::mount("config.xml", dirname(__FILE__) . "/files/config.xml");
14 $phar['index.php'] = '<?php if (!file_exists("config.xml")) {
18 var_dump(str_replace("\r\n", "\n", file_get_contents("config.xml")));
/PHP-5.5/scripts/dev/
H A Dphpextdist7 phpize=`php-config --prefix`/bin/phpize
10 if test ! -f Makefile.in || test ! -f config.m4; then
15 rm -rf modules *.lo *.o *.la config.status config.cache \
16 config.log libtool php_config.h config_vars.mk Makefile
/PHP-5.5/ext/pdo_odbc/tests/
H A Dcommon.phpt15 $config = array(
31 $config['ENV']['PDOTEST_DSN'] = getenv('PDOTEST_DSN');
32 $config['ENV']['PDOTEST_USER'] = getenv('PDOTEST_USER');
33 $config['ENV']['PDOTEST_PASS'] = getenv('PDOTEST_PASS');
35 $config['ENV']['PDOTEST_ATTR'] = getenv('PDOTEST_ATTR');
39 $config['ENV']['PDOTEST_DSN'] = getenv('PDO_ODBC_TEST_DSN');
40 $config['ENV']['PDOTEST_USER'] = getenv('PDO_ODBC_TEST_USER');
41 $config['ENV']['PDOTEST_PASS'] = getenv('PDO_ODBC_TEST_PASS');
63 } // else: $config['ENV']['PDOTEST_DSN'] not set
64 } // else: $config['ENV']['PDOTEST_DSN'] not set
[all …]
/PHP-5.5/ext/phar/tests/
H A Dbug65028.phpt43 "modules/cmt/setup/config.xml",
45 "modules/meta/setup/config.xml",
51 "modules/brd/setup/config.xml",
53 "modules/auth/setup/config.xml",
56 "modules/bwd/setup/config.xml",
61 "modules/nws/setup/config.xml",
66 "modules/gmp/setup/config.xml",
71 "modules/mul/setup/config.xml",
77 "modules/cat/setup/config.xml",
85 "modules/sty/setup/config.xml",
[all …]
/PHP-5.5/ext/dom/tests/
H A DDOMDocument_config_basic.phpt2 Tests DOMDocument::config read
14 $test = $dom->config;
15 echo "Read config:\n";
24 Read config:
/PHP-5.5/ext/opcache/tests/
H A D001_cli.phpt10 $config = opcache_get_configuration();
12 var_dump($config["directives"]["opcache.enable"]);
13 var_dump($config["directives"]["opcache.enable_cli"]);

Completed in 66 milliseconds

12345678910>>...12