Searched refs:num_persistent (Results 1 – 9 of 9) sorted by relevance
/PHP-7.0/ext/oci8/ |
H A D | oci8_dtrace.d | 32 …probe oci8__connect__type(int persistent, int exclusive, void *connection, long num_persistent, lo…
|
H A D | oci8.c | 1164 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() 1947 if (OCI_G(max_persistent) != -1 && OCI_G(num_persistent) >= OCI_G(max_persistent)) { in php_oci_do_connect_ex() 1951 if (OCI_G(max_persistent) != -1 && OCI_G(num_persistent) >= OCI_G(max_persistent)) { in php_oci_do_connect_ex() 1953 …NULL, E_NOTICE, "Too many open persistent connections (" ZEND_LONG_FMT ")", OCI_G(num_persistent)); in php_oci_do_connect_ex() 2057 OCI_G(num_persistent)++; in php_oci_do_connect_ex() 2072 …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 D | php_oci8_int.h | 515 zend_long num_persistent; /* number of existing persistent connections */ variable
|
/PHP-7.0/ext/interbase/ |
H A D | php_ibase_includes.h | 64 zend_long num_links, num_persistent; variable
|
H A D | interbase.c | 656 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() 987 if (!persistent || ((l = INI_INT("ibase.max_persistent") != -1) && IBG(num_persistent) >= l)) { in _php_ibase_connect() 1007 ++IBG(num_persistent); in _php_ibase_connect()
|
/PHP-7.0/ext/odbc/ |
H A D | php_odbc_includes.h | 266 zend_long num_persistent; variable
|
H A D | php_odbc.c | 528 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() 2625 if (ODBCG(max_persistent) != -1 && ODBCG(num_persistent) >= ODBCG(max_persistent)) { in odbc_do_connect() 2626 php_error_docref(NULL, E_WARNING,"Too many open persistent links (%ld)", ODBCG(num_persistent)); in odbc_do_connect() 2645 ODBCG(num_persistent)++; in odbc_do_connect()
|
/PHP-7.0/ext/pgsql/ |
H A D | php_pgsql.h | 315 zend_long num_links,num_persistent;
|
H A D | pgsql.c | 955 PGG(num_persistent)--; in _close_pgsql_plink() 1222 PGG(num_links) = PGG(num_persistent); in PHP_RINIT_FUNCTION() 1261 snprintf(buf, sizeof(buf), ZEND_LONG_FMT, PGG(num_persistent)); in PHP_MINFO_FUNCTION() 1343 if (PGG(max_persistent) != -1 && PGG(num_persistent) >= PGG(max_persistent)) { 1345 "Cannot create new link. Too many open persistent links (%pd)", PGG(num_persistent)); 1370 PGG(num_persistent)++;
|
Completed in 71 milliseconds