Home
last modified time | relevance | path

Searched refs:persistent (Results 1 – 25 of 126) sorted by last modified time

123456

/PHP-5.5/sapi/thttpd/
H A Dthttpd.c56 # define do_keep_alive persistent
H A Dthttpd_patch1893 + /* If this is a persistent PHP connection, we must not receive
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c442 smart_str_appendl_ex(buffer, "HTTP", 4, persistent); in append_http_status_line()
443 smart_str_appendc_ex(buffer, '/', persistent); in append_http_status_line()
445 smart_str_appendc_ex(buffer, '.', persistent); in append_http_status_line()
447 smart_str_appendc_ex(buffer, ' ', persistent); in append_http_status_line()
449 smart_str_appendc_ex(buffer, ' ', persistent); in append_http_status_line()
451 smart_str_appendl_ex(buffer, "\r\n", 2, persistent); in append_http_status_line()
459 smart_str_appendl_ex(buffer, "Host", sizeof("Host") - 1, persistent); in append_essential_headers()
460 smart_str_appendl_ex(buffer, ": ", sizeof(": ") - 1, persistent); in append_essential_headers()
461 smart_str_appends_ex(buffer, *val, persistent); in append_essential_headers()
462 smart_str_appendl_ex(buffer, "\r\n", 2, persistent); in append_essential_headers()
[all …]
/PHP-5.5/sapi/cli/tests/
H A D006.phpt28 string(%d) "Extension [ <persistent> extension #%d pcre version <no_version> ] {
/PHP-5.5/sapi/apache_hooks/
H A Dmod_php5.c58 int top, max, persistent; member
115 int sapi_stack_init_ex(sapi_stack *stack, int persistent) in sapi_stack_init_ex() argument
118 stack->persistent = persistent; in sapi_stack_init_ex()
119 stack->elements = (void **) pemalloc(sizeof(void **) * STACK_BLOCK_SIZE, persistent); in sapi_stack_init_ex()
131 (sizeof(void **) * (stack->max += STACK_BLOCK_SIZE)), stack->persistent); in sapi_stack_push()
/PHP-5.5/sapi/cgi/
H A DREADME.FastCGI63 like persistent database connections are used more efficiently.
/PHP-5.5/
H A Dphp.ini-development1035 ; Allow or prevent persistent links.
1044 ; http://php.net/odbc.max-persistent
1047 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1065 ; Allow or prevent persistent links.
1071 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1100 ; Allow or prevent persistent links.
1112 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1163 ; Allow or prevent persistent links.
1293 ; Maximum number of links (persistent+non persistent). -1 means no limit.
1316 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
[all …]
H A Dphp.ini-production1035 ; Allow or prevent persistent links.
1044 ; http://php.net/odbc.max-persistent
1047 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1065 ; Allow or prevent persistent links.
1071 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1100 ; Allow or prevent persistent links.
1112 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1163 ; Allow or prevent persistent links.
1293 ; Maximum number of links (persistent+non persistent). -1 means no limit.
1316 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
[all …]
/PHP-5.5/main/streams/
H A Dstreams.c1443 ptr = *buf = pemalloc_rel_orig(maxlen + 1, persistent); in _php_stream_copy_to_mem()
1455 pefree(*buf, persistent); in _php_stream_copy_to_mem()
1473 ptr = *buf = pemalloc_rel_orig(max_len, persistent); in _php_stream_copy_to_mem()
1486 *buf = perealloc_rel_orig(*buf, len + 1, persistent); in _php_stream_copy_to_mem()
1489 pefree(*buf, persistent); in _php_stream_copy_to_mem()
2025 int persistent = options & STREAM_OPEN_PERSISTENT; local
2089 pefree(stream->orig_path, persistent);
2091 copy_of_path = pestrdup(path, persistent);
2112 pefree(newstream->orig_path, persistent);
2114 newstream->orig_path = pestrdup(path, persistent);
[all …]
H A Dfilter.c252 …ter *php_stream_filter_create(const char *filtername, zval *filterparams, int persistent TSRMLS_DC) in php_stream_filter_create()
263 filter = factory->create_filter(filtername, filterparams, persistent TSRMLS_CC); in php_stream_filter_create()
275 filter = factory->create_filter(filtername, filterparams, persistent TSRMLS_CC); in php_stream_filter_create()
295 …p_stream_filter_alloc(php_stream_filter_ops *fops, void *abstract, int persistent STREAMS_DC TSRML… in _php_stream_filter_alloc()
299 filter = (php_stream_filter*) pemalloc_rel_orig(sizeof(php_stream_filter), persistent); in _php_stream_filter_alloc()
304 filter->is_persistent = persistent; in _php_stream_filter_alloc()
H A Dphp_stream_filter_api.h134 …p_stream_filter_alloc(php_stream_filter_ops *fops, void *abstract, int persistent STREAMS_DC TSRML…
136 …ine php_stream_filter_alloc(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (thisptr),… argument
137 …php_stream_filter_alloc_rel(fops, thisptr, persistent) _php_stream_filter_alloc((fops), (thisptr),… argument
145 …php_stream_filter *(*create_filter)(const char *filtername, zval *filterparams, int persistent TSR…
152 …er *php_stream_filter_create(const char *filtername, zval *filterparams, int persistent TSRMLS_DC);
H A Dphp_streams_int.h34 #define pemalloc_rel_orig(size, persistent) ((persistent) ? malloc((size)) : emalloc_rel_orig((size… argument
35 #define perealloc_rel_orig(ptr, size, persistent) ((persistent) ? realloc((ptr), (size)) : erealloc… argument
37 # define pemalloc_rel_orig(size, persistent) pemalloc((size), (persistent)) argument
38 # define perealloc_rel_orig(ptr, size, persistent) perealloc((ptr), (size), (persistent)) argument
H A Dplain_wrapper.c930 int persistent = options & STREAM_OPEN_PERSISTENT; in _php_stream_fopen() local
948 if (persistent) { in _php_stream_fopen()
/PHP-5.5/main/
H A Dphp_network.h306 …e php_stream_sock_open_from_socket(socket, persistent) _php_stream_sock_open_from_socket((socket),… argument
307 …(host, port, socktype, timeout, persistent) _php_stream_sock_open_host((host), (port), (socktype),… argument
310 …p_stream_sock_open_from_socket_rel(socket, persistent) _php_stream_sock_open_from_socket((socket),… argument
311 …(host, port, socktype, timeout, persistent) _php_stream_sock_open_host((host), (port), (socktype),… argument
312 …am_sock_open_unix_rel(path, pathlen, persistent, timeval) _php_stream_sock_open_unix((path), (path… argument
H A Dphp_streams.h62 #define php_stream_alloc_rel(ops, thisptr, persistent, mode) _php_stream_alloc((ops), (thisptr), (p… argument
64 …stream_copy_to_mem_rel(src, buf, maxlen, persistent) _php_stream_copy_to_mem((src), (buf), (maxlen… argument
448 int persistent STREAMS_DC TSRMLS_DC);
449 …php_stream_copy_to_mem(src, buf, maxlen, persistent) _php_stream_copy_to_mem((src), (buf), (maxlen… argument
/PHP-5.5/ext/zlib/
H A Dzlib_filter.c28 int persistent; member
164 pefree(data->inbuf, data->persistent); in php_zlib_inflate_dtor()
165 pefree(data->outbuf, data->persistent); in php_zlib_inflate_dtor()
166 pefree(data, data->persistent); in php_zlib_inflate_dtor()
271 pefree(data->inbuf, data->persistent); in php_zlib_deflate_dtor()
272 pefree(data->outbuf, data->persistent); in php_zlib_deflate_dtor()
273 pefree(data, data->persistent); in php_zlib_deflate_dtor()
309 pefree(data, persistent); in php_zlib_filter_create()
316 pefree(data->inbuf, persistent); in php_zlib_filter_create()
317 pefree(data, persistent); in php_zlib_filter_create()
[all …]
/PHP-5.5/ext/standard/
H A Duser_filters.c284 zval *filterparams, int persistent TSRMLS_DC) in user_filter_factory_create()
294 if (persistent) { in user_filter_factory_create()
H A Dfilters.c176 int persistent; member
191 inst->persistent = persistent; in php_strip_tags_filter_ctor()
342 int persistent; member
381 inst->persistent = persistent; in php_conv_base64_encode_ctor()
754 int persistent; member
989 inst->persistent = persistent; in php_conv_qprint_encode_ctor()
1005 int persistent; member
1203 inst->persistent = persistent; in php_conv_qprint_decode_ctor()
1505 inst->persistent = persistent; in php_convert_filter_ctor()
1921 data->persistent = persistent; in consumed_filter_create()
[all …]
H A Dfsock.c32 static void php_fsockopen_stream(INTERNAL_FUNCTION_PARAMETERS, int persistent) in php_fsockopen_stream() argument
54 if (persistent) { in php_fsockopen_stream()
H A Dbrowscap.c144 int persistent = bdata->htab->persistent; in php_browscap_parser_cb() local
188 Z_STRLEN_P(arg2), persistent); in php_browscap_parser_cb()
194 pefree(new_key, persistent); in php_browscap_parser_cb()
214 persistent); in php_browscap_parser_cb()
218 pefree(bdata->current_section_name, persistent); in php_browscap_parser_cb()
221 Z_STRLEN_P(arg1), persistent); in php_browscap_parser_cb()
233 convert_browscap_pattern(processed, persistent); in php_browscap_parser_cb()
258 persistent, 0) == FAILURE) { in browscap_read_file()
259 pefree(browdata->htab, persistent); in browscap_read_file()
269 pefree(browdata->htab, persistent); in browscap_read_file()
[all …]
H A Darray.c2848 …_ARRVAL_P(array)->nNumOfElements + 1) * sizeof(struct bucketindex), Z_ARRVAL_P(array)->persistent); in PHP_FUNCTION()
2883 pefree(arTmp, Z_ARRVAL_P(array)->persistent); in PHP_FUNCTION()
3158 list = (Bucket **) pemalloc((hash->nNumOfElements + 1) * sizeof(Bucket *), hash->persistent); in php_array_intersect()
3296 pefree(lists[i], hash->persistent); in php_array_intersect()
3575 list = (Bucket **) pemalloc((hash->nNumOfElements + 1) * sizeof(Bucket *), hash->persistent); in php_array_diff()
3709 pefree(lists[i], hash->persistent); in php_array_diff()
/PHP-5.5/ext/sybase_ct/
H A Dphp_sybase_ct.c729 static void php_sybase_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent) in php_sybase_do_connect() argument
738 if (persistent) { in php_sybase_do_connect()
759 persistent=0; in php_sybase_do_connect()
761 if (persistent) { in php_sybase_do_connect()
/PHP-5.5/ext/standard/tests/streams/
H A Dbug54623.phpt2 Bug #54623: Segfault when when writing to a persistent socket after closing a copy of the socket
/PHP-5.5/ext/phar/
H A Dphar_internal.h79 # define pestrndup(s, length, persistent) ((persistent)?zend_strndup((s),(length)):estrndup((s),(le… argument
/PHP-5.5/ext/pgsql/
H A Dpgsql.c1225 static void php_pgsql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent) argument
1280 if (persistent && PGG(allow_persistent)) {

Completed in 132 milliseconds

123456