Lines Matching refs:errstatus

188 	sword errstatus;  in PHP_INI_END()  local
192 errstatus = OCIEnvNlsCreate(&OCI_G(env), PHP_OCI_INIT_MODE, 0, NULL, NULL, NULL, 0, NULL, 0, 0); in PHP_INI_END()
194 if (errstatus == OCI_ERROR) { in PHP_INI_END()
211 errstatus = OCIHandleAlloc (OCI_G(env), (dvoid **)&OCI_G(err), OCI_HTYPE_ERROR, 0, NULL); in PHP_INI_END()
213 if (errstatus == OCI_SUCCESS) { in PHP_INI_END()
239 if (errstatus == OCI_SUCCESS_WITH_INFO) { in PHP_INI_END()
754 sb4 php_oci_error(OCIError *err_p, sword errstatus) in php_oci_error() argument
759 switch (errstatus) { in php_oci_error()
799 php_error_docref(NULL, E_WARNING, "Unknown OCI error code: %d", errstatus); in php_oci_error()
805 DTRACE_OCI8_ERROR((int)errstatus, (long)errcode); in php_oci_error()
840 sword errstatus; in php_oci_fetch_sqltext_offset() local
844 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)statement->stmt, OCI_HTYPE_STMT, (dvoid *) sq… in php_oci_fetch_sqltext_offset()
846 if (errstatus != OCI_SUCCESS) { in php_oci_fetch_sqltext_offset()
847 statement->errcode = php_oci_error(statement->err, errstatus); in php_oci_fetch_sqltext_offset()
852 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)statement->stmt, OCI_HTYPE_STMT, (ub2 *)error… in php_oci_fetch_sqltext_offset()
854 if (errstatus != OCI_SUCCESS) { in php_oci_fetch_sqltext_offset()
855 statement->errcode = php_oci_error(statement->err, errstatus); in php_oci_fetch_sqltext_offset()
1333 sword errstatus; in php_oci_connection_ping() local
1346 PHP_OCI_CALL_RETURN(errstatus, OCIPing, (connection->svc, OCI_G(err), OCI_DEFAULT)); in php_oci_connection_ping()
1349 …PHP_OCI_CALL_RETURN(errstatus, OCIServerVersion, (connection->svc, OCI_G(err), (text *)version, si… in php_oci_connection_ping()
1352 if (errstatus == OCI_SUCCESS) { in php_oci_connection_ping()
1377 sword errstatus; in php_oci_connection_status() local
1380 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)connection->server, OCI_HTYPE_SERVER, (dvoid … in php_oci_connection_status()
1382 if (errstatus == OCI_SUCCESS && ss == OCI_SERVER_NORMAL) { in php_oci_connection_status()
1397 sword errstatus; in php_oci_connection_rollback() local
1399 PHP_OCI_CALL_RETURN(errstatus, OCITransRollback, (connection->svc, connection->err, (ub4) 0)); in php_oci_connection_rollback()
1402 if (errstatus != OCI_SUCCESS) { in php_oci_connection_rollback()
1403 connection->errcode = php_oci_error(connection->err, errstatus); in php_oci_connection_rollback()
1418 sword errstatus; in php_oci_connection_commit() local
1420 PHP_OCI_CALL_RETURN(errstatus, OCITransCommit, (connection->svc, connection->err, (ub4) 0)); in php_oci_connection_commit()
1423 if (errstatus != OCI_SUCCESS) { in php_oci_connection_commit()
1424 connection->errcode = php_oci_error(connection->err, errstatus); in php_oci_connection_commit()
1625 sword errstatus; in php_oci_password_change() local
1627 …PHP_OCI_CALL_RETURN(errstatus, OCIPasswordChange, (connection->svc, connection->err, (text *)user,… in php_oci_password_change()
1629 if (errstatus != OCI_SUCCESS) { in php_oci_password_change()
1630 connection->errcode = php_oci_error(connection->err, errstatus); in php_oci_password_change()
1667 sword errstatus; in php_oci_server_get_version() local
1669 …PHP_OCI_CALL_RETURN(errstatus, OCIServerVersion, (connection->svc, connection->err, (text *)versio… in php_oci_server_get_version()
1671 if (errstatus != OCI_SUCCESS) { in php_oci_server_get_version()
1672 connection->errcode = php_oci_error(connection->err, errstatus); in php_oci_server_get_version()
1856 sword errstatus; in php_oci_fetch_row() local
1859 PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)invokedstatement->stmt, OCI_HTYPE_STMT, in php_oci_fetch_row()
1862 if (errstatus) { in php_oci_fetch_row()
1996 sword errstatus; in php_oci_create_spool() local
2021 …PHP_OCI_CALL_RETURN(errstatus, OCIHandleAlloc, (session_pool->env, (dvoid **) &session_pool->poolh… in php_oci_create_spool()
2023 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2024 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2033 …PHP_OCI_CALL_RETURN(errstatus, OCIHandleAlloc, ((dvoid *) session_pool->env, (dvoid **)&(session_p… in php_oci_create_spool()
2035 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2036 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2050 …PHP_OCI_CALL_RETURN(errstatus, OCIHandleAlloc, (session_pool->env, (dvoid **)&(spoolAuth), OCI_HTY… in php_oci_create_spool()
2052 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2053 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2061 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, ((dvoid *) spoolAuth, (ub4) OCI_HTYPE_AUTHINFO, (dvoid … in php_oci_create_spool()
2063 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2064 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2072 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, ((dvoid *) spoolAuth, (ub4) OCI_HTYPE_AUTHINFO, (dvoid … in php_oci_create_spool()
2074 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2075 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2082 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, ((dvoid *) (session_pool->poolh),(ub4) OCI_HTYPE_SPOOL,… in php_oci_create_spool()
2084 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2085 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()
2095 …PHP_OCI_CALL_RETURN(errstatus, OCISessionPoolCreate,(session_pool->env, OCI_G(err), session_pool->… in php_oci_create_spool()
2097 if (errstatus != OCI_SUCCESS) { in php_oci_create_spool()
2098 OCI_G(errcode) = php_oci_error(OCI_G(err), errstatus); in php_oci_create_spool()