gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 6 of 6 for funcall:ERRNO (0.01 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsdlib/libc/net/getaddrinfo.c - 74.1KB - 2,420 lines
785:         if (s < 0) {
786:                 if (ERRNO(s) != EMFILE)
787: #endif
bsd_source/t2ex/network/net/src_bsdlib/libc/net/getifaddrs.c - 13.7KB - 383 lines
126:         if ((needed = so_rtlist(AF_UNSPEC, NET_RT_IFLIST, 0, NULL, 0)) < 0)
127:                 return ERRNO(needed);
128:         if ((buf = malloc(needed)) == NULL)
More results from getifaddrs.c
bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/res_send.c - 46.1KB - 1,357 lines
1143: #else
1144:                 if (ERRNO(n) == EINTR)
1145: #endif
t2ex_source/lib/libc/src/dirent/closedir.c - 2.4KB - 73 lines
64: 
65:         if (eno) *eno = ERRNO(r);
66:         return -1;
t2ex_source/lib/libc/src/dirent/opendir.c - 2.6KB - 80 lines
61:         fd = fs_open(path, O_RDONLY | O_DIRECTORY, 0);
62:         if (fd < 0) { er = ERRNO(fd); goto e1; }
63: 
t2ex_source/lib/libc/src/dirent/readdir_r.c - 2.5KB - 69 lines
66:         *result = NULL;
67:         return ERRNO(r);
68: }