Lines Matching refs:connections
59 HashTable connections; variable
304 zend_hash_del(&DBA_G(connections), connection->hash); in dba_close_connection()
391 zend_hash_init(&dba_globals->connections, 0, NULL, NULL, true); in PHP_INI_END()
392 GC_MAKE_PERSISTENT_LOCAL(&dba_globals->connections); in PHP_INI_END()
398 zend_hash_destroy(&dba_globals->connections); in PHP_GSHUTDOWN_FUNCTION()
495 ZEND_HASH_MAP_FOREACH_VAL(&DBA_G(connections), zv) { in php_dba_find()
592 if (zend_hash_exists(&DBA_G(connections), connection->hash)) { in php_dba_open()
593 zend_hash_del(&DBA_G(connections), connection->hash); in php_dba_open()
596 zend_hash_add_new(&DBA_G(connections), connection->hash, return_value); in php_dba_open()
779 if ((connection_zval = zend_hash_find(&DBA_G(connections), resource_key)) == NULL) { in php_dba_open()
943 zend_hash_add_new(&DBA_G(connections), connection->hash, return_value); in php_dba_open()
1286 ZEND_HASH_MAP_FOREACH_VAL(&DBA_G(connections), zv) { in PHP_FUNCTION()