Lines Matching refs:charsetid

123 static OCIEnv *php_oci_create_env(ub2 charsetid);
126 …, int username_len, char *password, int password_len, char *dbname, int dbname_len, int charsetid);
127 …r *password, int password_len, char *dbname, int dbname_len, zend_string *hash_key, int charsetid);
808 ub2 charsetid = 0; in php_oci_do_connect_ex() local
891 PHP_OCI_CALL_RETURN(charsetid, OCINlsCharSetNameToId, (OCI_G(env), (CONST oratext *)charset)); in php_oci_do_connect_ex()
892 if (!charsetid) { in php_oci_do_connect_ex()
895 smart_str_append_unsigned_ex(&hashed_details, charsetid, 0); in php_oci_do_connect_ex()
900 if (!charsetid) { in php_oci_do_connect_ex()
1126 …ername, username_len, password, password_len, dbname, dbname_len, charsetid ? charsetid:charsetid_… in php_oci_do_connect_ex()
1142 if (charsetid) { in php_oci_do_connect_ex()
1143 connection->charset = charsetid; in php_oci_do_connect_ex()
1843 …ar *password, int password_len, char *dbname, int dbname_len, zend_string *hash_key, int charsetid) in php_oci_create_spool() argument
1868 if (!(session_pool->env = php_oci_create_env(charsetid))) { in php_oci_create_spool()
1974 …e, int username_len, char *password, int password_len, char *dbname, int dbname_len, int charsetid) in php_oci_get_spool() argument
2003 smart_str_append_unsigned_ex(&spool_hashed_details, charsetid, 0); in php_oci_get_spool()
2018 …name, username_len, password, password_len, dbname, dbname_len, spool_hashed_details.s, charsetid); in php_oci_get_spool()
2047 static OCIEnv *php_oci_create_env(ub2 charsetid) in php_oci_create_env() argument
2052 …I_INIT_MODE | OCI_EVENTS : PHP_OCI_INIT_MODE, 0, NULL, NULL, NULL, 0, NULL, charsetid, charsetid)); in php_oci_create_env()