Home
last modified time | relevance | path

Searched refs:persistent (Results 76 – 100 of 126) sorted by relevance

123456

/PHP-7.4/ext/oci8/tests/
H A Dconn_attr_3.phpt74 resource(%d) of type (oci8 persistent connection)
78 resource(%d) of type (oci8 persistent connection)
H A Dlob_017.phpt2 returning multiple lobs (using persistent connection)
H A Dconnect_scope_try6.phpt81 resource(%d) of type (oci8 persistent connection)
H A Dconnect_scope_try5.phpt81 resource(%d) of type (oci8 persistent connection)
H A Dbug42134.phpt45 // Test collection creation error for persistent connection
H A Dpassword.phpt2 oci_password_change() for non-persistent connections
/PHP-7.4/sapi/cli/
H A Dphp_cli_server.c339 smart_str_appendl_ex(buffer, "HTTP", 4, persistent); in append_http_status_line()
340 smart_str_appendc_ex(buffer, '/', persistent); in append_http_status_line()
342 smart_str_appendc_ex(buffer, '.', persistent); in append_http_status_line()
344 smart_str_appendc_ex(buffer, ' ', persistent); in append_http_status_line()
346 smart_str_appendc_ex(buffer, ' ', persistent); in append_http_status_line()
348 smart_str_appendl_ex(buffer, "\r\n", 2, persistent); in append_http_status_line()
357 smart_str_appends_ex(buffer, "Host: ", persistent); in append_essential_headers()
358 smart_str_appends_ex(buffer, val, persistent); in append_essential_headers()
359 smart_str_appends_ex(buffer, "\r\n", persistent); in append_essential_headers()
364 smart_str_appends_ex(buffer, "Date: ", persistent); in append_essential_headers()
[all …]
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_connect.phpt128 printf("[021] Usage of mysqli.default_host (persistent) failed\n") ;
130 … if (!$res = mysqli_query($link, "SELECT 'mysqli.default_host (persistent)' AS 'testing'"))
133 if ($tmp['testing'] !== 'mysqli.default_host (persistent)') {
H A Dmysqli_real_connect.phpt147 printf("[022] Usage of mysqli.default_host=p:%s (persistent) failed\n", $host) ;
149 … if (!$res = mysqli_query($link, "SELECT 'mysqli.default_host (persistent)' AS 'testing'"))
152 if ($tmp['testing'] !== 'mysqli.default_host (persistent)') {
H A Dmysqli_pconn_disabled.phpt26 …printf("[002] Cannot set user variable to check if we got the same persistent connection, [%d] %s\…
H A Dmysqli_pconn_conn_multiple.phpt2 Calling connect() on an open persistent connection to create a new persistent connection
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_pconnect.phpt73 …printf("[006] Looks like the persistent and the non persistent connection are using the same link?…
/PHP-7.4/ext/dba/libinifile/
H A Dinifile.c82 inifile * inifile_alloc(php_stream *fp, int readonly, int persistent) in inifile_alloc() argument
93 dba = pemalloc(sizeof(inifile), persistent); in inifile_alloc()
102 void inifile_free(inifile *dba, int persistent) in inifile_free() argument
107 pefree(dba, persistent); in inifile_free()
/PHP-7.4/ext/ffi/
H A Dffi.c2184 ffi->persistent = 0; in zend_ffi_new()
2313 if (ffi->persistent) { in zend_ffi_free_obj()
3182 FFI_G(persistent) = preload; in zend_ffi_load()
3193 FFI_G(persistent) = 0; in zend_ffi_load()
3366 ffi->persistent = 1; in zend_ffi_load()
3377 FFI_G(persistent) = 0; in zend_ffi_load()
3393 FFI_G(persistent) = 0; in zend_ffi_load()
3445 ffi->persistent = 1; in ZEND_METHOD()
3628 zend_bool persistent = 0; in ZEND_METHOD() local
3641 Z_PARAM_BOOL(persistent) in ZEND_METHOD()
[all …]
/PHP-7.4/main/streams/
H A Dstreams.c1474 result = zend_string_alloc(maxlen, persistent); in _php_stream_copy_to_mem()
1491 result = zend_string_truncate(result, len, persistent); in _php_stream_copy_to_mem()
1512 result = zend_string_alloc(max_len, persistent); in _php_stream_copy_to_mem()
1519 result = zend_string_extend(result, max_len + step, persistent); in _php_stream_copy_to_mem()
1527 result = zend_string_truncate(result, len, persistent); in _php_stream_copy_to_mem()
2084 int persistent = options & STREAM_OPEN_PERSISTENT; local
2151 pefree(stream->orig_path, persistent);
2153 copy_of_path = pestrdup(path, persistent);
2174 pefree(newstream->orig_path, persistent);
2176 newstream->orig_path = pestrdup(path, persistent);
[all …]
/PHP-7.4/ext/mysqli/
H A Dmysqli_nonapi.c61 zend_bool persistent = FALSE, ssl = FALSE; local
152 mysql->persistent = persistent = TRUE;
239 if (persistent && MyG(max_persistent) != -1 &&
250 if (!(mysql->mysql = mysqlnd_init(MYSQLND_CLIENT_KNOWS_RSET_COPY_DATA, persistent))) {
345 if (persistent && (new_connection || is_real_connect)) {
368 mysql->persistent = FALSE;
/PHP-7.4/Zend/
H A Dzend_ts_hash.c60 … _zend_ts_hash_init(TsHashTable *ht, uint32_t nSize, dtor_func_t pDestructor, zend_bool persistent) in _zend_ts_hash_init() argument
67 _zend_hash_init(TS_HASH(ht), nSize, pDestructor, persistent); in _zend_ts_hash_init()
H A Dzend_hash.h100 …CALL _zend_hash_init(HashTable *ht, uint32_t nSize, dtor_func_t pDestructor, zend_bool persistent);
104 #define zend_hash_init(ht, nSize, pHashFunction, pDestructor, persistent) \ argument
105 _zend_hash_init((ht), (nSize), (pDestructor), (persistent))
106 #define zend_hash_init_ex(ht, nSize, pHashFunction, pDestructor, persistent, bApplyProtection) \ argument
107 _zend_hash_init((ht), (nSize), (pDestructor), (persistent))
331 #define ZEND_INIT_SYMTABLE_EX(ht, n, persistent) \ in END_EXTERN_C() argument
332 zend_hash_init(ht, n, NULL, ZVAL_PTR_DTOR, persistent) in END_EXTERN_C()
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_auth.c103 mnd_pefree(conn->authentication_plugin_data.s, conn->persistent); in mysqlnd_run_authentication()
107 …>authentication_plugin_data.s = mnd_pemalloc(conn->authentication_plugin_data.l, conn->persistent); in mysqlnd_run_authentication()
499 tmp = mnd_pestrndup(user, user_len, conn->persistent); in mysqlnd_auth_change_user()
501 mnd_pefree(conn->username.s, conn->persistent); in mysqlnd_auth_change_user()
505 tmp = mnd_pestrdup(passwd, conn->persistent); in mysqlnd_auth_change_user()
507 mnd_pefree(conn->password.s, conn->persistent); in mysqlnd_auth_change_user()
H A Dmysqlnd.h86 #define mysqlnd_init(flags, persistent) mysqlnd_connection_init((flags), (persistent), NULL /*use … argument
90 PHPAPI MYSQLND * mysqlnd_connection_init(const size_t client_flags, const zend_bool persistent, MYS…
/PHP-7.4/ext/odbc/
H A Dphp_odbc_includes.h191 int persistent; member
/PHP-7.4/sapi/fpm/tests/
H A Dfcgi.inc112 * Use persistent sockets to connect to backend
179 * @param bool $b true if persistent socket should be used, false otherwise
193 * @return bool true if the socket should be persistent, false otherwise
493 * rather than sequentially to guard against false-positives when using persistent sockets.
511 // Using persistent sockets implies you want them keept alive by server!
/PHP-7.4/
H A Dphp.ini-development1110 ; Allow or prevent persistent links.
1111 ; http://php.net/odbc.allow-persistent
1115 ; http://php.net/odbc.check-persistent
1119 ; http://php.net/odbc.max-persistent
1122 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1140 ; http://php.net/mysqli.max-persistent
1147 ; Allow or prevent persistent links.
1229 ; http://php.net/oci8.max-persistent
1274 ; Allow or prevent persistent links.
1284 ; http://php.net/pgsql.max-persistent
[all …]
H A Dphp.ini-production1110 ; Allow or prevent persistent links.
1111 ; http://php.net/odbc.allow-persistent
1115 ; http://php.net/odbc.check-persistent
1119 ; http://php.net/odbc.max-persistent
1122 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1140 ; http://php.net/mysqli.max-persistent
1147 ; Allow or prevent persistent links.
1229 ; http://php.net/oci8.max-persistent
1274 ; Allow or prevent persistent links.
1284 ; http://php.net/pgsql.max-persistent
[all …]
/PHP-7.4/sapi/cli/tests/
H A D006.phpt31 string(%d) "Extension [ <persistent> extension #%d pcre version %s ] {

Completed in 127 milliseconds

123456