Home
last modified time | relevance | path

Searched refs:error_code (Results 51 – 69 of 69) sorted by relevance

123

/PHP-8.0/ext/oci8/
H A Doci8.c813 sb4 error_code = 0; in php_oci_fetch_errmsg() local
815 …PHP_OCI_CALL(OCIErrorGet, (error_handle, (ub4)1, NULL, &error_code, error_buf, (ub4)error_buf_size… in php_oci_fetch_errmsg()
817 if (error_code) { in php_oci_fetch_errmsg()
824 return error_code; in php_oci_fetch_errmsg()
1349 sb4 error_code = 0; in php_oci_connection_ping() local
1353 …OCIErrorGet(OCI_G(err), (ub4)1, NULL, &error_code, tmp_buf, (ub4)PHP_OCI_ERRBUF_LEN, (ub4)OCI_HTYP… in php_oci_connection_ping()
1354 if (error_code == 1010) { in php_oci_connection_ping()
1357 OCI_G(errcode) = error_code; in php_oci_connection_ping()
/PHP-8.0/ext/pdo_pgsql/
H A Dpgsql_driver.c71 pdo_error_type *pdo_err = stmt ? &stmt->error_code : &dbh->error_code; in _pdo_pgsql_error()
300 strcpy(dbh->error_code, stmt->error_code); in pgsql_handle_preparer()
/PHP-8.0/ext/date/lib/
H A Dparse_date.re334 static void add_warning(Scanner *s, int error_code, char *error)
338 s->errors->warning_messages[s->errors->warning_count - 1].error_code = error_code;
344 static void add_error(Scanner *s, int error_code, char *error)
348 s->errors->error_messages[s->errors->error_count - 1].error_code = error_code;
354 static void add_pbf_warning(Scanner *s, int error_code, char *error, const char *sptr, const char *…
358 s->errors->warning_messages[s->errors->warning_count - 1].error_code = error_code;
364 static void add_pbf_error(Scanner *s, int error_code, char *error, const char *sptr, const char *cp…
368 s->errors->error_messages[s->errors->error_count - 1].error_code = error_code;
H A Dparse_date.c336 static void add_warning(Scanner *s, int error_code, char *error) in add_warning() argument
340 s->errors->warning_messages[s->errors->warning_count - 1].error_code = error_code; in add_warning()
346 static void add_error(Scanner *s, int error_code, char *error) in add_error() argument
350 s->errors->error_messages[s->errors->error_count - 1].error_code = error_code; in add_error()
356 static void add_pbf_warning(Scanner *s, int error_code, char *error, const char *sptr, const char *… in add_pbf_warning() argument
360 s->errors->warning_messages[s->errors->warning_count - 1].error_code = error_code; in add_pbf_warning()
366 static void add_pbf_error(Scanner *s, int error_code, char *error, const char *sptr, const char *cp… in add_pbf_error() argument
370 s->errors->error_messages[s->errors->error_count - 1].error_code = error_code; in add_pbf_error()
/PHP-8.0/ext/pdo_sqlite/
H A Dsqlite_driver.c34 pdo_error_type *pdo_err = stmt ? &stmt->error_code : &dbh->error_code; in _pdo_sqlite_error()
/PHP-8.0/ext/sockets/
H A Dsockets_arginfo.h69 ZEND_ARG_TYPE_INFO(0, error_code, IS_LONG, 0)
/PHP-8.0/ext/soap/
H A Dsoap.c75 char* _old_error_code = SOAP_GLOBAL(error_code);\
79 SOAP_GLOBAL(error_code) = "Server";\
84 SOAP_GLOBAL(error_code) = _old_error_code;\
90 char* _old_error_code = SOAP_GLOBAL(error_code);\
98 SOAP_GLOBAL(error_code) = "Client";\
123 SOAP_GLOBAL(error_code) = _old_error_code;\
305 soap_globals->error_code = NULL; in php_soap_init_globals()
331 SOAP_GLOBAL(error_code) = NULL; in PHP_RINIT_FUNCTION()
1848 char *code = SOAP_GLOBAL(error_code);
1858 !SOAP_GLOBAL(error_code) ||
[all …]
H A Dphp_sdl.c3166 char* old_error_code = SOAP_GLOBAL(error_code); in get_sdl()
3316 SOAP_GLOBAL(error_code) = "WSDL"; in get_sdl()
3323 SOAP_GLOBAL(error_code) = old_error_code; in get_sdl()
/PHP-8.0/ext/ldap/
H A Dldap_arginfo.h260 ZEND_ARG_INFO(1, error_code)
/PHP-8.0/ext/pdo/
H A Dpdo_stmt.c1599 if (stmt->error_code[0] == '\0') { in PHP_METHOD()
1603 RETURN_STRING(stmt->error_code); in PHP_METHOD()
1618 add_next_index_string(return_value, stmt->error_code); in PHP_METHOD()
1620 if (strncmp(stmt->error_code, PDO_ERR_NONE, sizeof(PDO_ERR_NONE))) { in PHP_METHOD()
/PHP-8.0/ext/standard/
H A Dbasic_functions.c839 int error_code; local
914 error_code = SetEnvironmentVariableW(keyw, valw);
916 if (error_code != 0
H A Dbasic_functions_arginfo.h1488 ZEND_ARG_INFO_WITH_DEFAULT_VALUE(1, error_code, "null")
1891 ZEND_ARG_INFO_WITH_DEFAULT_VALUE(1, error_code, "null")
1900 ZEND_ARG_INFO_WITH_DEFAULT_VALUE(1, error_code, "null")
/PHP-8.0/ext/pdo_odbc/
H A Dodbc_stmt.c542 strcpy(stmt->error_code, "HY106"); in odbc_stmt_fetch()
/PHP-8.0/ext/openssl/
H A Dxp_ssl.c2279 &xparam->outputs.error_code, in php_openssl_tcp_sockop_accept()
2466 xparam->outputs.returncode == 1 && xparam->outputs.error_code == EINPROGRESS))) in php_openssl_sockop_set_option()
H A Dopenssl.c442 int error_code = ERR_get_error(); in php_openssl_store_errors() local
444 if (!error_code) { in php_openssl_store_errors()
459 errors->buffer[errors->top] = error_code; in php_openssl_store_errors()
460 } while ((error_code = ERR_get_error())); in php_openssl_store_errors()
/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c1912 packet->error_code = uint1korr(p); in php_mysqlnd_prepare_read()
1916 if (ERROR_MARKER == packet->error_code) { in php_mysqlnd_prepare_read()
H A Dmysqlnd_ps.c335 if (0xFF == prepare_resp.error_code) { in mysqlnd_stmt_read_prepare_response()
/PHP-8.0/Zend/
H A Dzend_API.c212 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameter_error(int error_code, uint32_t num, char… in zend_wrong_parameter_error() argument
214 switch (error_code) { in zend_wrong_parameter_error()
243 ZEND_ASSERT(error_code != ZPP_ERROR_OK); in zend_wrong_parameter_error()
H A Dzend_API.h1249 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameter_error(int error_code, uint32_t num, char…

Completed in 187 milliseconds

123