HomeSort by relevance Sort by last modified time
    Searched refs:ERRNO (Results 1 - 25 of 33) 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));
  /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 86 if(ret == conn->ntlm_auth_hlpr_pid || errno == ECHILD)
179 error = ERRNO;
180 failf(conn->data, "Could not access ntlm_auth: %s errno %d: %s",
186 error = ERRNO;
187 failf(conn->data, "Could not open socket pair. errno %d: %s",
194 error = ERRNO;
197 failf(conn->data, "Could not fork. errno %d: %s",
209 error = ERRNO;
210 failf(conn->data, "Could not redirect child stdin. errno %d: %s",
216 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)
828 old_errno = ERRNO;
1127 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 405 old_errno = ERRNO;
408 error = ERRNO;
telnet.c     [all...]
  /ndk/build/awk/
extract-debuggable.awk 121 if (getline <= 0) _xml_panic("Unexpected EOF: " ERRNO);
extract-minsdkversion.awk 118 if (getline <= 0) _xml_panic("Unexpected EOF: " ERRNO);
extract-package-name.awk 122 if (getline <= 0) _xml_panic("Unexpected EOF: " ERRNO);
xml.awk 106 if (getline <= 0) _xml_panic("Unexpected EOF: " ERRNO);
extract-launchable.awk 180 if (getline <= 0) _xml_panic("Unexpected EOF: " ERRNO);
  /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 379 if((*val == CURL_OFF_T_MAX || *val == CURL_OFF_T_MIN) && (ERRNO == ERANGE))
383 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;

Completed in 548 milliseconds

1 2