Home
last modified time | relevance | path

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

/PHP-7.4/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.4/ext/odbc/
H A Dphp_odbc_includes.h231 zend_long num_persistent; variable
H A Dphp_odbc.c521 ODBCG(num_persistent)--; in _close_odbc_pconn()
707 odbc_globals->num_persistent = 0; in PHP_INI_END()
819 ODBCG(num_links) = ODBCG(num_persistent); in PHP_RINIT_FUNCTION()
848 snprintf(buf, sizeof(buf), ZEND_LONG_FMT, ODBCG(num_persistent)); in PHP_MINFO_FUNCTION()
2642 if (ODBCG(max_persistent) != -1 && ODBCG(num_persistent) >= ODBCG(max_persistent)) { in odbc_do_connect()
2643 php_error_docref(NULL, E_WARNING,"Too many open persistent links (%ld)", ODBCG(num_persistent)); in odbc_do_connect()
2658 ODBCG(num_persistent)++; in odbc_do_connect()
/PHP-7.4/ext/pgsql/
H A Dphp_pgsql.h311 zend_long num_links,num_persistent;
H A Dpgsql.c961 PGG(num_persistent)--; in _close_pgsql_plink()
1246 PGG(num_links) = PGG(num_persistent); in PHP_RINIT_FUNCTION()
1286 snprintf(buf, sizeof(buf), ZEND_LONG_FMT, PGG(num_persistent)); in PHP_MINFO_FUNCTION()
1370 if (PGG(max_persistent) != -1 && PGG(num_persistent) >= PGG(max_persistent)) {
1372 …"Cannot create new link. Too many open persistent links (" ZEND_LONG_FMT ")", PGG(num_persistent));
1395 PGG(num_persistent)++;

Completed in 48 milliseconds