num_persistent    656 ext/interbase/interbase.c 	IBG(num_persistent)--;
num_persistent    726 ext/interbase/interbase.c 	ibase_globals->num_persistent = ibase_globals->num_links = 0;
num_persistent    792 ext/interbase/interbase.c 	IBG(num_links) = IBG(num_persistent);
num_persistent    987 ext/interbase/interbase.c 		if (!persistent || ((l = INI_INT("ibase.max_persistent") != -1) && IBG(num_persistent) >= l)) {
num_persistent   1007 ext/interbase/interbase.c 			++IBG(num_persistent);
num_persistent     64 ext/interbase/php_ibase_includes.h 	zend_long num_links, num_persistent;
num_persistent   1298 ext/oci8/oci8.c 	OCI_G(num_links) = OCI_G(num_persistent);
num_persistent   1381 ext/oci8/oci8.c 	snprintf(buf, sizeof(buf), "%pd", OCI_G(num_persistent));
num_persistent   1416 ext/oci8/oci8.c 		OCI_G(num_persistent)--;
num_persistent   1459 ext/oci8/oci8.c 				OCI_G(num_persistent)--;
num_persistent   2081 ext/oci8/oci8.c 		if (OCI_G(max_persistent) != -1 && OCI_G(num_persistent) >= OCI_G(max_persistent)) {
num_persistent   2085 ext/oci8/oci8.c 			if (OCI_G(max_persistent) != -1 && OCI_G(num_persistent) >= OCI_G(max_persistent)) {
num_persistent   2087 ext/oci8/oci8.c 				php_error_docref(NULL, E_NOTICE, "Too many open persistent connections (%pd)", OCI_G(num_persistent));
num_persistent   2188 ext/oci8/oci8.c 		OCI_G(num_persistent)++;
num_persistent   2203 ext/oci8/oci8.c 		DTRACE_OCI8_CONNECT_TYPE(connection->is_persistent ? 1 : 0, exclusive ? 1 : 0, connection, OCI_G(num_persistent), OCI_G(num_links));
num_persistent    515 ext/oci8/php_oci8_int.h 	zend_long		 num_persistent;				/* number of existing persistent connections */
num_persistent    521 ext/odbc/php_odbc.c 	ODBCG(num_persistent)--;
num_persistent    707 ext/odbc/php_odbc.c 	odbc_globals->num_persistent = 0;
num_persistent    819 ext/odbc/php_odbc.c 	ODBCG(num_links) = ODBCG(num_persistent);
num_persistent    848 ext/odbc/php_odbc.c 	snprintf(buf, sizeof(buf), ZEND_LONG_FMT, ODBCG(num_persistent));
num_persistent   2621 ext/odbc/php_odbc.c 			if (ODBCG(max_persistent) != -1 && ODBCG(num_persistent) >= ODBCG(max_persistent)) {
num_persistent   2622 ext/odbc/php_odbc.c 				php_error_docref(NULL, E_WARNING,"Too many open persistent links (%ld)", ODBCG(num_persistent));
num_persistent   2641 ext/odbc/php_odbc.c 			ODBCG(num_persistent)++;
num_persistent    266 ext/odbc/php_odbc_includes.h 	zend_long num_persistent;
num_persistent    955 ext/pgsql/pgsql.c 	PGG(num_persistent)--;
num_persistent   1222 ext/pgsql/pgsql.c 	PGG(num_links) = PGG(num_persistent);
num_persistent   1261 ext/pgsql/pgsql.c 	snprintf(buf, sizeof(buf), ZEND_LONG_FMT, PGG(num_persistent));
num_persistent   1344 ext/pgsql/pgsql.c 			if (PGG(max_persistent) != -1 && PGG(num_persistent) >= PGG(max_persistent)) {
num_persistent   1346 ext/pgsql/pgsql.c 								 "Cannot create new link. Too many open persistent links (%pd)", PGG(num_persistent));
num_persistent   1371 ext/pgsql/pgsql.c 			PGG(num_persistent)++;
num_persistent    315 ext/pgsql/php_pgsql.h 	zend_long num_links,num_persistent;