Home
last modified time | relevance | path

Searched refs:persistent (Results 51 – 75 of 129) sorted by relevance

123456

/php-src/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-src/ext/mysqli/tests/
H A Dmysqli_real_connect_pconn.phpt2 mysqli_real_connect() - persistent connections
119 printf("[022] Usage of mysqli.default_host=p:%s (persistent) failed\n", $host) ;
121 if (!$res = mysqli_query($link, "SELECT 'mysqli.default_host (persistent)' AS 'testing'"))
124 if ($tmp['testing'] !== 'mysqli.default_host (persistent)') {
H A Dbug55283.phpt2 Bug #55283 (SSL options set by mysqli_ssl_set ignored for MySQLi persistent connections)
58 /* non-persistent connection */
H A Dmysqli_pconn_twice.phpt2 Calling connect() on an open persistent connection to create a new persistent connection
H A Dmysqli_real_connect.phpt119 printf("[022] Usage of mysqli.default_host=p:%s (persistent) failed\n", $host) ;
121 if (!$res = mysqli_query($link, "SELECT 'mysqli.default_host (persistent)' AS 'testing'"))
124 if ($tmp['testing'] !== 'mysqli.default_host (persistent)') {
H A Dmysqli_connect.phpt123 printf("[021] Usage of mysqli.default_host (persistent) failed\n") ;
125 if (!$res = mysqli_query($link, "SELECT 'mysqli.default_host (persistent)' AS 'testing'"))
128 if ($tmp['testing'] !== 'mysqli.default_host (persistent)') {
/php-src/ext/pdo_mysql/tests/
H A Dbug77289.phpt2 Bug #77289: PDO MySQL segfaults with persistent connection
H A Dbug_74376.phpt2 Bug #74376 (Invalid free of persistent results on error/connection loss)
H A Dbug63176.phpt2 Bug #63176 (Segmentation fault when instantiate 2 persistent PDO to the same db server)
/php-src/ext/pgsql/tests/
H A Dgh13519.phpt2 GH-13519 - PGSQL_CONNECT_FORCE_NEW with persistent connections.
/php-src/ext/dba/tests/
H A Ddba_db4_018.phpt2 DBA DB4 with persistent connections
72 resource(%d) of type (dba persistent)
H A Ddba015.phpt2 DBA with persistent connections
72 resource(%d) of type (dba persistent)
/php-src/main/streams/
H A Dfilter.c220 …am_filter *php_stream_filter_create(const char *filtername, zval *filterparams, uint8_t persistent) in php_stream_filter_create() argument
231 filter = factory->create_filter(filtername, filterparams, persistent); in php_stream_filter_create()
244 filter = factory->create_filter(filtername, filterparams, persistent); in php_stream_filter_create()
264 …ream_filter_alloc(const php_stream_filter_ops *fops, void *abstract, uint8_t persistent STREAMS_DC) in _php_stream_filter_alloc()
268 filter = (php_stream_filter*) pemalloc_rel_orig(sizeof(php_stream_filter), persistent); in _php_stream_filter_alloc()
273 filter->is_persistent = persistent; in _php_stream_filter_alloc()
/php-src/ext/mysqlnd/
H A Dmysqlnd_structs.h149 bool persistent; member
411 …t_connection)(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_object_factory) * factory, const bool persistent);
414 typedef MYSQLND_PFC * (*func_mysqlnd_object_factory__get_pfc)(const bool persistent, MYSQLND_STATS …
415 typedef MYSQLND_VIO * (*func_mysqlnd_object_factory__get_vio)(const bool persistent, MYSQLND_STATS …
852 bool persistent; member
862 bool persistent; member
955 bool persistent; member
962 bool persistent; member
1068 bool persistent; member
1134 bool persistent; member
[all …]
H A Dmysqlnd_connection.h43 PHPAPI void mysqlnd_error_info_init(MYSQLND_ERROR_INFO * const info, const bool persistent);
/php-src/main/
H A Dphp_streams.h60 #define php_stream_alloc_rel(ops, thisptr, persistent, mode) _php_stream_alloc((ops), (thisptr), (p… argument
62 … php_stream_copy_to_mem_rel(src, maxlen, persistent) _php_stream_copy_to_mem((src), (buf), (maxlen… argument
492 PHPAPI zend_string *_php_stream_copy_to_mem(php_stream *src, size_t maxlen, int persistent STREAMS_…
493 #define php_stream_copy_to_mem(src, maxlen, persistent) _php_stream_copy_to_mem((src), (maxlen), (p… argument
/php-src/ext/standard/tests/file/
H A Drealpath_bug77484.phpt13 /* The cwd is persistent across repeats */
/php-src/ext/pdo/tests/
H A Dbug_72788.phpt2 PDO Common: Bug #72788 (Invalid memory access when using persistent PDO connection)
/php-src/ext/pgsql/
H A Dphp_pgsql.h86 static void php_pgsql_do_connect(INTERNAL_FUNCTION_PARAMETERS,int persistent);
150 bool persistent; member
/php-src/ext/phar/
H A Dphar_internal.h553 …azy(const char *buffer, phar_metadata_tracker *tracker, uint32_t zip_metadata_len, int persistent);
554 bool phar_metadata_tracker_has_data(const phar_metadata_tracker* tracker, int persistent);
556 void phar_metadata_tracker_free(phar_metadata_tracker* val, int persistent);
557 …ata_tracker_copy(phar_metadata_tracker* dest, const phar_metadata_tracker *source, int persistent);
559 …ar_metadata_tracker_try_ensure_has_serialized_data(phar_metadata_tracker* tracker, int persistent);
560 …r_unserialize_or_copy(phar_metadata_tracker* tracker, zval *value, int persistent, HashTable *unse…
/php-src/docs-old/
H A Dstreams.md89 PHPAPI php_stream *php_stream_sock_open_from_socket(int socket, int persistent);
93 int socktype, int timeout, int persistent);
96 PHPAPI php_stream *php_stream_sock_open_unix(const char *path, int persistent,
121 size_t maxlen, int persistent);
291 size_t bufsize, int persistent, const char * mode)
301 * `persistent` controls how the memory is to be allocated - persistently so that
331 it, allocate it (use pemalloc with the persistent flag set appropriately), and
342 struct my_state * state = pemalloc(sizeof(struct my_state), persistent);
350 stream = php_stream_alloc(&my_ops, state, 0, persistent, "r");
404 read the stream->persistent field to determine if your struct was allocated in
[all …]
/php-src/sapi/phpdbg/
H A Dphpdbg_btree.h38 bool persistent; member
/php-src/ext/pdo_sqlite/tests/
H A Dbug43831.phpt2 Bug #43831 ($this gets mangled when extending PDO with persistent connection)
/php-src/ext/pdo_firebird/tests/
H A Dpersistent_connect.phpt2 PDO_Firebird: persistent connect test
/php-src/sapi/cli/
H A Dphp_cli_server.c347 smart_str_appendl_ex(buffer, "HTTP", 4, persistent); in append_http_status_line()
348 smart_str_appendc_ex(buffer, '/', persistent); in append_http_status_line()
350 smart_str_appendc_ex(buffer, '.', persistent); in append_http_status_line()
352 smart_str_appendc_ex(buffer, ' ', persistent); in append_http_status_line()
354 smart_str_appendc_ex(buffer, ' ', persistent); in append_http_status_line()
356 smart_str_appendl_ex(buffer, "\r\n", 2, persistent); in append_http_status_line()
380 smart_str_appends_ex(buffer, "Host: ", persistent); in append_essential_headers()
382 smart_str_appends_ex(buffer, "\r\n", persistent); in append_essential_headers()
387 smart_str_appends_ex(buffer, "Date: ", persistent); in append_essential_headers()
388 smart_str_append_ex(buffer, dt, persistent); in append_essential_headers()
[all …]

Completed in 59 milliseconds

123456