php_oci_spool     131 ext/oci8/oci8.c static void php_oci_spool_close(php_oci_spool *session_pool);
php_oci_spool     134 ext/oci8/oci8.c static int php_oci_create_session(php_oci_connection *connection, php_oci_spool *session_pool, char *dbname, int dbname_len, char *username, int username_len, char *password, int password_len, char *new_password, int new_password_len, int session_mode);
php_oci_spool     136 ext/oci8/oci8.c static php_oci_spool *php_oci_get_spool(char *username, int username_len, char *password, int password_len, char *dbname, int dbname_len, int charsetid);
php_oci_spool     137 ext/oci8/oci8.c static php_oci_spool *php_oci_create_spool(char *username, int username_len, char *password, int password_len, char *dbname, int dbname_len, zend_string *hash_key, int charsetid);
php_oci_spool    1804 ext/oci8/oci8.c 	php_oci_spool *session_pool = NULL;
php_oci_spool    2852 ext/oci8/oci8.c static php_oci_spool *php_oci_create_spool(char *username, int username_len, char *password, int password_len, char *dbname, int dbname_len, zend_string *hash_key, int charsetid)
php_oci_spool    2854 ext/oci8/oci8.c 	php_oci_spool *session_pool = NULL;
php_oci_spool    2861 ext/oci8/oci8.c 	session_pool = (php_oci_spool *) calloc(1, sizeof(php_oci_spool));
php_oci_spool    2989 ext/oci8/oci8.c static php_oci_spool *php_oci_get_spool(char *username, int username_len, char *password, int password_len, char *dbname, int dbname_len, int charsetid)
php_oci_spool    2992 ext/oci8/oci8.c 	php_oci_spool *session_pool = NULL;
php_oci_spool    3045 ext/oci8/oci8.c 		ZSTR_LEN(((php_oci_spool *)(spool_out_le->ptr))->spool_hash_key) == ZSTR_LEN(spool_hashed_details.s) &&
php_oci_spool    3046 ext/oci8/oci8.c 		memcmp(ZSTR_VAL(((php_oci_spool *)(spool_out_le->ptr))->spool_hash_key), ZSTR_VAL(spool_hashed_details.s), ZSTR_LEN(spool_hashed_details.s)) == 0) {
php_oci_spool    3048 ext/oci8/oci8.c 		session_pool = (php_oci_spool *)(spool_out_le->ptr);
php_oci_spool    3290 ext/oci8/oci8.c static int php_oci_create_session(php_oci_connection *connection, php_oci_spool *session_pool, char *dbname, int dbname_len, char *username, int username_len, char *password, int password_len, char *new_password, int new_password_len, int session_mode)
php_oci_spool    3292 ext/oci8/oci8.c 	php_oci_spool *actual_spool = NULL;
php_oci_spool    3461 ext/oci8/oci8.c 	php_oci_spool *session_pool = (php_oci_spool *)entry->ptr;
php_oci_spool    3475 ext/oci8/oci8.c static void php_oci_spool_close(php_oci_spool *session_pool)
php_oci_spool     150 ext/oci8/php_oci8_int.h 	php_oci_spool  *private_spool;				/* private session pool (for persistent) */