Searched refs:error_msg (Results 1 – 9 of 9) sorted by relevance
/PHP-5.3/ext/mysqlnd/ |
H A D | mysqlnd_loaddata.c | 66 strcpy(info->error_msg, "open_basedir restriction in effect. Unable to open file"); in mysqlnd_local_infile_init() 76 snprintf((char *)info->error_msg, sizeof(info->error_msg), "Can't find file '%-.64s'.", filename); in mysqlnd_local_infile_init() 98 strcpy(info->error_msg, "Error reading file"); in mysqlnd_local_infile_read() 116 strlcpy(error_buf, info->error_msg, error_buf_len); in mysqlnd_local_infile_error()
|
H A D | mysqlnd_structs.h | 112 char error_msg[MYSQLND_ERRMSG_SIZE + 1]; member 136 int (*local_infile_error)(void *ptr, char *error_msg, unsigned int error_msg_len TSRMLS_DC);
|
/PHP-5.3/ext/exif/ |
H A D | test.txt | 49 function error_msg() { 237 <tr><td>ImageWidth</td><td><?=@exif_tagname(0x0100)?></td><td><?=error_msg()?></td></tr> 238 <tr><td>JPEGProc</td><td><?=@exif_tagname(0x0200)?></td><td><?=error_msg()?></td></tr> 239 <tr><td>SceneType</td><td><?=@exif_tagname(0xA301)?></td><td><?=error_msg()?></td></tr> 240 <tr><td>false</td><td><?=@exif_tagname(0x0000)===false?'false':'value'?></td><td><?=error_msg()?></… 274 $error = error_msg();// clear message 292 $error = error_msg();// clear message 313 $error = error_msg();// clear message 320 // ah no!$error = error_msg(); // force o.k.
|
/PHP-5.3/ext/mysqli/ |
H A D | mysqli.c | 860 MyG(error_msg) = NULL; in PHP_RINIT_FUNCTION() 896 if (MyG(error_msg)) { in PHP_RSHUTDOWN_FUNCTION() 897 efree(MyG(error_msg)); in PHP_RSHUTDOWN_FUNCTION() 1372 LOCAL_INFILE_ERROR_MSG(data->error_msg, ER(CR_UNKNOWN_ERROR)); in php_local_infile_init() 1387 snprintf((char *)data->error_msg, sizeof(data->error_msg), "Can't find file '%-.64s'.", filename); in php_local_infile_init() 1419 LOCAL_INFILE_ERROR_MSG(data->error_msg, ER(2)); in php_local_infile_read() 1450 LOCAL_INFILE_ERROR_MSG(data->error_msg, in php_local_infile_read() 1456 LOCAL_INFILE_ERROR_MSG(data->error_msg, "Too much data returned"); in php_local_infile_read() 1473 LOCAL_INFILE_ERROR_MSG(data->error_msg, "File handle closed"); in php_local_infile_read() 1492 strlcpy(error_msg, data->error_msg, error_msg_len); in php_local_infile_error() [all …]
|
H A D | php_mysqli_structs.h | 167 char error_msg[LOCAL_INFILE_ERROR_LEN]; member 298 char *error_msg; variable
|
H A D | mysqli_nonapi.c | 47 if (MyG(error_msg)) { in php_mysqli_set_error() 48 efree(MyG(error_msg)); in php_mysqli_set_error() 51 MyG(error_msg) = estrdup(mysql_err); in php_mysqli_set_error() 53 MyG(error_msg) = NULL; in php_mysqli_set_error() 339 if (MyG(error_msg)) { 340 RETURN_STRING(MyG(error_msg),1);
|
H A D | mysqli_prop.c | 147 if (MyG(error_msg)) { in link_connect_error_read() 148 ZVAL_STRING(*retval, MyG(error_msg), 1); in link_connect_error_read()
|
/PHP-5.3/main/ |
H A D | SAPI.h | 229 void (*sapi_error)(int type, const char *error_msg, ...);
|
/PHP-5.3/ |
H A D | NEWS | 6217 - Fixed bug #35248 (sqlite_query() doesn't set error_msg when return value is
|
Completed in 43 milliseconds