| /PHP_TRUNK/ext/reflection/tests/ |
| H A D | exception.inc | 5 $this->errmsg = $_errmsg; 13 return $this->errmsg;
|
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 912 char **errmsg /* Error msg written here */ 30331 char errmsg[64] = ""; local 30340 sqlite3_snprintf(sizeof(errmsg),errmsg,"path error (len %d)",(int)pathLen); local 30346 sqlite3_snprintf(sizeof(errmsg),errmsg,"read error (len %d)",(int)readLen); local 30353 sqlite3_snprintf(sizeof(errmsg), errmsg, "create failed (%d)", errno); local 30357 sqlite3_snprintf(sizeof(errmsg), errmsg, "write failed (%d)", errno); local 30361 sqlite3_snprintf(sizeof(errmsg), errmsg, "rename failed (%d)", errno); local [all...] |
| H A D | sqlite3.h | 365 char **errmsg /* Error msg written here */
|
| H A D | sqlite3ext.h | 88 const char * (*errmsg)(sqlite3*); member in struct:sqlite3_api_routines 285 #define sqlite3_errmsg sqlite3_api->errmsg
|
| /PHP_TRUNK/ |
| H A D | server-tests.php | 248 public $errmsg = ''; variable 312 $this->errmsg = "HTTP Response $status[1] Not Found"; variable 327 $this->errmsg = 'Invalid HTTP Response'; variable 372 $fp = fsockopen($host, $port, $this->errno, $this->errmsg, $this->timeout); 374 $fp = fsockopen($host, $port, $this->errno, $this->errmsg); 377 $this->errmsg = "Connect Error to $host:$port"; variable 386 $this->errmsg = "Error Sending Request Data to $host"; variable
|
| /PHP_TRUNK/ext/interbase/ |
| H A D | interbase.c | 484 RETURN_STRING(IBG(errmsg), 1); 509 char *s = IBG(errmsg); 514 while ((s - IBG(errmsg)) < MAX_ERRMSG - (IBASE_MSGSIZE + 2) && isc_interprete(s, &statusp)) { 515 strcat(IBG(errmsg), " "); 516 s = IBG(errmsg) + strlen(IBG(errmsg)); 519 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", IBG(errmsg)); 535 vsnprintf(IBG(errmsg), MAX_ERRMSG, msg, ap); 540 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", IBG(errmsg)); 732 ibase_globals->sql_code = *ibase_globals->errmsg [all...] |
| H A D | php_ibase_includes.h | 36 #define RESET_ERRMSG do { IBG(errmsg)[0] = '\0'; IBG(sql_code) = 0; } while (0) 67 char errmsg[MAX_ERRMSG]; variable
|
| /PHP_TRUNK/ext/ldap/ |
| H A D | ldap.c | 1824 /* {{{ proto bool ldap_parse_result(resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals) 1828 zval *link, *result, *errcode, *matcheddn, *errmsg, *referrals; local 1835 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rrz|zzz", &link, &result, &errcode, &matcheddn, &errmsg, &referrals) != SUCCESS) { 1870 zval_dtor(errmsg); 1872 ZVAL_EMPTY_STRING(errmsg); 1874 ZVAL_STRING(errmsg, lerrmsg, 1); 2306 NULL, /* errmsg */ 2615 ZEND_ARG_INFO(1, errmsg)
|
| /PHP_TRUNK/ext/mysqli/ |
| H A D | php_mysqli_structs.h | 81 #include <errmsg.h>
|
| /PHP_TRUNK/ext/pdo_firebird/ |
| H A D | firebird_driver.c | 699 char errmsg[512]; local 701 isc_interprete(errmsg, &s); 703 "HY000", H->isc_status[1], errmsg); local
|
| /PHP_TRUNK/ext/pdo_mysql/ |
| H A D | mysql_driver.c | 73 if (einfo->errmsg) { 74 pefree(einfo->errmsg, dbh->is_persistent); 75 einfo->errmsg = NULL; 80 einfo->errmsg = pestrdup( 87 einfo->errmsg = pestrdup( 93 einfo->errmsg = pestrdup(mysql_error(H->server), dbh->is_persistent); 109 *pdo_err, einfo->errcode, einfo->errmsg); 133 add_next_index_string(info, einfo->errmsg, 1); 152 if (H->einfo.errmsg) { 153 pefree(H->einfo.errmsg, db [all...] |
| H A D | php_pdo_mysql_int.h | 96 char *errmsg; member in struct:__anon153
|
| H A D | mysql_statement.c | 58 if (S->einfo.errmsg) { 59 pefree(S->einfo.errmsg, stmt->dbh->is_persistent); 60 S->einfo.errmsg = NULL;
|
| /PHP_TRUNK/ext/pdo_oci/ |
| H A D | php_pdo_oci_int.h | 27 char *errmsg; member in struct:__anon158
|
| H A D | oci_driver.c | 46 if (S->einfo.errmsg) { 53 add_next_index_string(info, einfo->errmsg, 1); 78 if (einfo->errmsg) { 79 pefree(einfo->errmsg, dbh->is_persistent); 82 einfo->errmsg = NULL; 90 einfo->errmsg = pestrdup(tmp_buf, dbh->is_persistent); 100 einfo->errmsg = pestrdup(tmp_buf, dbh->is_persistent); 105 einfo->errmsg = pestrdup(tmp_buf, dbh->is_persistent); 109 einfo->errmsg = pestrdup(tmp_buf, dbh->is_persistent); 113 einfo->errmsg [all...] |
| H A D | oci_statement.c | 91 if (S->einfo.errmsg) { 92 pefree(S->einfo.errmsg, stmt->dbh->is_persistent); 93 S->einfo.errmsg = NULL;
|
| /PHP_TRUNK/ext/pdo_pgsql/ |
| H A D | pgsql_driver.c | 68 char *errmsg = PQerrorMessage(H->server); local 74 if (einfo->errmsg) { 75 pefree(einfo->errmsg, dbh->is_persistent); 76 einfo->errmsg = NULL; 86 if (errmsg) { 87 einfo->errmsg = _pdo_pgsql_trim_message(errmsg, dbh->is_persistent); 92 *pdo_err, einfo->errcode, einfo->errmsg); 112 add_next_index_string(info, einfo->errmsg, 1); 202 if (H->einfo.errmsg) { [all...] |
| H A D | php_pdo_pgsql_int.h | 36 char *errmsg; member in struct:__anon169
|
| /PHP_TRUNK/ext/pdo_sqlite/ |
| H A D | php_pdo_sqlite_int.h | 30 char *errmsg; member in struct:__anon175
|
| H A D | sqlite_driver.c | 45 if (einfo->errmsg) { 46 pefree(einfo->errmsg, dbh->is_persistent); 48 einfo->errmsg = pestrdup((char*)sqlite3_errmsg(H->db), dbh->is_persistent); 82 *pdo_err, einfo->errcode, einfo->errmsg); 96 add_next_index_string(info, einfo->errmsg, 1); 167 if (einfo->errmsg) { 168 pefree(einfo->errmsg, dbh->is_persistent); 169 einfo->errmsg = NULL; 209 char *errmsg = NULL; local 211 if (sqlite3_exec(H->db, sql, NULL, NULL, &errmsg) ! 244 char *errmsg = NULL; local 258 char *errmsg = NULL; local 272 char *errmsg = NULL; local [all...] |
| /PHP_TRUNK/ext/sybase_ct/ |
| H A D | php_sybase_ct.c | 386 static CS_RETCODE CS_PUBLIC _client_message_handler(CS_CONTEXT *context, CS_CONNECTION *connection, CS_CLIENTMSG *errmsg) argument 390 if (CS_SEVERITY(errmsg->msgnumber) >= SybCtG(min_client_severity)) { 391 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Sybase: Client message: %s (severity %ld)", errmsg->msgstring, (long)CS_SEVERITY(errmsg->msgnumber)); 394 SybCtG(server_message) = estrdup(errmsg->msgstring); 400 if (CS_SEVERITY(errmsg->msgnumber) == CS_SV_RETRY_FAIL && 401 CS_NUMBER(errmsg->msgnumber) == 63 && 402 CS_ORIGIN(errmsg->msgnumber) == 2 && 403 CS_LAYER(errmsg->msgnumber) == 1)
|
| /PHP_TRUNK/ext/mysql/ |
| H A D | php_mysql.c | 76 # include <errmsg.h>
|
| /PHP_TRUNK/ext/phar/ |
| H A D | zip.c | 302 #define PHAR_ZIP_FAIL_FREE(errmsg, save) \ 317 spprintf(error, 4096, "phar error: %s in zip-based phar \"%s\"", errmsg, mydata->fname); \ 326 #define PHAR_ZIP_FAIL(errmsg) \ 341 spprintf(error, 4096, "phar error: %s in zip-based phar \"%s\"", errmsg, mydata->fname); \
|