Home
last modified time | relevance | path

Searched refs:__NC (Results 1 – 25 of 32) sorted by relevance

12

/l4re-core-master/uclibc/lib/contrib/uclibc/include/
A Dcancel.h42 #define __NC(name) _NC(name) macro
48 #define __NC_PROTO(name) extern __typeof(name) __NC(name) attribute_hidden;
64 return __NC(name) params; \
66 res_type result = __NC(name) params; \
77 weak_alias(__NC(name),name) \
88 strong_alias(__NC(name),name)
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/
A Dlseek.c16 _syscall3(off_t, __NC(lseek), int, fd, off_t, offset, int, whence)
20 off_t __NC(lseek)(int fd, off_t offset, int whence)
35 off_t __NC(lseek)(int fd, off_t offset attribute_unused, int whence)
59 strong_alias_untyped(__NC(lseek),__NC(lseek64))
A Dopen.c19 strong_alias_untyped(__syscall_open,__NC(open)) in _syscall3()
22 _syscall2(int, __NC(open2), const char *, file, int, flags) in _syscall3()
41 return __NC(open)(file, oflag, mode);
49 int result = __NC(open)(file, oflag, mode);
A Dnot-cancel.h134 __NC(open)(name, flags, mode)
136 __NC(open2)(name, flags)
139 __NC(close)(fd)
144 __NC(read)(fd, buf, n)
147 __NC(write)(fd, buf, n)
150 __NC(fcntl)(fd, cmd, val)
A D__syscall_fcntl64.c20 _syscall3(int, __NC(fcntl64), int, fd, int, cmd, long, arg) in _syscall3()
32 return __NC(fcntl64)(fd, cmd, arg); in _syscall3()
35 int result = __NC(fcntl64)(fd, cmd, arg); in _syscall3()
A D__syscall_fcntl.c17 int __NC(fcntl)(int fd, int cmd, long arg) in __NC() function
49 return __NC(fcntl)(fd, cmd, arg); in fcntl()
56 int result = __NC(fcntl)(fd, cmd, arg); in fcntl()
A Dpause.c17 static _syscall0(int, __NC(pause))
28 __NC(pause)(void)
A Dpoll.c27 static _syscall3(int, __NC(poll), struct pollfd *, fds,
49 int __NC(poll)(struct pollfd *fds, nfds_t nfds, int timeout)
120 ready = __NC(select) (maxfd + 1, rset, wset, xset,
163 n = __NC(select) (f->fd + 1, sngl_rset, sngl_wset, sngl_xset,
A Dpread_write.c75 static ssize_t __NC(pread)(int fd, void *buf, size_t count, off_t offset) in _syscall6()
82 static ssize_t __NC(pwrite)(int fd, const void *buf, size_t count, off_t offset) in __NC() function
91 static ssize_t __NC(pread64)(int fd, void *buf, size_t count, off64_t offset) in __NC() function
98 static ssize_t __NC(pwrite64)(int fd, const void *buf, size_t count, off64_t offset) in __NC() function
A Dpselect.c29 static int __NC(pselect)(int nfds, fd_set *readfds, fd_set *writefds, in __NC() function
53 retval = __NC(select)(nfds, readfds, writefds, exceptfds, in __NC()
A Dwaitid.c19 static int __NC(waitid)(idtype_t idtype, id_t id, siginfo_t *infop, int options) in __NC() function
44 infop->si_pid = __NC(waitpid)(id, &infop->si_status, options in __NC()
A Depoll.c35 static int __NC(epoll_wait)(int epfd, struct epoll_event *events, int maxevents, int timeout) in _syscall4()
50 static int __NC(epoll_pwait)(int epfd, struct epoll_event *events, int maxevents, int timeout, in _syscall6()
A Dfsync.c15 static _syscall1(int, __NC(fsync), int, fd)
A Dfdatasync.c21 static _syscall1(int, __NC(fdatasync), int, fd)
A Dwait.c10 static pid_t __NC(wait)(__WAIT_STATUS_DEFN stat_loc) in __NC() function
A Dclose.c15 _syscall1(int, __NC(close), int, fd)
A Dnanosleep.c15 static _syscall2(int, __NC(nanosleep), const struct timespec *, req,
A Dmsync.c17 static _syscall3(int, __NC(msync), void *, addr, size_t, length, int, flags)
A Dsigsuspend.c16 int __NC(sigsuspend)(const sigset_t *set) in __NC() function
A Dread.c15 _syscall3(ssize_t, __NC(read), int, fd, void *, buf, size_t, count)
A Dwrite.c15 _syscall3(ssize_t, __NC(write), int, fd, const void *, buf, size_t, count)
A Dwaitpid.c12 pid_t __NC(waitpid)(pid_t pid, int *wait_stat, int options) in __NC() function
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/signal/
A Dsigwait.c33 static int __NC(sigwait)(const sigset_t *set, int *sig) in __NC() function
39 ret = __NC(sigtimedwait)(set, NULL, NULL); in __NC()
62 static int __NC(sigwait)(const sigset_t *set, int *sig) in __NC() function
96 __NC(sigsuspend)(&tmp_mask); in __NC()
A Dsigpause.c47 return __NC(sigsuspend)(&set); in __sigpause()
59 static int __NC(sigpause)(int sig) in __NC() function
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/
A Dsocketcalls.c35 static int __NC(accept)(int sockfd, struct sockaddr *addr, socklen_t *addrlen) in __NC() function
112 static int __NC(connect)(int sockfd, const struct sockaddr *saddr, socklen_t addrlen) in libc_hidden_def()
199 static ssize_t __NC(recv)(int sockfd, void *buffer, size_t len, int flags) in libc_hidden_def()
204 return __NC(recvfrom)(sockfd, buffer, len, flags, NULL, NULL); in libc_hidden_def()
221 ssize_t __NC(recvfrom)(int sockfd, void *buffer, size_t len, int flags, in lt_libc_hidden()
246 static ssize_t __NC(recvmsg)(int sockfd, struct msghdr *msg, int flags) in lt_libc_hidden()
265 static ssize_t __NC(send)(int sockfd, const void *buffer, size_t len, int flags) in lt_libc_hidden()
270 return __NC(sendto)(sockfd, buffer, len, flags, NULL, 0); in lt_libc_hidden()
287 static ssize_t __NC(sendmsg)(int sockfd, const struct msghdr *msg, int flags) in lt_libc_hidden()
306 ssize_t __NC(sendto)(int sockfd, const void *buffer, size_t len, int flags, in lt_libc_hidden()

Completed in 24 milliseconds

12