Home
last modified time | relevance | path

Searched refs:errmsg (Results 51 – 75 of 75) sorted by relevance

123

/PHP-7.4/Zend/tests/
H A Derrmsg_018.phpt2 errmsg: static abstract function
H A Derrmsg_005.phpt2 errmsg: can't use method return value in write context
H A Derrmsg_025.phpt2 errmsg: cannot inherit previously inherited constant
H A Derrmsg_023.phpt2 errmsg: access level must be the same or weaker
H A Derrmsg_013.phpt2 errmsg: default value for parameters with array type can only be an array or NULL
/PHP-7.4/ext/ldap/tests/
H A Dldap_search_sort_controls.phpt34 ldap_parse_result($link, $result, $errcode , $matcheddn , $errmsg , $referrals, $controls),
36 $errmsg,
64 ldap_parse_result($link, $result, $errcode , $matcheddn , $errmsg , $referrals, $controls),
H A Dldap_parse_result_controls.phpt24 ldap_parse_result($link, $result, $errcode, $dn, $errmsg, $refs, $ctrls),
H A Dldap_search_paged_result_controls.phpt25 ldap_parse_result($link, $result, $errcode , $matcheddn , $errmsg , $referrals, $controls),
/PHP-7.4/ext/pdo_pgsql/
H A Dpgsql_driver.c73 char *errmsg = PQerrorMessage(H->server); in _pdo_pgsql_error() local
79 if (einfo->errmsg) { in _pdo_pgsql_error()
80 pefree(einfo->errmsg, dbh->is_persistent); in _pdo_pgsql_error()
81 einfo->errmsg = NULL; in _pdo_pgsql_error()
92 einfo->errmsg = estrdup(msg); in _pdo_pgsql_error()
94 else if (errmsg) { in _pdo_pgsql_error()
95 einfo->errmsg = _pdo_pgsql_trim_message(errmsg, dbh->is_persistent); in _pdo_pgsql_error()
119 add_next_index_string(info, einfo->errmsg); in pdo_pgsql_fetch_error_func()
212 if (H->einfo.errmsg) { in pgsql_handle_closer()
214 H->einfo.errmsg = NULL; in pgsql_handle_closer()
[all …]
H A Dphp_pdo_pgsql_int.h34 char *errmsg; member
/PHP-7.4/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h28 char *errmsg; member
/PHP-7.4/ext/iconv/tests/
H A Diconv_mime_decode.phpt9 function my_error_handler($errno, $errmsg, $filename, $linenum, $vars)
11 echo "$errno: $errmsg\n";
H A Diconv_mime_encode.phpt9 function my_error_handler($errno, $errmsg, $filename, $linenum, $vars)
11 echo "$errno: $errmsg\n";
/PHP-7.4/ext/phar/tests/
H A Dcreate_path_error.phpt22 function error_handler($errno, $errmsg)
24 echo "Error: $errmsg";
/PHP-7.4/ext/pdo_oci/
H A Dphp_pdo_oci_int.h25 char *errmsg; member
H A Doci_statement.c98 if (S->einfo.errmsg) { in oci_stmt_dtor()
99 pefree(S->einfo.errmsg, stmt->dbh->is_persistent); in oci_stmt_dtor()
100 S->einfo.errmsg = NULL; in oci_stmt_dtor()
/PHP-7.4/ext/pdo_firebird/
H A Dfirebird_driver.c700 char errmsg[512]; in pdo_firebird_handle_factory() local
702 fb_interpret(errmsg, sizeof(errmsg),&s); in pdo_firebird_handle_factory()
704 "HY000", H->isc_status[1], errmsg); in pdo_firebird_handle_factory()
/PHP-7.4/ext/pdo_mysql/
H A Dphp_pdo_mysql_int.h101 char *errmsg; member
H A Dmysql_statement.c54 if (S->einfo.errmsg) { in pdo_mysql_stmt_dtor()
55 pefree(S->einfo.errmsg, stmt->dbh->is_persistent); in pdo_mysql_stmt_dtor()
56 S->einfo.errmsg = NULL; in pdo_mysql_stmt_dtor()
/PHP-7.4/Zend/tests/type_declarations/
H A Dscalar_return_basic.phpt12 set_error_handler(function (int $errno, string $errmsg, string $file, int $line) use ($errnames) {
13 echo "$errnames[$errno]: $errmsg on line $line\n";
H A Dscalar_basic.phpt10 set_error_handler(function (int $errno, string $errmsg, string $file, int $line) use ($errnames) {
11 echo "$errnames[$errno]: $errmsg on line $line\n";
H A Dscalar_return_basic_64bit.phpt12 set_error_handler(function (int $errno, string $errmsg, string $file, int $line) use ($errnames) {
13 echo "$errnames[$errno]: $errmsg on line $line\n";
/PHP-7.4/ext/ldap/
H A Dldap.c3384 zval *link, *result, *errcode, *matcheddn, *errmsg, *referrals, *serverctrls; in PHP_FUNCTION() local
3392 …if (zend_parse_parameters(myargcount, "rrz|zzzz", &link, &result, &errcode, &matcheddn, &errmsg, &… in PHP_FUNCTION()
3436 ZEND_TRY_ASSIGN_REF_EMPTY_STRING(errmsg); in PHP_FUNCTION()
3438 ZEND_TRY_ASSIGN_REF_STRING(errmsg, lerrmsg); in PHP_FUNCTION()
4274 char* errmsg = NULL; in PHP_FUNCTION() local
4325 …rc = ldap_parse_result(ld->link, ldap_res, &err, NULL, &errmsg, NULL, (myargcount > 4 ? &lserverct… in PHP_FUNCTION()
4346 …ULL, E_WARNING, "Passwd modify extended operation failed: %s (%d)", (errmsg ? errmsg : ldap_err2st… in PHP_FUNCTION()
4357 if (errmsg != NULL) { in PHP_FUNCTION()
4358 ldap_memfree(errmsg); in PHP_FUNCTION()
4744 ZEND_ARG_INFO(1, errmsg)
/PHP-7.4/ext/phar/
H A Dzip.c322 #define PHAR_ZIP_FAIL_FREE(errmsg, save) \ in phar_parse_zipfile() argument
335 spprintf(error, 4096, "phar error: %s in zip-based phar \"%s\"", errmsg, mydata->fname); \ in phar_parse_zipfile()
344 #define PHAR_ZIP_FAIL(errmsg) \ in phar_parse_zipfile() argument
357 spprintf(error, 4096, "phar error: %s in zip-based phar \"%s\"", errmsg, mydata->fname); \ in phar_parse_zipfile()
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch2549 - char errmsg[512];
2552 - (void)regerror(rc, &rx->rx, errmsg, sizeof(errmsg));
2554 - errmsg);

Completed in 90 milliseconds

123