Home
last modified time | relevance | path

Searched refs:num_persistent (Results 1 – 9 of 9) sorted by relevance

/PHP-7.2/ext/oci8/
H A Doci8_dtrace.d32 …probe oci8__connect__type(int persistent, int exclusive, void *connection, long num_persistent, lo…
H A Doci8.c1165 OCI_G(num_links) = OCI_G(num_persistent); in PHP_RINIT_FUNCTION()
1247 snprintf(buf, sizeof(buf), ZEND_LONG_FMT, OCI_G(num_persistent)); in PHP_MINFO_FUNCTION()
1282 OCI_G(num_persistent)--; in php_oci_pconnection_list_dtor()
1325 OCI_G(num_persistent)--; in php_oci_pconnection_list_np_dtor()
1953 if (OCI_G(max_persistent) != -1 && OCI_G(num_persistent) >= OCI_G(max_persistent)) { in php_oci_do_connect_ex()
1957 if (OCI_G(max_persistent) != -1 && OCI_G(num_persistent) >= OCI_G(max_persistent)) { in php_oci_do_connect_ex()
1959 …NULL, E_NOTICE, "Too many open persistent connections (" ZEND_LONG_FMT ")", OCI_G(num_persistent)); in php_oci_do_connect_ex()
2069 OCI_G(num_persistent)++; in php_oci_do_connect_ex()
2084 …nection->is_persistent ? 1 : 0, exclusive ? 1 : 0, connection, OCI_G(num_persistent), OCI_G(num_li… in php_oci_do_connect_ex()
H A Dphp_oci8_int.h517 zend_long num_persistent; /* number of existing persistent connections */ variable
/PHP-7.2/ext/interbase/
H A Dphp_ibase_includes.h64 zend_long num_links, num_persistent; variable
H A Dinterbase.c656 IBG(num_persistent)--; in _php_ibase_close_plink()
726 ibase_globals->num_persistent = ibase_globals->num_links = 0; in PHP_INI_END()
792 IBG(num_links) = IBG(num_persistent); in PHP_RSHUTDOWN_FUNCTION()
989 if (!persistent || ((l = INI_INT("ibase.max_persistent") != -1) && IBG(num_persistent) >= l)) { in _php_ibase_connect()
1009 ++IBG(num_persistent); in _php_ibase_connect()
/PHP-7.2/ext/odbc/
H A Dphp_odbc_includes.h266 zend_long num_persistent; variable
H A Dphp_odbc.c528 ODBCG(num_persistent)--; in _close_odbc_pconn()
714 odbc_globals->num_persistent = 0; in PHP_INI_END()
826 ODBCG(num_links) = ODBCG(num_persistent); in PHP_RINIT_FUNCTION()
855 snprintf(buf, sizeof(buf), ZEND_LONG_FMT, ODBCG(num_persistent)); in PHP_MINFO_FUNCTION()
2632 if (ODBCG(max_persistent) != -1 && ODBCG(num_persistent) >= ODBCG(max_persistent)) { in odbc_do_connect()
2633 php_error_docref(NULL, E_WARNING,"Too many open persistent links (%ld)", ODBCG(num_persistent)); in odbc_do_connect()
2652 ODBCG(num_persistent)++; in odbc_do_connect()
/PHP-7.2/ext/pgsql/
H A Dphp_pgsql.h314 zend_long num_links,num_persistent;
H A Dpgsql.c970 PGG(num_persistent)--; in _close_pgsql_plink()
1238 PGG(num_links) = PGG(num_persistent); in PHP_RINIT_FUNCTION()
1278 snprintf(buf, sizeof(buf), ZEND_LONG_FMT, PGG(num_persistent)); in PHP_MINFO_FUNCTION()
1360 if (PGG(max_persistent) != -1 && PGG(num_persistent) >= PGG(max_persistent)) {
1362 …"Cannot create new link. Too many open persistent links (" ZEND_LONG_FMT ")", PGG(num_persistent));
1387 PGG(num_persistent)++;

Completed in 75 milliseconds