Lines Matching refs:errstatus

176 	sword errstatus;  in PHP_INI_END()  local
180 errstatus = OCIEnvNlsCreate(&OCI_G(env), PHP_OCI_INIT_MODE, 0, NULL, NULL, NULL, 0, NULL, 0, 0); in PHP_INI_END()
182 if (errstatus == OCI_ERROR) { in PHP_INI_END()
199 errstatus = OCIHandleAlloc (OCI_G(env), (dvoid **)&OCI_G(err), OCI_HTYPE_ERROR, 0, NULL); in PHP_INI_END()
201 if (errstatus == OCI_SUCCESS) { in PHP_INI_END()
227 if (errstatus == OCI_SUCCESS_WITH_INFO) { in PHP_INI_END()
748 sb4 php_oci_error(OCIError *err_p, sword errstatus) in php_oci_error() argument
753 switch (errstatus) { in php_oci_error()
793 php_error_docref(NULL, E_WARNING, "Unknown OCI error code: %d", errstatus); in php_oci_error()
799 DTRACE_OCI8_ERROR((int)errstatus, (long)errcode); in php_oci_error()
834 sword errstatus; in php_oci_fetch_sqltext_offset() local
838 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)statement->stmt, OCI_HTYPE_STMT, (dvoid *) sq… in php_oci_fetch_sqltext_offset()
840 if (errstatus != OCI_SUCCESS) { in php_oci_fetch_sqltext_offset()
841 statement->errcode = php_oci_error(statement->err, errstatus); in php_oci_fetch_sqltext_offset()
846 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)statement->stmt, OCI_HTYPE_STMT, (ub2 *)error… in php_oci_fetch_sqltext_offset()
848 if (errstatus != OCI_SUCCESS) { in php_oci_fetch_sqltext_offset()
849 statement->errcode = php_oci_error(statement->err, errstatus); in php_oci_fetch_sqltext_offset()
1327 sword errstatus; in php_oci_connection_ping() local
1340 PHP_OCI_CALL_RETURN(errstatus, OCIPing, (connection->svc, OCI_G(err), OCI_DEFAULT)); in php_oci_connection_ping()
1343 …PHP_OCI_CALL_RETURN(errstatus, OCIServerVersion, (connection->svc, OCI_G(err), (text *)version, si… in php_oci_connection_ping()
1346 if (errstatus == OCI_SUCCESS) { in php_oci_connection_ping()
1371 sword errstatus; in php_oci_connection_status() local
1374 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)connection->server, OCI_HTYPE_SERVER, (dvoid … in php_oci_connection_status()
1376 if (errstatus == OCI_SUCCESS && ss == OCI_SERVER_NORMAL) { in php_oci_connection_status()
1391 sword errstatus; in php_oci_connection_rollback() local
1393 PHP_OCI_CALL_RETURN(errstatus, OCITransRollback, (connection->svc, connection->err, (ub4) 0)); in php_oci_connection_rollback()
1396 if (errstatus != OCI_SUCCESS) { in php_oci_connection_rollback()
1397 connection->errcode = php_oci_error(connection->err, errstatus); in php_oci_connection_rollback()
1412 sword errstatus; in php_oci_connection_commit() local
1414 PHP_OCI_CALL_RETURN(errstatus, OCITransCommit, (connection->svc, connection->err, (ub4) 0)); in php_oci_connection_commit()
1417 if (errstatus != OCI_SUCCESS) { in php_oci_connection_commit()
1418 connection->errcode = php_oci_error(connection->err, errstatus); in php_oci_connection_commit()
1619 sword errstatus; in php_oci_password_change() local
1621 …PHP_OCI_CALL_RETURN(errstatus, OCIPasswordChange, (connection->svc, connection->err, (text *)user,… in php_oci_password_change()
1623 if (errstatus != OCI_SUCCESS) { in php_oci_password_change()
1624 connection->errcode = php_oci_error(connection->err, errstatus); in php_oci_password_change()
1661 sword errstatus; in php_oci_server_get_version() local
1663 …PHP_OCI_CALL_RETURN(errstatus, OCIServerVersion, (connection->svc, connection->err, (text *)versio… in php_oci_server_get_version()
1665 if (errstatus != OCI_SUCCESS) { in php_oci_server_get_version()
1666 connection->errcode = php_oci_error(connection->err, errstatus); in php_oci_server_get_version()
1850 sword errstatus; in php_oci_fetch_row() local
1853 PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)invokedstatement->stmt, OCI_HTYPE_STMT, in php_oci_fetch_row()
1856 if (errstatus) { in php_oci_fetch_row()
1990 sword errstatus; in php_oci_create_spool() local
2015 …PHP_OCI_CALL_RETURN(errstatus, OCIHandleAlloc, (session_pool->env, (dvoid **) &session_pool->poolh… in php_oci_create_spool()
2017 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2018 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2027 …PHP_OCI_CALL_RETURN(errstatus, OCIHandleAlloc, ((dvoid *) session_pool->env, (dvoid **)&(session_p… in php_oci_create_spool()
2029 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2030 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2044 …PHP_OCI_CALL_RETURN(errstatus, OCIHandleAlloc, (session_pool->env, (dvoid **)&(spoolAuth), OCI_HTY… in php_oci_create_spool()
2046 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2047 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2055 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, ((dvoid *) spoolAuth, (ub4) OCI_HTYPE_AUTHINFO, (dvoid … in php_oci_create_spool()
2057 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2058 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2066 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, ((dvoid *) spoolAuth, (ub4) OCI_HTYPE_AUTHINFO, (dvoid … in php_oci_create_spool()
2068 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2069 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2076 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, ((dvoid *) (session_pool->poolh),(ub4) OCI_HTYPE_SPOOL,… in php_oci_create_spool()
2078 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2079 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2089 …PHP_OCI_CALL_RETURN(errstatus, OCISessionPoolCreate,(session_pool->env, OCI_G(err), session_pool->… in php_oci_create_spool()
2091 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2092 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()