Searched defs:errno (Results 1 - 5 of 5) sorted by relevance
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 24193 ** GetLastError() and FormatMessage() on windows (or errno and 24387 #include <errno.h> 24479 int lastErrno; /* The unix errno from last I/O error */ 24956 do{ rc = osOpen(z,f,m); }while( rc<0 && errno==EINTR ); 25038 savedErrno = errno; 25058 errno = savedErrno; 25070 do{ rc = osFtruncate(h,sz); }while( rc<0 && errno==EINTR ); 25075 ** This routine translates a standard POSIX errno code into something 25090 ** the value of errno as the first argument. Since a system call has failed, 25091 ** errno shoul 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...] |
| /PHP_TRUNK/ |
| H A D | server-tests.php | 249 public $errno = 0; variable 372 $fp = fsockopen($host, $port, $this->errno, $this->errmsg, $this->timeout); 374 $fp = fsockopen($host, $port, $this->errno, $this->errmsg);
|
| /PHP_TRUNK/ext/ldap/ |
| H A D | ldap.c | 597 int num_attribs = 0, ret = 1, i, errno, argcount = ZEND_NUM_ARGS(); local 754 errno = ldap_search_s(ld->link, ldap_base_dn, scope, ldap_filter, ldap_attrs, ldap_attrsonly, &ldap_res); 756 if (errno != LDAP_SUCCESS 757 && errno != LDAP_SIZELIMIT_EXCEEDED 759 && errno != LDAP_ADMINLIMIT_EXCEEDED 762 && errno != LDAP_REFERRAL 765 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Search: %s", ldap_err2string(errno)); 768 if (errno == LDAP_SIZELIMIT_EXCEEDED) { 772 else if (errno == LDAP_ADMINLIMIT_EXCEEDED) { 1452 /* {{{ proto string ldap_err2str(int errno) 1494 int errno; local [all...] |
| /PHP_TRUNK/ext/mysqli/ |
| H A D | mysqli_warning.c | 140 int errno; local 155 errno = Z_LVAL_PP(entry); 161 w = php_new_warning(*entry, errno TSRMLS_CC); 342 {"errno", sizeof("errno") - 1, mysqli_warning_errno, NULL}, 351 {ZEND_ACC_PUBLIC, "errno", sizeof("errno") - 1, -1, 0, NULL, 0, NULL},
|
| /PHP_TRUNK/ext/sockets/ |
| H A D | windows_common.h | 28 #ifdef errno 29 # undef errno macro 31 #define errno WSAGetLastError() macro 36 #ifdef ENETUNREACH /* errno.h probably included */
|
Completed in 119 milliseconds