Searched refs:h_errno (Results 1 - 25 of 84) sorted by relevance

1234

/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dh_errno.c37 int h_errno = -17; /* Some magic number */ variable
H A Dgetipnodebyname.c39 static int h_errno = NO_RECOVERY; variable
62 switch (h_errno) {
66 *error_num = h_errno;
H A Dgetipnodebyaddr.c50 switch (h_errno) {
54 *error_num = h_errno;
/macosx-10.9.5/Libinfo-449.1.3/dns.subproj/
H A Dres_query.c33 extern int h_errno;
57 // Returns the size of the response on success, or -1 with h_errno set.
67 h_errno = NO_RECOVERY;
85 h_errno = HOST_NOT_FOUND;
93 h_errno = HOST_NOT_FOUND;
97 h_errno = TRY_AGAIN;
102 h_errno = NO_DATA;
110 h_errno = NO_RECOVERY;
H A Dherror.c76 int h_errno; variable
80 * print the error indicated by the h_errno value.
96 v->iov_base = (char *)hstrerror(h_errno);
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Damigaos.c32 extern int errno, h_errno;
/macosx-10.9.5/remote_cmds-41.90.1/talk.tproj/
H A Dget_addrs.c62 errx(1, "%s: %s", his_machine_name, hstrerror(h_errno));
/macosx-10.9.5/ruby-104/ruby/ext/socket/
H A Dsockport.h80 #if defined(HOST_NOT_FOUND) && !defined(h_errno) && !defined(__CYGWIN__)
81 extern int h_errno;
/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/racoon/
H A Dgetcertsbyname.c59 /* XXX should it use ci_errno to hold errno instead of h_errno ? */
60 extern int h_errno;
140 h_errno = NO_RECOVERY;
150 h_errno = NO_RECOVERY;
181 h_errno = NO_RECOVERY;
230 h_errno = NO_RECOVERY;
257 h_errno = NO_RECOVERY;
292 h_errno = NO_RECOVERY;
305 h_errno = NO_RECOVERY;
320 h_errno
[all...]
H A Ddnssec.c56 extern int h_errno;
/macosx-10.9.5/BerkeleyDB-21/db/os/
H A Dos_addrinfo.c87 * Historic UNIX systems used the h_errno
90 * use that needs h_errno is gethostbyname,
101 hstrerror(h_errno));
106 h_errno);
108 switch (h_errno) {
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/unix/
H A DtclXunixPort.h37 extern int h_errno;
/macosx-10.9.5/libpcap-42/libpcap/Win32/Include/net/
H A Dnetdb.h90 * (left in extern int h_errno).
92 #define h_errno (*__h_errno_location ()) macro
94 extern int h_errno;
/macosx-10.9.5/apache-786.1/httpd/support/
H A Dlogresolve.c124 #ifndef h_errno
126 extern __declspec(dllimport) int h_errno;
128 extern int h_errno; /* some machines don't have this in their headers */
132 /* largest value for h_errno */
178 if (h_errno > MAX_ERR)
181 errors[h_errno]++;
182 new->noname = h_errno;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dutil-int.c45 #ifndef h_errno
49 extern int h_errno;
381 *herrno_ptr = h_errno;
402 *herrno_ptr = h_errno;
447 int buflen=BUFSTART, h_errno;
475 &hb, buf, buflen, &h_errno );
480 &hp, &h_errno );
484 (h_errno==NETDB_INTERNAL) &&
496 *err = (char *)HSTRERROR( h_errno );
507 rc = h_errno;
[all...]
/macosx-10.9.5/ntp-88/include/
H A Dl_stdlib.h234 #if defined(DECL_H_ERRNO) && !defined(h_errno)
235 extern int h_errno;
/macosx-10.9.5/tcl-102/tcl/tcl/unix/
H A DtclUnixCompat.c392 int h_errno;
395 sizeof(tsdPtr->hbuf), &h_errno);
399 int h_errno, result;
402 sizeof(tsdPtr->hbuf), &hePtr, &h_errno);
463 int h_errno;
466 sizeof(tsdPtr->hbuf), &h_errno);
470 int h_errno;
473 sizeof(tsdPtr->hbuf), &hePtr, &h_errno) == 0)
/macosx-10.9.5/tcl-102/tcl84/tcl/unix/
H A DtclUnixCompat.c592 int h_errno;
594 sizeof(tsdPtr->hbuf), &h_errno);
598 int result, h_errno;
601 sizeof(tsdPtr->hbuf), &hePtr, &h_errno);
655 int h_errno;
657 sizeof(tsdPtr->hbuf), &h_errno);
661 int h_errno;
663 sizeof(tsdPtr->hbuf), &hePtr, &h_errno) == 0) ?
/macosx-10.9.5/emacs-92/emacs/src/
H A Dw32.c2723 and winsock's handles; also set h_errno for convenience.
2877 int h_errno = 0;
2879 /* function to set h_errno for compatability; map winsock error codes to
2886 h_errno = EINVAL;
2888 h_errno = pfn_WSAGetLastError ();
2890 switch (h_errno)
2892 case WSAEACCES: h_errno = EACCES; break;
2893 case WSAEBADF: h_errno = EBADF; break;
2894 case WSAEFAULT: h_errno = EFAULT; break;
2895 case WSAEINTR: h_errno
2875 int h_errno = 0; variable
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/
H A Dgxbn_test.c70 print_he(he, h_errno, "gethostbyname", argv[1]);
H A Dgxba_test.c89 print_he(he, h_errno, "gethostbyaddr", argv[1]);
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/lwresd/
H A Dlwtest.c237 if (address == NULL && h_errno == HOST_NOT_FOUND)
239 else if (h_errno != HOST_NOT_FOUND) {
241 name, hstrerror(h_errno));
273 if (address == NULL && h_errno == HOST_NOT_FOUND)
275 else if (h_errno != HOST_NOT_FOUND) {
277 name, hstrerror(h_errno));
389 if (name == NULL && h_errno == HOST_NOT_FOUND)
391 else if (h_errno != HOST_NOT_FOUND) {
393 address, hstrerror(h_errno));
/macosx-10.9.5/bind9-45.100/bind9/lib/bind9/
H A Dgetaddresses.c45 extern int h_errno;
195 switch (h_errno) {
/macosx-10.9.5/emacs-92/emacs/nt/inc/sys/
H A Dsocket.h121 /* we are providing a real h_errno variable */
122 #undef h_errno macro
123 extern int h_errno;
/macosx-10.9.5/bind9-45.100/bind9/lib/lwres/win32/include/lwres/
H A Dnetdb.h56 * (left in extern int h_errno).
396 #ifdef h_errno
397 #undef h_errno macro
399 #define h_errno lwres_h_errno macro

Completed in 303 milliseconds

1234