HomeSort by relevance Sort by last modified time
    Searched refs:ERRNO (Results 1 - 25 of 29) sorted by null

1 2

  /external/curl/tests/libtest/
lib541.c 50 error = ERRNO;
61 error = ERRNO;
lib505.c 58 error = ERRNO;
69 error = ERRNO;
lib518.c 62 snprintf(msgbuff, sizeof(msgbuff), "%s, errno %d, %s", msg,
89 store_errmsg("fopen failed", ERRNO);
125 store_errmsg("getrlimit() failed", ERRNO);
172 store_errmsg("setrlimit() failed", ERRNO);
183 store_errmsg("setrlimit() failed", ERRNO);
191 store_errmsg("getrlimit() failed", ERRNO);
271 store_errmsg("memchunk, malloc() failed", ERRNO);
306 store_errmsg("fd, malloc() failed", ERRNO);
329 store_errmsg(strbuff, ERRNO);
lib525.c 58 error = ERRNO;
69 error = ERRNO;
lib537.c 63 snprintf(msgbuff, sizeof(msgbuff), "%s, errno %d, %s", msg, err,
90 store_errmsg("fopen failed", ERRNO);
126 store_errmsg("getrlimit() failed", ERRNO);
167 store_errmsg("setrlimit() failed", ERRNO);
178 store_errmsg("setrlimit() failed", ERRNO);
186 store_errmsg("getrlimit() failed", ERRNO);
245 store_errmsg("memchunk, malloc() failed", ERRNO);
300 store_errmsg("fd, malloc() failed", ERRNO);
323 store_errmsg(strbuff, ERRNO);
lib591.c 53 error = ERRNO;
lib582.c 247 error = ERRNO;
258 error = ERRNO;
  /external/elfutils/libdwfl/
dwfl_error.c 38 #include <errno.h>
107 value = DWFL_E (ERRNO, errno);
156 case OTHER_ERROR (ERRNO):
gzip.c 125 case Z (ERRNO):
196 return zlib_fail (&state, Z (ERRNO));
245 return zlib_fail (&state, Z (ERRNO));
libdwflP.h 39 #include <errno.h>
56 DWFL_ERROR (ERRNO, N_("See errno")) \
102 #define DWFL_E(name, errno) (OTHER_ERROR (name) | (errno))
768 #define CBFAIL (errno ? DWFL_E (ERRNO, errno) : DWFL_E_CB);
  /external/curl/lib/
non-ascii.c 108 error = ERRNO;
110 "The iconv_open(\"%s\", \"%s\") call failed with errno %i: %s",
123 error = ERRNO;
125 "The Curl_convert_to_network iconv call failed with errno %i: %s",
168 error = ERRNO;
170 "The iconv_open(\"%s\", \"%s\") call failed with errno %i: %s",
183 error = ERRNO;
185 "Curl_convert_from_network iconv call failed with errno %i: %s",
229 error = ERRNO;
231 "The iconv_open(\"%s\", \"%s\") call failed with errno %i: %s"
    [all...]
curl_ntlm_wb.c 87 if(ret == conn->ntlm_auth_hlpr_pid || errno == ECHILD)
180 error = ERRNO;
181 failf(conn->data, "Could not access ntlm_auth: %s errno %d: %s",
187 error = ERRNO;
188 failf(conn->data, "Could not open socket pair. errno %d: %s",
195 error = ERRNO;
198 failf(conn->data, "Could not fork. errno %d: %s",
210 error = ERRNO;
211 failf(conn->data, "Could not redirect child stdin. errno %d: %s",
217 error = ERRNO;
    [all...]
strerror.c 621 * The 'err' argument passed in to this function MUST be a true errno number
633 int old_errno = ERRNO;
654 /* 'sys_nerr' is the maximum errno number, it is not widely portable */
669 * The POSIX-style strerror_r() may set errno to ERANGE if insufficient
723 if(old_errno != ERRNO)
751 old_errno = ERRNO;
1050 if(old_errno != ERRNO)
curl_setup_once.h 37 #include <errno.h>
425 * Macro SOCKERRNO / SET_SOCKERRNO() returns / sets the *socket-related* errno
433 #define SOCKERRNO (errno)
434 #define SET_SOCKERRNO(x) (errno = (x))
439 * Macro ERRNO / SET_ERRNO() returns / sets the NOT *socket-related* errno
444 #define ERRNO ((int)GetLastError())
447 #define ERRNO (errno)
448 #define SET_ERRNO(x) (errno = (x)
    [all...]
parsedate.c 407 old_errno = ERRNO;
410 error = ERRNO;
telnet.c     [all...]
connect.c 324 infof(data, "SO_BINDTODEVICE %s failed with errno %d: %s;"
327 /* This is typically "errno 1, error: Operation not permitted" if
440 failf(data, "getsockname() failed with errno %d: %s",
465 failf(data, "bind failed with errno %d: %s",
680 failf(data, "getpeername() failed with errno %d: %s",
689 failf(data, "getsockname() failed with errno %d: %s",
696 error = ERRNO;
697 failf(data, "ssrem inet_ntop() failed with errno %d: %s",
705 error = ERRNO;
706 failf(data, "ssloc inet_ntop() failed with errno %d: %s"
    [all...]
  /external/mdnsresponder/mDNSShared/
DebugServices.h 468 @abstract Returns 0 if the test success. If the test fails, returns errno if non-zero and othewise the alternate error.
471 #define translate_errno( TEST, ERRNO, ALTERNATE_ERROR ) ( ( TEST ) ? 0 : ( ERRNO ) ? ( ERRNO ) : ( ALTERNATE_ERROR ) )
672 @abstract Check a condition and prints errno (if non-zero) to the log.
681 #define check_translated_errno( TEST, ERRNO, ALTERNATE_ERROR ) \
688 localErr = (int_least32_t)( ERRNO ); \
695 #define check_translated_errno( TEST, ERRNO, ALTERNATE_ERROR )
    [all...]
  /external/curl/src/
tool_dirhie.c 53 switch(ERRNO) {
tool_paramhlp.c 381 if((*val == CURL_OFF_T_MAX || *val == CURL_OFF_T_MIN) && (ERRNO == ERANGE))
385 if((*val == LONG_MIN || *val == LONG_MAX) && ERRNO == ERANGE)
  /external/c-ares/
setup_once.h 40 #include <errno.h>
355 * Macro SOCKERRNO / SET_SOCKERRNO() returns / sets the *socket-related* errno
363 #define SOCKERRNO (errno)
364 #define SET_SOCKERRNO(x) (errno = (x))
369 * Macro ERRNO / SET_ERRNO() returns / sets the NOT *socket-related* errno
374 #define ERRNO ((int)GetLastError())
377 #define ERRNO (errno)
378 #define SET_ERRNO(x) (errno = (x)
    [all...]
ares_gethostbyaddr.c 228 error = ERRNO;
ares_search.c 294 error = ERRNO;
inet_net_pton.c 63 * or -1 if some failure occurred (check errno). ENOENT means it was
69 * On Windows we store the error in the thread errno, not
71 * actual last winsock error. So use macro ERRNO to fetch the
72 * errno this funtion sets when returning (-1), not SOCKERRNO.
405 * or -1 if some failure occurred (check errno). ENOENT means it was
408 * On Windows we store the error in the thread errno, not
410 * actual last winsock error. So use macro ERRNO to fetch the
411 * errno this funtion sets when returning (-1), not SOCKERRNO.
447 if (result == -1 && ERRNO == ENOENT)
  /external/webrtc/webrtc/base/
logging.h 32 // LOG_ERRNO(sev) attempts to add a string description of an errno-derived
33 // error. errno and associated facilities exist on both Windows and POSIX,
115 ERRCTX_ERRNO, // System-local errno
314 LOG_E(sev, ERRNO, err)
316 LOG_ERRNO_EX(sev, errno)
344 (errno)

Completed in 463 milliseconds

1 2