/php-src/ext/opcache/tests/jit/ |
H A D | fetch_dim_func_args_001.phpt | 14 public function change(array $config) { 15 $config['keys'] = array_keys($config["a"]);;
|
/php-src/scripts/ |
H A D | phpize.m4 | 14 AC_CONFIG_SRCDIR([config.m4]) 18 PHP_CONFIG_NICE([config.nice]) 47 dnl Find php-config script. 48 PHP_ARG_WITH([php-config],, 49 [AS_HELP_STRING([--with-php-config=PATH], 50 [Path to php-config [php-config]])], 51 [php-config], 63 [AC_MSG_ERROR([Cannot find php-config. Please use --with-php-config=PATH])]) 133 sinclude(config.m4) 196 AC_CONFIG_HEADERS([config.h]) [all …]
|
H A D | Makefile.frag | 23 build/config.guess \ 24 build/config.sub 26 bin_SCRIPTS = phpize php-config 27 man_PAGES = phpize php-config
|
/php-src/ext/openssl/tests/ |
H A D | openssl_csr_new_with_attribs.phpt | 17 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl_csr_attribs.cnf'; 19 $config_arg = array('config' => $config); 26 "config" => $config,
|
H A D | openssl_csr_sign_with_serial_hex.phpt | 7 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'; 8 $config_arg = array('config' => $config); 23 "config" => $config
|
H A D | openssl_csr_get_public_key_basic.phpt | 11 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'; 34 "config" => $config,
|
H A D | openssl_csr_sign_basic.phpt | 15 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'; 16 $config_arg = array('config' => $config); 31 "config" => $config
|
H A D | bug50293.phpt | 9 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'; 24 "config" => $config
|
/php-src/ext/pdo_odbc/tests/ |
H A D | pdoodbc_001.phpt | 14 $config = PDOTest::get_config(__DIR__ . "/common.phpt"); 15 $db = new Pdo\Odbc($config['ENV']['PDOTEST_DSN'], $config['ENV']['PDOTEST_USER'], $config['ENV']['P…
|
H A D | pdoodbc_002.phpt | 14 $config = PDOTest::get_config(__DIR__ . "/common.phpt"); 15 $db = Pdo\Odbc::connect($config['ENV']['PDOTEST_DSN'], $config['ENV']['PDOTEST_USER'], $config['ENV…
|
/php-src/ext/pdo_pgsql/tests/ |
H A D | gh12423.phpt | 8 require __DIR__ . '/config.inc'; 9 if (strpos($config['ENV']['PDOTEST_DSN'], 'password=') === false && !isset($config['ENV']['PDOTEST_… 16 require __DIR__ . '/config.inc'; 18 $dsnWithCredentials = $config['ENV']['PDOTEST_DSN']; 19 $user = $config['ENV']['PDOTEST_USER'] ?? null; 20 $password = $config['ENV']['PDOTEST_PASS'] ?? null;
|
H A D | pdopgsql_003.phpt | 7 require __DIR__ . '/config.inc'; 14 require_once __DIR__ . "/config.inc"; 16 $db = Pdo::connect($config['ENV']['PDOTEST_DSN']);
|
H A D | pdopgsql_001.phpt | 7 require __DIR__ . '/config.inc'; 14 require_once __DIR__ . "/config.inc"; 16 $db = new Pdo\Pgsql($config['ENV']['PDOTEST_DSN']);
|
/php-src/sapi/fpm/fpm/ |
H A D | fpm_scoreboard.c | 46 if (wp->config->pm_max_children < 1) { in fpm_scoreboard_init_main() 47 …RROR, "[pool %s] Unable to create scoreboard SHM because max_client is not set", wp->config->name); in fpm_scoreboard_init_main() 52 …OG_ERROR, "[pool %s] Unable to create scoreboard SHM because it already exists", wp->config->name); in fpm_scoreboard_init_main() 56 scoreboard_procs_size = sizeof(struct fpm_scoreboard_proc_s) * wp->config->pm_max_children; in fpm_scoreboard_init_main() 63 wp->scoreboard->pm = wp->config->pm; in fpm_scoreboard_init_main() 64 wp->scoreboard->nprocs = wp->config->pm_max_children; in fpm_scoreboard_init_main() 66 strlcpy(wp->scoreboard->pool, wp->config->name, sizeof(wp->scoreboard->pool)); in fpm_scoreboard_init_main() 229 unsigned int nprocs = wp->config->pm_max_children; in fpm_scoreboard_proc_get_from_child() 355 scoreboard_procs_size = sizeof(struct fpm_scoreboard_proc_s) * wp->config->pm_max_children; in fpm_scoreboard_free() 385 if (child_index < 0 || child_index >= wp->config->pm_max_children) { in fpm_scoreboard_proc_free() [all …]
|
H A D | fpm_worker_pool.c | 31 if (wp->config) { in fpm_worker_pool_free() 32 free(wp->config); in fpm_worker_pool_free() 57 fpm_worker_pool_config_free(wp->config); in fpm_worker_pool_cleanup()
|
H A D | fpm_children.c | 190 fpm_globals.max_requests = wp->config->pm_max_requests; in fpm_child_init() 202 zlog(ZLOG_ERROR, "[pool %s] child failed to initialize", wp->config->name); in fpm_child_init() 300 …zlog(severity, "[pool %s] child %d exited %s after %ld.%06d seconds from start", wp->config->name,… in fpm_children_bury() 357 zlog(ZLOG_ERROR, "[pool %s] unable to malloc new child", wp->config->name); in fpm_resources_prepare() 417 if (wp->config->pm == PM_STYLE_DYNAMIC) { in fpm_children_make() 419 max = wp->config->pm_start_servers; in fpm_children_make() 423 } else if (wp->config->pm == PM_STYLE_ONDEMAND) { in fpm_children_make() 430 max = wp->config->pm_max_children; in fpm_children_make() 479 …zlog(is_debug ? ZLOG_DEBUG : ZLOG_NOTICE, "[pool %s] child %d started", wp->config->name, (int) pi… in fpm_children_make() 497 if (wp->config->pm == PM_STYLE_ONDEMAND) { in fpm_children_create_initial() [all …]
|
/php-src/ext/pdo_dblib/tests/ |
H A D | pdodblib_001.phpt | 7 require __DIR__ . '/config.inc'; 13 require __DIR__ . '/config.inc'; 27 require __DIR__ . '/config.inc';
|
H A D | pdodblib_002.phpt | 7 require __DIR__ . '/config.inc'; 13 require __DIR__ . '/config.inc'; 31 require __DIR__ . '/config.inc';
|
H A D | dbversion.phpt | 7 require __DIR__ . '/config.inc'; 12 require __DIR__ . '/config.inc';
|
H A D | bug_47588.phpt | 7 require __DIR__ . '/config.inc'; 12 require __DIR__ . '/config.inc'; 23 require __DIR__ . '/config.inc';
|
H A D | dbtds.phpt | 7 require __DIR__ . '/config.inc'; 12 require __DIR__ . '/config.inc';
|
/php-src/ext/snmp/ |
H A D | config.m4 | 6 customize where to look for the net-snmp-config utility of the NET-SNMP 16 [AC_PATH_PROG([SNMP_CONFIG], [net-snmp-config],, [/usr/local/bin:$PATH])], 17 [SNMP_CONFIG="$PHP_SNMP/bin/net-snmp-config"]) 21 Could not find net-snmp-config binary. Please check your net-snmp 72 #include <net-snmp/net-snmp-config.h> 82 #include <net-snmp/net-snmp-config.h>
|
/php-src/ext/tidy/tests/ |
H A D | 031.phpt | 10 $config = array('doctype' => 'php'); 12 $tidy = tidy_parse_string($buffer, $config);
|
H A D | 034.phpt | 10 $config = array( 13 $tidy = tidy_parse_string($buffer, $config);
|
/php-src/ext/standard/tests/streams/ |
H A D | gh15937.phpt | 7 $config = [ 12 $ctx = stream_context_create($config);
|