Searched refs:ETIMEDOUT (Results 26 - 50 of 130) sorted by relevance

123456

/macosx-10.9.5/apr-30/apr/apr/locks/unix/
H A Dthread_cond.c95 if (ETIMEDOUT == rv) {
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KerberosSupport/
H A DSocketErrors.h141 /* $Copyright: * * Copyright 1998-2000 by the Massachusetts Institute of Technology. * * All rights reserved. * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is hereby granted, * provided that the above copyright notice appear in all copies and that * both that copyright notice and this permission notice appear in * supporting documentation, and that the name of M.I.T. not be used in * advertising or publicity pertaining to distribution of the software * without specific, written prior permission. Furthermore if you modify * this software you must label your software as modified software and not * distribute it in such a fashion that it might be confused with the * original MIT software. M.I.T. makes no representations about the * suitability of this software for any purpose. It is provided "as is" * without express or implied warranty. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * * Individual source code files are copyright MIT, Cygnus Support, * OpenVision, Oracle, Sun Soft, FundsXpress, and others. * * Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, * and Zephyr are trademarks of the Massachusetts Institute of Technology * (MIT). No commercial use of these trademarks may be made without prior * written permission of MIT. * * "Commercial use" means use of a name in a product or other for-profit * manner. It does NOT prevent a commercial firm from referring to the MIT * trademarks in order to convey information (although in doing so, * recognition of their trademark status should be given). * $ */ /* $Header: /Volumes/backup/dsmigrate/Dumps/../CVS/passwordserver_sasl/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KerberosSupport/SocketErrors.h,v 1.4 2005/01/10 19:10:48 snsimon Exp $ */ /* * * SocketErrors.h -- Error codes for socket errors. * */ /* NOTE: Before you add a new error code, check the other libraries to make sure that you have not taken an error code range designated for another library. */ #ifndef _SOCKET_ERRORS_ #define _SOCKET_ERRORS_ /* New error definitions */ #define kSocketsFirstErr 200 /* The beginning of the sockets errors */ #define kENOTDIRErr 201 /* Not a directory */ #define kEISDIRErr 202 /* Is a directory */ #define kEPFNOSUPPORTErr 203 /* Protocol family not supported */ #define kEAFNOSUPPORTErr 204 /* Address family not supported */ #define kSockNotInitErr 205 /* Sockets lib is not initialized */ #define kSockAlreadyInitErr 206 /* Sockets lib is already initialized */ #define kNoOTErr 207 /* Open Transport is unavailable */ #define kSocketIsIdleErr 208 /* No operation in progress on socket */ #define kEMFILEErr 209 /* Too many sockets open */ #define kENOSPCErr 210 /* Not enough space to write output */ #define kEBADDOMAINNAMEErr 211 /* Bad domain name in TCP/IP settings */ #define kEBADNAMESERVERSErr 212 /* Bad name servers in TCP/IP settings */ #define kENONETWORKErr 213 /* No network: check TCP/IP settings */ #define kSocketsLastErr 299 /* The last sockets error */ #ifndef rez /* This part cannot be included by a rez file */ #include <OpenTptInternet.h> #include <errno.h> #undef ERANGE /* defined by errno.h -- but we want the OT definition */ /* Mappings from errno.h errors to OT LibC errors */ enum OTCompatErrors { /* EPERM = kEPERMErr, /* Permission denied */ /* ENOENT = kENOENTErr, /* No such file or directory */ ESRCH = kESRCHErr, /* No such process */ ENORSRC = kENORSRCErr, /* No such resource */ EINTR = kEINTRErr, /* Interrupted system service */ /* EIO = kEIOErr, /* I/O error */ ENXIO = kENXIOErr, /* No such device or address */ /* EBADF = kEBADFErr, /* Bad file number */ EAGAIN = kEAGAINErr, /* Try operation again later */ /* ENOMEM = kENOMEMErr, /* Not enough space */ /* EACCES = kEACCESErr, /* Permission denied */ EFAULT = kEFAULTErr, /* Bad address */ EBUSY = kEBUSYErr, /* Device or resource busy */ /* EEXIST = kEEXISTErr, /* File exists */ ENODEV = kENODEVErr, /* No such device */ ENOTDIR = kENOTDIRErr, /* Not a directory */ /* EISDIR = kEISDIRErr, /* Is a directory */ /* EMFILE = kEMFILEErr, /* Too many sockets open */ /* EINVAL = kEINVALErr, /* Invalid argument */ ENOTTY = kENOTTYErr, /* Not a character device */ EPIPE = kEPIPEErr, /* Broken pipe */ /* ENOSPC = kENOSPCErr, /* Not enough space to write output */ ERANGE = kERANGEErr, /* Message size too large for STREAM */ EDEADLK = kEDEADLKErr, /* or a deadlock would occur */ EPROTO = kEPROTOErr, /* Protocol error */ EBADMSG = kEBADMSGErr, /* Trying to read unreadable message */ ECANCEL = kECANCELErr, /* Operation cancelled */ ENOMSG = kENOMSGErr, /* No message of desired type */ ENOSTR = kENOSTRErr, /* Device not a stream */ ENODATA = kENODATAErr, /* No data (for no delay I/O) */ ETIME = kETIMEErr, /* Timer expired */ ENOSR = kENOSRErr, /* Out of streams resources */ ENOTSOCK = kENOTSOCKErr, /* Socket operation on non-socket */ EDESTADDRREQ = kEDESTADDRREQErr, /* Destination address required */ EMSGSIZE = kEMSGSIZEErr, /* Message too long */ EPROTOTYPE = kEPROTOTYPEErr, /* Protocol wrong type for socket */ ENOPROTOOPT = kENOPROTOOPTErr, /* Protocol not available */ EPROTONOSUPPORT = kEPROTONOSUPPORTErr, /* Protocol not supported */ ESOCKTNOSUPPORT = kESOCKTNOSUPPORTErr, /* Socket type not supported */ EOPNOTSUPP = kEOPNOTSUPPErr, /* Operation not supported on socket */ EPFNOSUPPORT = kEPFNOSUPPORTErr, /* Protocol family not supported */ EAFNOSUPPORT = kEAFNOSUPPORTErr, /* Address family not supported */ EADDRINUSE = kEADDRINUSEErr, /* Address already in use */ EADDRNOTAVAIL = kEADDRNOTAVAILErr, /* Can't assign requested address */ ENETDOWN = kENETDOWNErr, /* No network, check TCP/IP settings */ ENETUNREACH = kENETUNREACHErr, /* Network is unreachable */ ENETRESET = kENETRESETErr, /* Network dropped connection on reset */ ECONNABORTED = kECONNABORTEDErr, /* Software caused connection abort */ ECONNRESET = kECONNRESETErr, /* Connection reset by peer */ ENOBUFS = kENOBUFSErr, /* No buffer space available */ EISCONN = kEISCONNErr, /* Socket is already connected */ ENOTCONN = kENOTCONNErr, /* Socket is not connected */ ESHUTDOWN = kESHUTDOWNErr, /* Can't send after socket shutdown */ ETOOMANYREFS = kETOOMANYREFSErr, /* Too many references: can't splice */ ETIMEDOUT = kETIMEDOUTErr, /* Connection timed out */ ECONNREFUSED = kECONNREFUSEDErr, /* Co (…)
1 /* $Copyright: enumerator in enum:OTCompatErrors
/macosx-10.9.5/postfix-252/postfix/src/tls/
H A Dtls_bio_ops.c95 /* errno value is set to ETIMEDOUT, when some network read/write
253 * (retval = -1, errno = ETIMEDOUT) when the time limit is exceeded.
279 errno = ETIMEDOUT;
/macosx-10.9.5/smb-697.95.1/lib/smb/
H A Dnb.c141 error = ETIMEDOUT;
H A Dnbns_rq.c177 return ETIMEDOUT;
179 return ETIMEDOUT;
253 if (error != ETIMEDOUT || --retrycount == 0) {
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclPosixStr.c428 #if defined(ETIMEDOUT) && (!defined(ENOSTR) || (ETIMEDOUT != ENOSTR))
429 case ETIMEDOUT: return "ETIMEDOUT";
877 #if defined(ETIMEDOUT) && (!defined(ENOSTR) || (ETIMEDOUT != ENOSTR))
878 case ETIMEDOUT: return "connection timed out";
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclPosixStr.c430 #if defined(ETIMEDOUT) && (!defined(ENOSTR) || (ETIMEDOUT != ENOSTR))
431 case ETIMEDOUT: return "ETIMEDOUT";
881 #if defined(ETIMEDOUT) && (!defined(ENOSTR) || (ETIMEDOUT != ENOSTR))
882 case ETIMEDOUT: return "connection timed out";
/macosx-10.9.5/BerkeleyDB-21/db/clib/
H A Dstrerror.c161 ERRSTR(ETIMEDOUT, "Operation timed out");
/macosx-10.9.5/bind9-45.100/bind9/lib/lwres/win32/include/lwres/
H A Dnet.h140 #define ETIMEDOUT WSAETIMEDOUT macro
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A Dsystem_error.h197 timed_out, // ETIMEDOUT
450 # ifndef ETIMEDOUT
451 # define ETIMEDOUT 138 macro
598 stream_timeout = ETIMEDOUT,
601 timed_out = ETIMEDOUT,
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/dtrace/scripts/
H A Derrno.d143 inline int ETIMEDOUT = 60;
144 #pragma D binding "1.0" ETIMEDOUT
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Derrno.h179 #define ETIMEDOUT 60 /* Operation timed out */ macro
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dcurl_setup_once.h509 #undef ETIMEDOUT /* override definition in errno.h */ macro
510 #define ETIMEDOUT WSAETIMEDOUT macro
/macosx-10.9.5/tcl-102/tcl/tcl/win/
H A DtclWinPort.h186 #ifndef ETIMEDOUT
187 # define ETIMEDOUT 145 /* Connection timed out */ macro
/macosx-10.9.5/tcl-102/tcl84/tcl/win/
H A DtclWinPort.h176 #ifndef ETIMEDOUT
177 # define ETIMEDOUT 145 /* Connection timed out */ macro
/macosx-10.9.5/libdispatch-339.92.1/src/
H A Dsemaphore.c339 if (ret == -1 && errno != ETIMEDOUT) {
363 errno = ETIMEDOUT;
566 if (!(ret == -1 && errno == ETIMEDOUT)) {
590 errno = ETIMEDOUT;
628 errno = ETIMEDOUT;
/macosx-10.9.5/smb-697.95.1/kernel/netsmb/
H A Dsmb_iod.c232 smb_iod_rqprocessed(rqp, ETIMEDOUT, 0);
1041 return ETIMEDOUT;
1184 * So just treat it like a softmount happened and return ETIMEDOUT.
1194 SMBERROR("Reconnect in the middle of a transaction messages, just return ETIMEDOUT\n");
1195 rqp->sr_lerror = ETIMEDOUT;
1263 smb_iod_rqprocessed(rqp, ETIMEDOUT, 0);
1269 smb_iod_rqprocessed(rqp, ETIMEDOUT, 0);
1275 smb_iod_rqprocessed(rqp, ETIMEDOUT, 0);
1304 smb_iod_rqprocessed(rqp, ETIMEDOUT, 0);
1419 smb_iod_rqprocessed(rqp, ETIMEDOUT,
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/nfs/
H A Dkrpc_subr.c307 error = ETIMEDOUT;
412 error = ETIMEDOUT;
521 error = ETIMEDOUT;
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/win32/include/isc/
H A Dnet.h217 #define ETIMEDOUT WSAETIMEDOUT macro
/macosx-10.9.5/emacs-92/emacs/nt/inc/sys/
H A Dsocket.h151 #define ETIMEDOUT WSAETIMEDOUT macro
/macosx-10.9.5/ntp-88/lib/isc/win32/include/isc/
H A Dnet.h217 #define ETIMEDOUT WSAETIMEDOUT macro
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dspawn_command.c303 && errno == ETIMEDOUT) {
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dstrerror.c403 #if defined (ETIMEDOUT)
404 ENTRY(ETIMEDOUT, "ETIMEDOUT", "Connection timed out"),
/macosx-10.9.5/autofs-234/automountd/
H A Dautod_readdir.c778 if (error != ETIMEDOUT) {
815 if (error == ETIMEDOUT && (p->ttl > time((time_t *)NULL))) {
837 clean_fstab_cache(error == ETIMEDOUT);
/macosx-10.9.5/apache-786.1/httpd/os/unix/
H A Dunixd.c597 #ifdef ETIMEDOUT
598 case ETIMEDOUT:

Completed in 579 milliseconds

123456