/external/curl/tests/libtest/ |
lib541.c | 50 error = ERRNO; 61 error = ERRNO;
|
lib505.c | 58 error = ERRNO; 69 error = ERRNO;
|
lib518.c | 62 sprintf(msgbuff, "%s, errno %d, %s", msg, err, strerror(err)); 88 store_errmsg("fopen() failed", ERRNO); 124 store_errmsg("getrlimit() failed", ERRNO); 171 store_errmsg("setrlimit() failed", ERRNO); 182 store_errmsg("setrlimit() failed", ERRNO); 190 store_errmsg("getrlimit() failed", ERRNO); 270 store_errmsg("memchunk, malloc() failed", ERRNO); 305 store_errmsg("fd, malloc() failed", ERRNO); 328 store_errmsg(strbuff, ERRNO);
|
lib525.c | 58 error = ERRNO; 69 error = ERRNO;
|
lib537.c | 63 sprintf(msgbuff, "%s, errno %d, %s", msg, err, strerror(err)); 89 store_errmsg("fopen() failed", ERRNO); 125 store_errmsg("getrlimit() failed", ERRNO); 166 store_errmsg("setrlimit() failed", ERRNO); 177 store_errmsg("setrlimit() failed", ERRNO); 185 store_errmsg("getrlimit() failed", ERRNO); 244 store_errmsg("memchunk, malloc() failed", ERRNO); 299 store_errmsg("fd, malloc() failed", ERRNO); 322 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 | 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 | 614 * The 'err' argument passed in to this function MUST be a true errno number 626 int old_errno = ERRNO; 647 /* 'sys_nerr' is the maximum errno number, it is not widely portable */ 662 * The POSIX-style strerror_r() may set errno to ERANGE if insufficient 716 if(old_errno != ERRNO) 821 old_errno = ERRNO; 1118 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 | 358 if((*val == CURL_OFF_T_MAX || *val == CURL_OFF_T_MIN) && (ERRNO == ERANGE)) 362 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;
|