Home
last modified time | relevance | path

Searched refs:pool (Results 1 – 25 of 35) sorted by relevance

12

/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_block_alloc.c34 if (ptr == pool->last) { in mysqlnd_mempool_free_chunk()
39 pool->arena->ptr = (char*)ptr; in mysqlnd_mempool_free_chunk()
40 pool->last = NULL; in mysqlnd_mempool_free_chunk()
56 if (ptr == pool->last in mysqlnd_mempool_resize_chunk()
69 pool->last = ptr = new_ptr; in mysqlnd_mempool_resize_chunk()
83 pool->last = ptr; in mysqlnd_mempool_get_chunk()
127 pool->checkpoint = zend_arena_checkpoint(pool->arena); in mysqlnd_mempool_save_state()
140 if (pool->checkpoint) { in mysqlnd_mempool_restore_state()
141 zend_arena_release(&pool->arena, pool->checkpoint); in mysqlnd_mempool_restore_state()
142 pool->last = NULL; in mysqlnd_mempool_restore_state()
[all …]
H A Dmysqlnd_block_alloc.h24 PHPAPI void mysqlnd_mempool_destroy(MYSQLND_MEMORY_POOL * pool);
25 PHPAPI void mysqlnd_mempool_save_state(MYSQLND_MEMORY_POOL * pool);
26 PHPAPI void mysqlnd_mempool_restore_state(MYSQLND_MEMORY_POOL * pool);
H A Dmysqlnd_result.c1926 MYSQLND_MEMORY_POOL * pool; in mysqlnd_result_init() local
1932 if (!pool) { in mysqlnd_result_init()
1936 ret = pool->get_chunk(pool, alloc_size); in mysqlnd_result_init()
1939 ret->memory_pool = pool; in mysqlnd_result_init()
1943 mysqlnd_mempool_save_state(pool); in mysqlnd_result_init()
1960 ret = pool->get_chunk(pool, alloc_size); in mysqlnd_result_unbuffered_init()
1963 ret->lengths = pool->get_chunk(pool, field_count * sizeof(size_t)); in mysqlnd_result_unbuffered_init()
1994 ret = pool->get_chunk(pool, alloc_size); in mysqlnd_result_buffered_zval_init()
2001 ret->lengths = pool->get_chunk(pool, field_count * sizeof(size_t)); in mysqlnd_result_buffered_zval_init()
2035 ret = pool->get_chunk(pool, alloc_size); in mysqlnd_result_buffered_c_init()
[all …]
/PHP-7.4/sapi/fpm/tests/
H A Dlogtool.inc8 const P_PREFIX = '\[pool unconfined\] child \d+ said into stderr: ';
9 const P_PREFIX_STDOUT = '\[pool unconfined\] child \d+ said into stdout: ';
354 * @param string|null $pool
362 if ($pool !== null) {
363 $expectedMessage = '\[pool ' . $pool . '\] ' . $expectedMessage;
385 * @param string|null $pool
390 return $this->expectEntry(self::DEBUG, $line, $expectedMessage, $pool);
396 * @param string|null $pool
407 * @param string|null $pool
418 * @param string|null $pool
[all …]
H A Dtester.inc919 * Create pool config templates.
993 $pool = $matches[2] ?? 'default';
999 $varValue[] = $pool;
1008 * @param string $pool
1033 * @param string $pool
1336 * @param string|null $pool The pool for pool prefixed log entry
1354 * @param string|null $pool
1367 * @param string|null $pool
1380 * @param string|null $pool
1393 * @param string|null $pool
[all …]
H A Dstatus-basic.phpt21 'pool' => 'unconfined',
H A Dbug80024-socket-reduced-inherit.phpt2 FPM: bug80024 - Duplication of info about inherited socket after pool removing
H A Dbug76601-reload-child-signals.phpt39 …* [22-Oct-2019 03:28:19.532703] DEBUG: pid 21315, fpm_pctl_kill_all(), line 161: [pool unconfi…
40 …* [22-Oct-2019 03:28:19.533471] DEBUG: pid 21315, fpm_children_bury(), line 259: [pool unconfi…
H A Dfpm_get_status_basic.phpt43 ["pool"]=>
/PHP-7.4/sapi/apache2handler/
H A Dsapi_apache2.c155 ctx->r->status_line = apr_pstrdup(ctx->r->pool, sline + 9); in php_apache_sapi_send_headers()
167 ap_set_content_type(ctx->r, apr_pstrdup(ctx->r->pool, ctx->content_type)); in php_apache_sapi_send_headers()
461 apr_pool_userdata_get(&data, userdata_key, s->process->pool); in php_apache_server_startup()
509 SG(request_info).query_string = apr_pstrdup(r->pool, r->args); in php_apache_request_ctor()
512 SG(request_info).request_uri = apr_pstrdup(r->pool, r->uri); in php_apache_request_ctor()
513 SG(request_info).path_translated = apr_pstrdup(r->pool, r->filename); in php_apache_request_ctor()
535 ctx->r->user = apr_pstrdup(ctx->r->pool, SG(request_info).auth_user); in php_apache_request_ctor()
563 apr_pool_cleanup_run(r->pool, (void *)&SG(server_context), php_server_context_cleanup); in php_apache_ini_dtor()
591 ctx = SG(server_context) = apr_pcalloc(r->pool, sizeof(*ctx)); in php_handler()
651 brigade = apr_brigade_create(r->pool, r->connection->bucket_alloc); in php_handler()
[all …]
H A Dapache_config.c66 e.value = apr_pstrdup(cmd->pool, value); in real_value_hnd()
114 apache2_php_ini_path_override = ap_server_root_relative(cmd->pool, arg); in php_apache_phpini_set()
/PHP-7.4/sapi/fpm/
H A Dwww.conf.in1 ; Start a new pool named 'www'.
3 ; pool name ('www' here)
6 ; Per pool prefix
18 ;prefix = /path/to/pools/$pool
144 ; pool - the name of the pool;
164 ; pool: www
260 ;access.log = log/$pool.access.log
292 ; %n: pool name
324 ;slowlog = log/$pool.log.slow
393 ; pool configuration are added.
[all …]
H A Dphp-fpm.conf.in92 ; - The pool process will inherit the master process priority
133 ; ports and different management options. The name of the pool will be
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_scoreboard.c66 strlcpy(wp->scoreboard->pool, wp->config->name, sizeof(wp->scoreboard->pool)); in fpm_scoreboard_init_main()
322 zlog(ZLOG_DEBUG, "[pool %s] the proc->free_slot was not free. Let's search", scoreboard->pool); in fpm_scoreboard_proc_alloc()
332 zlog(ZLOG_ERROR, "[pool %s] no free scoreboard slot", scoreboard->pool); in fpm_scoreboard_proc_alloc()
H A Dfpm_status.c59 zlog(ZLOG_NOTICE, "[pool %s] status: scoreboard already in use.", scoreboard_p->pool); in fpm_status_export_to_zval()
83 add_assoc_string(status, "pool", scoreboard.pool); in fpm_status_export_to_zval()
192 zlog(ZLOG_NOTICE, "[pool %s] status: scoreboard already in used.", scoreboard_p->pool); in fpm_status_handle_request()
205 zlog(ZLOG_ERROR, "[pool %s] invalid status values", scoreboard.pool); in fpm_status_handle_request()
457 scoreboard.pool, in fpm_status_handle_request()
H A Dfpm_scoreboard.h52 char pool[32]; member
H A Dfpm_log.c134 …_WARNING, "[pool %s] Unable to acquire shm slot while preparing the access log", scoreboard->pool); in fpm_log_write()
286 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%s", scoreboard->pool[0] ? scoreboard->pool : "-"); in fpm_log_write()
/PHP-7.4/azure/
H A Djob.yml10 pool:
H A Dcoverage_job.yml10 pool:
H A Dmsan_job.yml10 pool:
/PHP-7.4/ext/pdo_sqlite/tests/
H A Dbug35336.phpt15 $a = new PDO("sqlite::memory:");// pool ("sqlite::memory:");
/PHP-7.4/ext/oci8/tests/
H A Ddrcp_conn_close2.phpt16 // With oci_close() the connection is released to the pool and hence the
H A Ddrcp_pconn_close2.phpt16 // With oci_close() the connection is released to the pool and hence the
/PHP-7.4/azure/i386/
H A Djob.yml7 pool:
/PHP-7.4/azure/macos/
H A Djob.yml7 pool:

Completed in 72 milliseconds

12