Lines Matching refs:OCI_G
937 errstatus = OCIEnvNlsCreate(&OCI_G(env), PHP_OCI_INIT_MODE, 0, NULL, NULL, NULL, 0, NULL, 0, 0); in PHP_INI_END()
945 if (OCI_G(env) in PHP_INI_END()
946 …&& OCIErrorGet(OCI_G(env), (ub4)1, NULL, &ora_error_code, tmp_buf, (ub4)PHP_OCI_ERRBUF_LEN, (ub4)O… in PHP_INI_END()
951 OCI_G(env) = NULL; in PHP_INI_END()
952 OCI_G(err) = NULL; in PHP_INI_END()
956 errstatus = OCIHandleAlloc (OCI_G(env), (dvoid **)&OCI_G(err), OCI_HTYPE_ERROR, 0, NULL); in PHP_INI_END()
969 …PHP_OCI_CALL(OCIHandleAlloc, (OCI_G(env), (dvoid **) &cpoolh, OCI_HTYPE_CPOOL, (size_t) 0, (dvoid … in PHP_INI_END()
970 …PHP_OCI_CALL(OCIConnectionPoolCreate, (OCI_G(env), OCI_G(err), cpoolh, NULL, 0, NULL, 0, 0, 0, 0, … in PHP_INI_END()
971 PHP_OCI_CALL(OCIConnectionPoolDestroy, (cpoolh, OCI_G(err), OCI_DEFAULT)); in PHP_INI_END()
975 …OCIErrorGet(OCI_G(env), (ub4)1, NULL, &ora_error_code, tmp_buf, (ub4)PHP_OCI_ERRBUF_LEN, (ub4)OCI_… in PHP_INI_END()
989 OCIHandleFree((dvoid *) OCI_G(env), OCI_HTYPE_ENV); in PHP_INI_END()
991 OCI_G(env) = NULL; in PHP_INI_END()
992 OCI_G(err) = NULL; in PHP_INI_END()
1005 if (OCI_G(err)) { in php_oci_cleanup_global_handles()
1006 PHP_OCI_CALL(OCIHandleFree, ((dvoid *) OCI_G(err), OCI_HTYPE_ERROR)); in php_oci_cleanup_global_handles()
1007 OCI_G(err) = NULL; in php_oci_cleanup_global_handles()
1010 if (OCI_G(env)) { in php_oci_cleanup_global_handles()
1011 PHP_OCI_CALL(OCIHandleFree, ((dvoid *) OCI_G(env), OCI_HTYPE_ENV)); in php_oci_cleanup_global_handles()
1012 OCI_G(env) = NULL; in php_oci_cleanup_global_handles()
1164 OCI_G(num_links) = OCI_G(num_persistent); in PHP_RINIT_FUNCTION()
1165 OCI_G(errcode) = 0; in PHP_RINIT_FUNCTION()
1166 OCI_G(edition) = NULL; in PHP_RINIT_FUNCTION()
1173 OCI_G(shutdown) = 1; in PHP_MSHUTDOWN_FUNCTION()
1188 if (OCI_G(edition)) { in PHP_RSHUTDOWN_FUNCTION()
1189 efree(OCI_G(edition)); in PHP_RSHUTDOWN_FUNCTION()
1247 snprintf(buf, sizeof(buf), ZEND_LONG_FMT, OCI_G(num_persistent)); in PHP_MINFO_FUNCTION()
1249 snprintf(buf, sizeof(buf), ZEND_LONG_FMT, OCI_G(num_links)); in PHP_MINFO_FUNCTION()
1267 OCI_G(num_links)--; in php_oci_connection_list_dtor()
1282 OCI_G(num_persistent)--; in php_oci_pconnection_list_dtor()
1283 OCI_G(num_links)--; in php_oci_pconnection_list_dtor()
1314 OCI_G(in_call)) { in php_oci_pconnection_list_np_dtor()
1325 OCI_G(num_persistent)--; in php_oci_pconnection_list_np_dtor()
1711 if (!OCI_G(privileged_connect)) { in php_oci_do_connect_ex()
1719 if (OCI_G(env) == NULL) { in php_oci_do_connect_ex()
1721 if (OCI_G(env) == NULL) { in php_oci_do_connect_ex()
1740 if (OCI_G(connection_class)){ in php_oci_do_connect_ex()
1741 …smart_str_appendl_ex(&hashed_details, OCI_G(connection_class), strlen(OCI_G(connection_class)), 0); in php_oci_do_connect_ex()
1746 if (OCI_G(edition)){ in php_oci_do_connect_ex()
1747 smart_str_appendl_ex(&hashed_details, OCI_G(edition), strlen(OCI_G(edition)), 0); in php_oci_do_connect_ex()
1764 PHP_OCI_CALL_RETURN(charsetid, OCINlsCharSetNameToId, (OCI_G(env), (CONST oratext *)charset)); in php_oci_do_connect_ex()
1890 if (OCI_G(old_oci_close_semantics)) { in php_oci_do_connect_ex()
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()
2010 …connection->idle_expiry = (OCI_G(persistent_timeout) > 0) ? (timestamp + OCI_G(persistent_timeout)… in php_oci_do_connect_ex()
2053 if (OCI_G(old_oci_close_semantics)) { in php_oci_do_connect_ex()
2057 OCI_G(num_persistent)++; in php_oci_do_connect_ex()
2058 OCI_G(num_links)++; in php_oci_do_connect_ex()
2064 OCI_G(num_links)++; in php_oci_do_connect_ex()
2067 OCI_G(num_links)++; in php_oci_do_connect_ex()
2072 …ection->is_persistent ? 1 : 0, exclusive ? 1 : 0, connection, OCI_G(num_persistent), OCI_G(num_lin… in php_oci_do_connect_ex()
2091 OCI_G(errcode) = 0; /* assume ping is successful */ in php_oci_connection_ping()
2099 PHP_OCI_CALL_RETURN(errstatus, OCIPing, (connection->svc, OCI_G(err), OCI_DEFAULT)); in php_oci_connection_ping()
2102 …PHP_OCI_CALL_RETURN(errstatus, OCIServerVersion, (connection->svc, OCI_G(err), (text *)version, si… in php_oci_connection_ping()
2112 …OCIErrorGet(OCI_G(err), (ub4)1, NULL, &error_code, tmp_buf, (ub4)PHP_OCI_ERRBUF_LEN, (ub4)OCI_HTYP… in php_oci_connection_ping()
2116 OCI_G(errcode) = error_code; in php_oci_connection_ping()
2133 …connection->server, OCI_HTYPE_SERVER, (dvoid *)&ss, (ub4 *)0, OCI_ATTR_SERVER_STATUS, OCI_G(err))); in php_oci_connection_status()
2193 zend_bool in_call_save = OCI_G(in_call); in php_oci_connection_close()
2224 PHP_OCI_CALL(OCIServerDetach, (connection->server, OCI_G(err), OCI_DEFAULT)); in php_oci_connection_close()
2271 OCI_G(in_call) = in_call_save; in php_oci_connection_close()
2285 zend_bool in_call_save = OCI_G(in_call); in php_oci_connection_release()
2306 if (OCI_G(persistent_timeout) > 0) { in php_oci_connection_release()
2307 connection->idle_expiry = timestamp + OCI_G(persistent_timeout); in php_oci_connection_release()
2312 if (OCI_G(ping_interval) >= 0) { in php_oci_connection_release()
2313 *(connection->next_pingp) = timestamp + OCI_G(ping_interval); in php_oci_connection_release()
2365 OCI_G(in_call) = in_call_save; in php_oci_connection_release()
2716 if (!connection->used_this_request && OCI_G(persistent_timeout) != -1) { in php_oci_persistent_helper()
2770 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2782 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2799 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2806 if (OCI_G(edition)) { in php_oci_create_spool()
2807 …h, (ub4) OCI_HTYPE_AUTHINFO, (dvoid *) OCI_G(edition), (ub4)(strlen(OCI_G(edition))), (ub4)OCI_ATT… in php_oci_create_spool()
2810 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2818 …P_OCI8_DRIVER_NAME, (ub4) sizeof(PHP_OCI8_DRIVER_NAME)-1, (ub4) OCI_ATTR_DRIVER_NAME, OCI_G(err))); in php_oci_create_spool()
2821 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2828 …>poolh),(ub4) OCI_HTYPE_SPOOL, (dvoid *) spoolAuth, (ub4)0, (ub4)OCI_ATTR_SPOOL_AUTH, OCI_G(err))); in php_oci_create_spool()
2831 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2841 …PHP_OCI_CALL_RETURN(errstatus, OCISessionPoolCreate,(session_pool->env, OCI_G(err), session_pool->… in php_oci_create_spool()
2844 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2887 if (OCI_G(edition)){ in php_oci_get_spool()
2888 smart_str_appendl_ex(&spool_hashed_details, OCI_G(edition), strlen(OCI_G(edition)), 0); in php_oci_get_spool()
2956 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIEnvNlsCreate, (&retenv, OCI_G(events) ? PHP_OCI_INIT_MODE |… in php_oci_create_env()
2958 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_create_env()
2988 if (OCI_G(statement_cache_size) > 0) { in php_oci_old_create_session()
2989 if (OCI_G(statement_cache_size) > SB4MAXVAL) in php_oci_old_create_session()
2992 statement_cache_size = (ub4) OCI_G(statement_cache_size); in php_oci_old_create_session()
3001 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIHandleAlloc, (connection->env, (dvoid **)&(connection->serv… in php_oci_old_create_session()
3003 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3004 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3010 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIServerAttach, (connection->server, OCI_G(err), (text *)dbna… in php_oci_old_create_session()
3012 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3013 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3020 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIHandleAlloc, (connection->env, (dvoid **)&(connection->sess… in php_oci_old_create_session()
3022 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3023 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3029 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIHandleAlloc, (connection->env, (dvoid **)&(connection->err)… in php_oci_old_create_session()
3031 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3032 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3038 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIHandleAlloc, (connection->env, (dvoid **)&(connection->svc)… in php_oci_old_create_session()
3040 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3041 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3048 …OCI_G(errcode), OCIAttrSet, ((dvoid *) connection->session, (ub4) OCI_HTYPE_SESSION, (dvoid *) use… in php_oci_old_create_session()
3050 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3051 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3059 …OCI_G(errcode), OCIAttrSet, ((dvoid *) connection->session, (ub4) OCI_HTYPE_SESSION, (dvoid *) pas… in php_oci_old_create_session()
3061 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3062 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3070 if (OCI_G(edition)) { in php_oci_old_create_session()
3071 …OCI_G(errcode), OCIAttrSet, ((dvoid *) connection->session, (ub4) OCI_HTYPE_SESSION, (dvoid *) OCI… in php_oci_old_create_session()
3073 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3074 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3083 …OCI_G(errcode), OCIAttrSet, ((dvoid *) connection->session, (ub4) OCI_HTYPE_SESSION, (dvoid *) PHP… in php_oci_old_create_session()
3085 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3086 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3093 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIAttrSet, (connection->svc, OCI_HTYPE_SVCCTX, connection->se… in php_oci_old_create_session()
3095 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3096 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3102 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIAttrSet, (connection->svc, OCI_HTYPE_SVCCTX, connection->se… in php_oci_old_create_session()
3104 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3105 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3112 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIPasswordChange, (connection->svc, OCI_G(err), (text *)usern… in php_oci_old_create_session()
3114 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3115 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3119 …RETURN(OCI_G(errcode), OCIAttrGet, ((dvoid *)connection->svc, OCI_HTYPE_SVCCTX, (dvoid *)&(connect… in php_oci_old_create_session()
3121 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3122 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3138 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCISessionBegin, (connection->svc, OCI_G(err), connection->ses… in php_oci_old_create_session()
3140 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3141 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3145 if (OCI_G(errcode) != OCI_SUCCESS_WITH_INFO) { in php_oci_old_create_session()
3153 if (php_oci_ping_init(connection, OCI_G(err)) != OCI_SUCCESS) { in php_oci_old_create_session()
3154 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3158 …N(OCI_G(errcode), OCIAttrSet, ((dvoid *) connection->svc, (ub4) OCI_HTYPE_SVCCTX, (ub4 *) &stateme… in php_oci_old_create_session()
3160 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_old_create_session()
3161 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_old_create_session()
3183 if (OCI_G(statement_cache_size) > 0) { in php_oci_create_session()
3184 if (OCI_G(statement_cache_size) > SB4MAXVAL) in php_oci_create_session()
3187 statement_cache_size = (ub4) OCI_G(statement_cache_size); in php_oci_create_session()
3217 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIHandleAlloc, (connection->env, (dvoid **)&(connection->err)… in php_oci_create_session()
3219 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_create_session()
3220 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_create_session()
3227 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIHandleAlloc, (connection->env, (dvoid **)&(connection->auth… in php_oci_create_session()
3229 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_create_session()
3230 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_create_session()
3236 …OCI_G(errcode), OCIAttrSet, ((dvoid *) connection->authinfo,(ub4) OCI_HTYPE_SESSION, (dvoid *) OCI… in php_oci_create_session()
3238 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_create_session()
3239 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_create_session()
3248 …RETURN(OCI_G(errcode),OCIAttrSet, ((dvoid *) connection->authinfo,(ub4) OCI_HTYPE_AUTHINFO, (dvoid… in php_oci_create_session()
3250 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_create_session()
3251 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_create_session()
3262 …_RETURN(OCI_G(errcode), OCIAttrGet, ((dvoid *)actual_spool->poolh, OCI_HTYPE_SPOOL, (dvoid *)&numo… in php_oci_create_session()
3263 …_RETURN(OCI_G(errcode), OCIAttrGet, ((dvoid *)actual_spool->poolh, OCI_HTYPE_SPOOL, (dvoid *)&numb… in php_oci_create_session()
3278 …PHP_OCI_CALL_RETURN(OCI_G(errcode),OCISessionGet, (connection->env, OCI_G(err), &(connection->svc)… in php_oci_create_session()
3280 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_create_session()
3281 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_create_session()
3287 if (OCI_G(errcode) != OCI_SUCCESS_WITH_INFO) { in php_oci_create_session()
3293 …_RETURN(OCI_G(errcode), OCIAttrGet, ((dvoid *)connection->svc, OCI_HTYPE_SVCCTX, (dvoid *)&(connec… in php_oci_create_session()
3295 …RETURN(OCI_G(errcode), OCIAttrGet, ((dvoid *)connection->svc, OCI_HTYPE_SVCCTX, (dvoid *)&(connect… in php_oci_create_session()
3298 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIContextGetValue, (connection->session, OCI_G(err), (ub1 *)"… in php_oci_create_session()
3299 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_create_session()
3300 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_create_session()
3306 if (php_oci_ping_init(connection, OCI_G(err)) != OCI_SUCCESS) { in php_oci_create_session()
3307 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_create_session()
3313 *(connection->next_pingp) = timestamp + OCI_G(ping_interval); in php_oci_create_session()
3324 …N(OCI_G(errcode), OCIAttrSet, ((dvoid *) connection->svc, (ub4) OCI_HTYPE_SVCCTX, (ub4 *) &stateme… in php_oci_create_session()
3326 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_create_session()
3327 php_oci_error(OCI_G(err), OCI_G(errcode)); in php_oci_create_session()
3396 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIContextGetValue, (connection->session, errh, (ub1 *)"NEXT_P… in php_oci_ping_init()
3397 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_ping_init()
3398 return OCI_G(errcode); in php_oci_ping_init()
3403 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIMemoryAlloc, (connection->session, errh, (void **)&next_pin… in php_oci_ping_init()
3404 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_ping_init()
3405 return OCI_G(errcode); in php_oci_ping_init()
3409 if (OCI_G(ping_interval) >= 0) { in php_oci_ping_init()
3411 *next_pingp = timestamp + OCI_G(ping_interval); in php_oci_ping_init()
3417 …PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIContextSetValue, (connection->session, errh, OCI_DURATION_S… in php_oci_ping_init()
3418 if (OCI_G(errcode) != OCI_SUCCESS) { in php_oci_ping_init()
3420 return OCI_G(errcode); in php_oci_ping_init()