HomeSort by: relevance | last modified time | path
    Searched defs:errno (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/sys/lib/libsa/
errno.c 1 /* $NetBSD: errno.c,v 1.3 2005/12/11 12:24:46 christos Exp $ */
36 int errno; variable in typeref:typename:int
strerror.c 37 int errno; member in struct:mi
67 if (mi->errno == err)
nfs.c 71 n_long errno; member in struct:nfs_readlnk_repl
146 * On error, return non-zero and set errno.
157 n_long errno; member in struct:nfs_getrootfh::repl
189 if (cc == -1 || cc < 4 || repl->errno) {
195 /* errno was set by rpc_call */
199 errno = EBADRPC;
202 if (repl->errno) {
203 errno = ntohl(repl->errno);
229 n_long errno; member in struct:nfs_lookupfh::replv2
234 n_long errno; member in struct:nfs_lookupfh::replv3
405 n_long errno; member in struct:nfs_readdata::replv2
411 n_long errno; member in struct:nfs_readdata::replv3
420 n_long errno; member in struct:nfs_readdata::replv3_noattr
    [all...]
  /src/tests/compat/linux/
h_linux.c 36 int errno = 0; variable in typeref:typename:int
  /src/lib/libc/gen/
errno.c 1 /* $NetBSD: errno.c,v 1.6 2024/01/20 14:52:47 christos Exp $ */
5 __RCSID("$NetBSD: errno.c,v 1.6 2024/01/20 14:52:47 christos Exp $");
8 #include <errno.h>
11 int errno; variable in typeref:typename:int
  /src/include/
errno.h 1 /* $NetBSD: errno.h,v 1.11 2008/03/03 06:57:48 dholland Exp $ */
36 * from: @(#)errno.h 8.5 (Berkeley) 1/21/94
43 #include <sys/errno.h>
48 /* note: this appears in both errno.h and signal.h */
54 #ifndef errno
55 #define errno (*__errno()) macro
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_errno.h 12 // Defines errno to avoid including errno.h and its dependencies into sensitive
14 // It's ok to use errno.h directly when your file already depend on other system
38 #define errno (*__errno_location()) macro
  /src/sys/arch/mvme68k/stand/bootsd/
boot.c 43 int errno; variable in typeref:typename:int
61 printf("boot: %s: %s\n", file, strerror(errno));
  /src/sys/arch/mvme68k/stand/netboot/
conf.c 34 int errno; variable in typeref:typename:int
  /src/sys/arch/zaurus/stand/zboot/
unixsys.S 51 .word errno
75 .global errno
76 errno: label
  /src/sys/arch/mvme68k/stand/bootst/
boot.c 43 int errno; variable in typeref:typename:int
72 printf("tapeboot: %s: %s\n", file, strerror(errno));
  /src/sys/arch/sun3/dev/
xio.h 47 u_char errno; /* out: error number */ member in struct:xd_iocmd
xdvar.h 50 int errno; /* error number if we fail */ member in struct:xd_iorq
xyvar.h 50 int errno; /* error number if we fail */ member in struct:xy_iorq
  /src/sys/arch/mvme68k/stand/libsa/
bugdev.c 41 int errno; variable in typeref:typename:int
  /src/common/dist/zlib/
zutil.c 139 * errno. We define it as a global variable to simplify porting.
142 int errno = 0; variable in typeref:typename:int
  /src/sys/arch/i386/stand/pxeboot/
main.c 56 int errno; variable in typeref:typename:int
103 printf("boot: %s\n", strerror(errno));
306 strerror(errno));
  /src/sys/arch/landisk/stand/boot/
boot2.c 60 int errno; variable in typeref:typename:int
206 strerror(errno));
  /src/sys/nfs/
nfs_boot.c 683 u_int32_t errno; member in struct:md_mount::rdata
726 /* The reply might have only the errno. */
729 /* Have at least errno, so check that. */
731 error = fxdr_unsigned(u_int32_t, rdata->errno);
735 /* Have errno==0, so the fh must be there. */
  /src/sys/arch/i386/stand/dosboot/
main.c 47 int errno; variable in typeref:typename:int
185 strerror(errno));
  /src/sys/netinet/
raw_ip.c 83 #include <sys/errno.h>
238 struct in_addr faddr, struct in_addr laddr, int proto, int errno,
252 (*notify)(inp, errno);
265 int errno; local in function:rip_ctlinput
272 errno = inetctlerrmap[cmd];
277 else if (errno == 0)
281 ip->ip_src, ip->ip_p, errno, notify);
285 inpcb_notifyall(&rawcbtable, satocsin(sa)->sin_addr, errno,
udp_usrreq.c 645 udp_notify(struct inpcb *inp, int errno)
647 inp->inp_socket->so_error = errno;
658 int errno; local in function:udp_ctlinput
666 errno = inetctlerrmap[cmd];
672 } else if (errno == 0) {
679 ip->ip_src, uh->uh_sport, errno, notify);
682 inpcb_notifyall(&udbtable, satocsin(sa)->sin_addr, errno,
  /src/sys/arch/i386/stand/boot/
boot2.c 97 int errno; variable in typeref:typename:int
292 strerror(errno));
663 strerror(errno));
  /src/sys/arch/hpcmips/stand/pbsdboot/
main.c 122 int errno; variable in typeref:typename:int
  /src/sys/netinet6/
in6_pcb.c 79 #include <sys/errno.h>
610 int errno; local in function:in6pcb_notify
644 errno = inet6ctlerrmap[cmd];
741 (*notify)(inp, errno);
820 in6pcb_rtchange(struct inpcb *inp, int errno)

Completed in 26 milliseconds

1 2