Lines Matching defs:c_int

3442     pub fn isalnum(c: c_int) -> c_int;  in isalnum()
3443 pub fn isalpha(c: c_int) -> c_int; in isalpha()
3444 pub fn iscntrl(c: c_int) -> c_int; in iscntrl()
3445 pub fn isdigit(c: c_int) -> c_int; in isdigit()
3446 pub fn isgraph(c: c_int) -> c_int; in isgraph()
3447 pub fn islower(c: c_int) -> c_int; in islower()
3448 pub fn isprint(c: c_int) -> c_int; in isprint()
3449 pub fn ispunct(c: c_int) -> c_int; in ispunct()
3450 pub fn isspace(c: c_int) -> c_int; in isspace()
3451 pub fn isupper(c: c_int) -> c_int; in isupper()
3452 pub fn isxdigit(c: c_int) -> c_int; in isxdigit()
3453 pub fn isblank(c: c_int) -> c_int; in isblank()
3454 pub fn tolower(c: c_int) -> c_int; in tolower()
3455 pub fn toupper(c: c_int) -> c_int; in toupper()
3458 pub fn fflush(file: *mut FILE) -> c_int; in fflush()
3459 pub fn fclose(file: *mut FILE) -> c_int; in fclose()
3460 pub fn remove(filename: *const c_char) -> c_int; in remove()
3461 pub fn rename(oldname: *const c_char, newname: *const c_char) -> c_int; in rename()
3463 pub fn setvbuf(stream: *mut FILE, buffer: *mut c_char, mode: c_int, size: size_t) -> c_int; in setvbuf()
3466 pub fn putchar(c: c_int) -> c_int; in putchar()
3467 pub fn fgetc(stream: *mut FILE) -> c_int; in fgetc()
3468 pub fn fgets(buf: *mut c_char, n: c_int, stream: *mut FILE) -> *mut c_char; in fgets()
3469 pub fn fputc(c: c_int, stream: *mut FILE) -> c_int; in fputc()
3470 pub fn fputs(s: *const c_char, stream: *mut FILE) -> c_int; in fputs()
3471 pub fn puts(s: *const c_char) -> c_int; in puts()
3472 pub fn ungetc(c: c_int, stream: *mut FILE) -> c_int; in ungetc()
3475 pub fn fseek(stream: *mut FILE, offset: c_long, whence: c_int) -> c_int; in fseek()
3478 pub fn fgetpos(stream: *mut FILE, ptr: *mut fpos_t) -> c_int; in fgetpos()
3479 pub fn fsetpos(stream: *mut FILE, ptr: *const fpos_t) -> c_int; in fsetpos()
3480 pub fn feof(stream: *mut FILE) -> c_int; in feof()
3481 pub fn ferror(stream: *mut FILE) -> c_int; in ferror()
3484 pub fn atoi(s: *const c_char) -> c_int; in atoi()
3498 pub fn exit(status: c_int) -> !; in exit()
3499 pub fn _exit(status: c_int) -> !; in _exit()
3500 pub fn atexit(cb: extern "C" fn()) -> c_int; in atexit()
3501 pub fn system(s: *const c_char) -> c_int; in system()
3508 pub fn strcmp(cs: *const c_char, ct: *const c_char) -> c_int; in strcmp()
3509 pub fn strncmp(cs: *const c_char, ct: *const c_char, n: size_t) -> c_int; in strncmp()
3510 pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int; in strcoll()
3526 pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void; in memchr()
3528 pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int; in memcmp()
3531 pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void; in memset()
3533 pub fn abs(i: c_int) -> c_int; in abs()
3541 pub fn fprintf(stream: *mut crate::FILE, format: *const c_char, ...) -> c_int; in fprintf()
3542 pub fn printf(format: *const c_char, ...) -> c_int; in printf()
3543 pub fn snprintf(s: *mut c_char, n: size_t, format: *const c_char, ...) -> c_int; in snprintf()
3544 pub fn sprintf(s: *mut c_char, format: *const c_char, ...) -> c_int; in sprintf()
3545 pub fn fscanf(stream: *mut crate::FILE, format: *const c_char, ...) -> c_int; in fscanf()
3546 pub fn scanf(format: *const c_char, ...) -> c_int; in scanf()
3547 pub fn sscanf(s: *const c_char, format: *const c_char, ...) -> c_int; in sscanf()
3549 pub fn putchar_unlocked(c: c_int) -> c_int; in putchar_unlocked()
3551 pub fn socket(domain: c_int, ty: c_int, protocol: c_int) -> c_int; in socket()
3552 pub fn connect(socket: c_int, address: *const sockaddr, len: socklen_t) -> c_int; in connect()
3553 pub fn listen(socket: c_int, backlog: c_int) -> c_int; in listen()
3554 pub fn accept(socket: c_int, address: *mut sockaddr, address_len: *mut socklen_t) -> c_int; in accept()
3555 pub fn getpeername(socket: c_int, address: *mut sockaddr, address_len: *mut socklen_t) in getpeername()
3557 pub fn getsockname(socket: c_int, address: *mut sockaddr, address_len: *mut socklen_t) in getsockname()
3560 socket: c_int, in setsockopt()
3561 level: c_int, in setsockopt()
3562 name: c_int, in setsockopt()
3565 ) -> c_int; in setsockopt()
3567 domain: c_int, in socketpair()
3568 type_: c_int, in socketpair()
3569 protocol: c_int, in socketpair()
3570 socket_vector: *mut c_int, in socketpair()
3571 ) -> c_int; in socketpair()
3573 socket: c_int, in sendto()
3576 flags: c_int, in sendto()
3580 pub fn shutdown(socket: c_int, how: c_int) -> c_int; in shutdown()
3582 pub fn chmod(path: *const c_char, mode: mode_t) -> c_int; in chmod()
3583 pub fn fchmod(fd: c_int, mode: mode_t) -> c_int; in fchmod()
3585 pub fn fstat(fildes: c_int, buf: *mut stat) -> c_int; in fstat()
3587 pub fn mkdir(path: *const c_char, mode: mode_t) -> c_int; in mkdir()
3589 pub fn stat(path: *const c_char, buf: *mut stat) -> c_int; in stat()
3591 pub fn pclose(stream: *mut crate::FILE) -> c_int; in pclose()
3592 pub fn fdopen(fd: c_int, mode: *const c_char) -> *mut crate::FILE; in fdopen()
3593 pub fn fileno(stream: *mut crate::FILE) -> c_int; in fileno()
3595 pub fn open(path: *const c_char, oflag: c_int, ...) -> c_int; in open()
3596 pub fn creat(path: *const c_char, mode: mode_t) -> c_int; in creat()
3597 pub fn fcntl(fd: c_int, cmd: c_int, ...) -> c_int; in fcntl()
3605 ) -> c_int; in readdir_r()
3606 pub fn closedir(dirp: *mut crate::DIR) -> c_int; in closedir()
3609 pub fn openat(dirfd: c_int, pathname: *const c_char, flags: c_int, ...) -> c_int; in openat()
3610 pub fn fchmodat(dirfd: c_int, pathname: *const c_char, mode: mode_t, flags: c_int) -> c_int; in fchmodat()
3611 pub fn fchown(fd: c_int, owner: crate::uid_t, group: crate::gid_t) -> c_int; in fchown()
3613 dirfd: c_int, in fchownat()
3617 flags: c_int, in fchownat()
3618 ) -> c_int; in fchownat()
3619 pub fn fstatat(dirfd: c_int, pathname: *const c_char, buf: *mut stat, flags: c_int) -> c_int; in fstatat()
3621 olddirfd: c_int, in linkat()
3623 newdirfd: c_int, in linkat()
3625 flags: c_int, in linkat()
3626 ) -> c_int; in linkat()
3627 pub fn mkdirat(dirfd: c_int, pathname: *const c_char, mode: mode_t) -> c_int; in mkdirat()
3629 dirfd: c_int, in readlinkat()
3635 olddirfd: c_int, in renameat()
3637 newdirfd: c_int, in renameat()
3639 ) -> c_int; in renameat()
3640 pub fn symlinkat(target: *const c_char, newdirfd: c_int, linkpath: *const c_char) -> c_int; in symlinkat()
3641 pub fn unlinkat(dirfd: c_int, pathname: *const c_char, flags: c_int) -> c_int; in unlinkat()
3643 pub fn access(path: *const c_char, amode: c_int) -> c_int; in access()
3645 pub fn chdir(dir: *const c_char) -> c_int; in chdir()
3646 pub fn chown(path: *const c_char, uid: uid_t, gid: gid_t) -> c_int; in chown()
3647 pub fn lchown(path: *const c_char, uid: uid_t, gid: gid_t) -> c_int; in lchown()
3648 pub fn close(fd: c_int) -> c_int; in close()
3649 pub fn dup(fd: c_int) -> c_int; in dup()
3650 pub fn dup2(src: c_int, dst: c_int) -> c_int; in dup2()
3652 pub fn execl(path: *const c_char, arg0: *const c_char, ...) -> c_int; in execl()
3653 pub fn execle(path: *const c_char, arg0: *const c_char, ...) -> c_int; in execle()
3654 pub fn execlp(file: *const c_char, arg0: *const c_char, ...) -> c_int; in execlp()
3657 pub fn execv(prog: *const c_char, argv: *const *const c_char) -> c_int; in execv()
3662 ) -> c_int; in execve()
3663 pub fn execvp(c: *const c_char, argv: *const *const c_char) -> c_int; in execvp()
3666 pub fn fpathconf(filedes: c_int, name: c_int) -> c_long; in fpathconf()
3671 pub fn getgroups(ngroups_max: c_int, groups: *mut gid_t) -> c_int; in getgroups()
3673 pub fn getopt(argc: c_int, argv: *const *mut c_char, optstr: *const c_char) -> c_int; in getopt()
3679 pub fn isatty(fd: c_int) -> c_int; in isatty()
3680 pub fn link(src: *const c_char, dst: *const c_char) -> c_int; in link()
3681 pub fn lseek(fd: c_int, offset: off_t, whence: c_int) -> off_t; in lseek()
3684 pub fn pipe(fds: *mut c_int) -> c_int; in pipe()
3685 pub fn posix_memalign(memptr: *mut *mut c_void, align: size_t, size: size_t) -> c_int; in posix_memalign()
3686 pub fn read(fd: c_int, buf: *mut c_void, count: size_t) -> ssize_t; in read()
3687 pub fn rmdir(path: *const c_char) -> c_int; in rmdir()
3688 pub fn seteuid(uid: uid_t) -> c_int; in seteuid()
3689 pub fn setegid(gid: gid_t) -> c_int; in setegid()
3690 pub fn setgid(gid: gid_t) -> c_int; in setgid()
3691 pub fn setpgid(pid: pid_t, pgid: pid_t) -> c_int; in setpgid()
3693 pub fn setuid(uid: uid_t) -> c_int; in setuid()
3695 pub fn nanosleep(rqtp: *const timespec, rmtp: *mut timespec) -> c_int; in nanosleep()
3697 pub fn tcsetpgrp(fd: c_int, pgrp: crate::pid_t) -> c_int; in tcsetpgrp()
3699 pub fn unlink(c: *const c_char) -> c_int; in unlink()
3701 pub fn waitpid(pid: pid_t, status: *mut c_int, options: c_int) -> pid_t; in waitpid()
3702 pub fn write(fd: c_int, buf: *const c_void, count: size_t) -> ssize_t; in write()
3703 pub fn pread(fd: c_int, buf: *mut c_void, count: size_t, offset: off_t) -> ssize_t; in pread()
3704 pub fn pwrite(fd: c_int, buf: *const c_void, count: size_t, offset: off_t) -> ssize_t; in pwrite()
3707 pub fn utime(file: *const c_char, buf: *const utimbuf) -> c_int; in utime()
3709 pub fn kill(pid: pid_t, sig: c_int) -> c_int; in kill()
3711 pub fn mlock(addr: *const c_void, len: size_t) -> c_int; in mlock()
3712 pub fn munlock(addr: *const c_void, len: size_t) -> c_int; in munlock()
3713 pub fn mlockall(flags: c_int) -> c_int; in mlockall()
3719 prot: c_int, in mmap()
3720 flags: c_int, in mmap()
3721 fd: c_int, in mmap()
3724 pub fn munmap(addr: *mut c_void, len: size_t) -> c_int; in munmap()
3729 pub fn lstat(path: *const c_char, buf: *mut stat) -> c_int; in lstat()
3731 pub fn fsync(fd: c_int) -> c_int; in fsync()
3733 pub fn setenv(name: *const c_char, val: *const c_char, overwrite: c_int) -> c_int; in setenv()
3734 pub fn unsetenv(name: *const c_char) -> c_int; in unsetenv()
3736 pub fn symlink(path1: *const c_char, path2: *const c_char) -> c_int; in symlink()
3738 pub fn ftruncate(fd: c_int, length: off_t) -> c_int; in ftruncate()
3740 pub fn signal(signum: c_int, handler: sighandler_t) -> sighandler_t; in signal()
3744 pub fn flock(fd: c_int, operation: c_int) -> c_int; in flock()
3746 pub fn gettimeofday(tp: *mut crate::timeval, tz: *mut c_void) -> c_int; in gettimeofday()
3750 pub fn pthread_join(native: crate::pthread_t, value: *mut *mut c_void) -> c_int; in pthread_join()
3752 pub fn pthread_attr_init(attr: *mut crate::pthread_attr_t) -> c_int; in pthread_attr_init()
3753 pub fn pthread_attr_destroy(attr: *mut crate::pthread_attr_t) -> c_int; in pthread_attr_destroy()
3757 ) -> c_int; in pthread_attr_getstacksize()
3758 pub fn pthread_attr_setstacksize(attr: *mut crate::pthread_attr_t, stack_size: size_t) in pthread_attr_setstacksize()
3760 pub fn pthread_attr_setdetachstate(attr: *mut crate::pthread_attr_t, state: c_int) -> c_int; in pthread_attr_setdetachstate()
3761 pub fn pthread_detach(thread: crate::pthread_t) -> c_int; in pthread_detach()
3766 ) -> c_int; in pthread_key_create()
3767 pub fn pthread_key_delete(key: pthread_key_t) -> c_int; in pthread_key_delete()
3769 pub fn pthread_setspecific(key: pthread_key_t, value: *const c_void) -> c_int; in pthread_setspecific()
3773 ) -> c_int; in pthread_mutex_init()
3774 pub fn pthread_mutex_destroy(lock: *mut pthread_mutex_t) -> c_int; in pthread_mutex_destroy()
3775 pub fn pthread_mutex_lock(lock: *mut pthread_mutex_t) -> c_int; in pthread_mutex_lock()
3776 pub fn pthread_mutex_trylock(lock: *mut pthread_mutex_t) -> c_int; in pthread_mutex_trylock()
3777 pub fn pthread_mutex_unlock(lock: *mut pthread_mutex_t) -> c_int; in pthread_mutex_unlock()
3779 pub fn pthread_mutexattr_init(attr: *mut pthread_mutexattr_t) -> c_int; in pthread_mutexattr_init()
3780 pub fn pthread_mutexattr_destroy(attr: *mut pthread_mutexattr_t) -> c_int; in pthread_mutexattr_destroy()
3781 pub fn pthread_mutexattr_settype(attr: *mut pthread_mutexattr_t, _type: c_int) -> c_int; in pthread_mutexattr_settype()
3783 pub fn pthread_cond_init(cond: *mut pthread_cond_t, attr: *const pthread_condattr_t) -> c_int; in pthread_cond_init()
3784 pub fn pthread_cond_wait(cond: *mut pthread_cond_t, lock: *mut pthread_mutex_t) -> c_int; in pthread_cond_wait()
3789 ) -> c_int; in pthread_cond_timedwait()
3790 pub fn pthread_cond_signal(cond: *mut pthread_cond_t) -> c_int; in pthread_cond_signal()
3791 pub fn pthread_cond_broadcast(cond: *mut pthread_cond_t) -> c_int; in pthread_cond_broadcast()
3792 pub fn pthread_cond_destroy(cond: *mut pthread_cond_t) -> c_int; in pthread_cond_destroy()
3793 pub fn pthread_condattr_init(attr: *mut pthread_condattr_t) -> c_int; in pthread_condattr_init()
3794 pub fn pthread_condattr_destroy(attr: *mut pthread_condattr_t) -> c_int; in pthread_condattr_destroy()
3798 ) -> c_int; in pthread_rwlock_init()
3799 pub fn pthread_rwlock_destroy(lock: *mut pthread_rwlock_t) -> c_int; in pthread_rwlock_destroy()
3800 pub fn pthread_rwlock_rdlock(lock: *mut pthread_rwlock_t) -> c_int; in pthread_rwlock_rdlock()
3801 pub fn pthread_rwlock_tryrdlock(lock: *mut pthread_rwlock_t) -> c_int; in pthread_rwlock_tryrdlock()
3802 pub fn pthread_rwlock_wrlock(lock: *mut pthread_rwlock_t) -> c_int; in pthread_rwlock_wrlock()
3803 pub fn pthread_rwlock_trywrlock(lock: *mut pthread_rwlock_t) -> c_int; in pthread_rwlock_trywrlock()
3804 pub fn pthread_rwlock_unlock(lock: *mut pthread_rwlock_t) -> c_int; in pthread_rwlock_unlock()
3805 pub fn pthread_rwlockattr_init(attr: *mut pthread_rwlockattr_t) -> c_int; in pthread_rwlockattr_init()
3806 pub fn pthread_rwlockattr_destroy(attr: *mut pthread_rwlockattr_t) -> c_int; in pthread_rwlockattr_destroy()
3807 pub fn pthread_getname_np(thread: crate::pthread_t, name: *mut c_char, len: size_t) -> c_int; in pthread_getname_np()
3808 pub fn pthread_setname_np(thread: crate::pthread_t, name: *const c_char) -> c_int; in pthread_setname_np()
3809 pub fn strerror_r(errnum: c_int, buf: *mut c_char, buflen: size_t) -> c_int; in strerror_r()
3812 sockfd: c_int, in getsockopt()
3813 level: c_int, in getsockopt()
3814 optname: c_int, in getsockopt()
3817 ) -> c_int; in getsockopt()
3818 pub fn raise(signum: c_int) -> c_int; in raise()
3819 pub fn sigaction(signum: c_int, act: *const sigaction, oldact: *mut sigaction) -> c_int; in sigaction()
3821 pub fn utimes(filename: *const c_char, times: *const crate::timeval) -> c_int; in utimes()
3825 pub fn dlclose(handle: *mut c_void) -> c_int; in dlclose()
3826 pub fn dladdr(addr: *const c_void, info: *mut Dl_info) -> c_int; in dladdr()
3833 ) -> c_int; in getaddrinfo()
3845 pub fn mknod(pathname: *const c_char, mode: mode_t, dev: crate::dev_t) -> c_int; in mknod()
3846 pub fn uname(buf: *mut crate::utsname) -> c_int; in uname()
3847 pub fn gethostname(name: *mut c_char, len: size_t) -> c_int; in gethostname()
3851 pub fn usleep(secs: c_uint) -> c_int; in usleep()
3852 pub fn send(socket: c_int, buf: *const c_void, len: size_t, flags: c_int) -> ssize_t; in send()
3853 pub fn recv(socket: c_int, buf: *mut c_void, len: size_t, flags: c_int) -> ssize_t; in recv()
3854 pub fn putenv(string: *mut c_char) -> c_int; in putenv()
3855 pub fn poll(fds: *mut pollfd, nfds: nfds_t, timeout: c_int) -> c_int; in poll()
3857 nfds: c_int, in select()
3862 ) -> c_int; in select()
3863 pub fn setlocale(category: c_int, locale: *const c_char) -> *mut c_char; in setlocale()
3866 pub fn sem_destroy(sem: *mut sem_t) -> c_int; in sem_destroy()
3867 pub fn sem_wait(sem: *mut sem_t) -> c_int; in sem_wait()
3868 pub fn sem_trywait(sem: *mut sem_t) -> c_int; in sem_trywait()
3869 pub fn sem_post(sem: *mut sem_t) -> c_int; in sem_post()
3870 pub fn sem_init(sem: *mut sem_t, pshared: c_int, value: c_uint) -> c_int; in sem_init()
3871 pub fn statvfs(path: *const c_char, buf: *mut statvfs) -> c_int; in statvfs()
3872 pub fn fstatvfs(fd: c_int, buf: *mut statvfs) -> c_int; in fstatvfs()
3876 pub fn sigemptyset(set: *mut sigset_t) -> c_int; in sigemptyset()
3877 pub fn sigaddset(set: *mut sigset_t, signum: c_int) -> c_int; in sigaddset()
3878 pub fn sigfillset(set: *mut sigset_t) -> c_int; in sigfillset()
3879 pub fn sigdelset(set: *mut sigset_t, signum: c_int) -> c_int; in sigdelset()
3880 pub fn sigismember(set: *const sigset_t, signum: c_int) -> c_int; in sigismember()
3882 pub fn sigprocmask(how: c_int, set: *const sigset_t, oldset: *mut sigset_t) -> c_int; in sigprocmask()
3883 pub fn sigpending(set: *mut sigset_t) -> c_int; in sigpending()
3891 pub fn mkfifo(path: *const c_char, mode: mode_t) -> c_int; in mkfifo()
3894 nfds: c_int, in pselect()
3900 ) -> c_int; in pselect()
3901 pub fn fseeko(stream: *mut crate::FILE, offset: off_t, whence: c_int) -> c_int; in fseeko()
3903 pub fn tcdrain(fd: c_int) -> c_int; in tcdrain()
3907 pub fn cfsetispeed(termios: *mut crate::termios, speed: crate::speed_t) -> c_int; in cfsetispeed()
3908 pub fn cfsetospeed(termios: *mut crate::termios, speed: crate::speed_t) -> c_int; in cfsetospeed()
3909 pub fn cfsetspeed(termios: *mut crate::termios, speed: crate::speed_t) -> c_int; in cfsetspeed()
3910 pub fn tcgetattr(fd: c_int, termios: *mut crate::termios) -> c_int; in tcgetattr()
3911 pub fn tcsetattr(fd: c_int, optional_actions: c_int, termios: *const crate::termios) -> c_int; in tcsetattr()
3912 pub fn tcflow(fd: c_int, action: c_int) -> c_int; in tcflow()
3913 pub fn tcflush(fd: c_int, action: c_int) -> c_int; in tcflush()
3915 pub fn tcsendbreak(fd: c_int, duration: c_int) -> c_int; in tcsendbreak()
3916 pub fn mkstemp(template: *mut c_char) -> c_int; in mkstemp()
3921 pub fn openlog(ident: *const c_char, logopt: c_int, facility: c_int); in openlog()
3923 pub fn setlogmask(maskpri: c_int) -> c_int; in setlogmask()
3924 pub fn syslog(priority: c_int, message: *const c_char, ...); in syslog()
3926 pub fn grantpt(fd: c_int) -> c_int; in grantpt()
3927 pub fn posix_openpt(flags: c_int) -> c_int; in posix_openpt()
3929 pub fn unlockpt(fd: c_int) -> c_int; in unlockpt()
3931 pub fn fdatasync(fd: c_int) -> c_int; in fdatasync()
3932 pub fn clock_getres(clk_id: crate::clockid_t, tp: *mut crate::timespec) -> c_int; in clock_getres()
3933 pub fn clock_gettime(clk_id: crate::clockid_t, tp: *mut crate::timespec) -> c_int; in clock_gettime()
3934 pub fn clock_settime(clk_id: crate::clockid_t, tp: *const crate::timespec) -> c_int; in clock_settime()
3935 pub fn dirfd(dirp: *mut crate::DIR) -> c_int; in dirfd()
3937 pub fn pthread_getattr_np(native: crate::pthread_t, attr: *mut crate::pthread_attr_t) -> c_int; in pthread_getattr_np()
3942 ) -> c_int; in pthread_attr_getstack()
3944 pub fn setgroups(ngroups: size_t, ptr: *const crate::gid_t) -> c_int; in setgroups()
3945 pub fn pipe2(fds: *mut c_int, flags: c_int) -> c_int; in pipe2()
3946 pub fn statfs(path: *const c_char, buf: *mut statfs) -> c_int; in statfs()
3947 pub fn fstatfs(fd: c_int, buf: *mut statfs) -> c_int; in fstatfs()
3948 pub fn memrchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void; in memrchr()
3950 pub fn posix_fadvise(fd: c_int, offset: off_t, len: off_t, advise: c_int) -> c_int; in posix_fadvise()
3951 pub fn futimens(fd: c_int, times: *const crate::timespec) -> c_int; in futimens()
3953 dirfd: c_int, in utimensat()
3956 flag: c_int, in utimensat()
3957 ) -> c_int; in utimensat()
3960 pub fn newlocale(mask: c_int, locale: *const c_char, base: crate::locale_t) -> crate::locale_t; in newlocale()
3965 pub fn mknodat(dirfd: c_int, pathname: *const c_char, mode: mode_t, dev: dev_t) -> c_int; in mknodat()
3969 ) -> c_int; in pthread_condattr_getclock()
3973 ) -> c_int; in pthread_condattr_setclock()
3975 fd: c_int, in accept4()
3978 flg: c_int, in accept4()
3979 ) -> c_int; in accept4()
3980 pub fn ptsname_r(fd: c_int, buf: *mut c_char, buflen: size_t) -> c_int; in ptsname_r()
3986 options: c_int, in waitid()
3987 ) -> c_int; in waitid()
3988 pub fn setreuid(ruid: crate::uid_t, euid: crate::uid_t) -> c_int; in setreuid()
3989 pub fn setregid(rgid: crate::gid_t, egid: crate::gid_t) -> c_int; in setregid()
3994 ) -> c_int; in getresuid()
3999 ) -> c_int; in getresgid()
4000 pub fn acct(filename: *const c_char) -> c_int; in acct()
4001 pub fn brk(addr: *mut c_void) -> c_int; in brk()
4002 pub fn setresgid(rgid: crate::gid_t, egid: crate::gid_t, sgid: crate::gid_t) -> c_int; in setresgid()
4003 pub fn setresuid(ruid: crate::uid_t, euid: crate::uid_t, suid: crate::uid_t) -> c_int; in setresuid()
4005 amaster: *mut c_int, in openpty()
4006 aslave: *mut c_int, in openpty()
4010 ) -> c_int; in openpty()
4017 ) -> c_int; in execvpe()
4018 pub fn fexecve(fd: c_int, argv: *const *const c_char, envp: *const *const c_char) -> c_int; in fexecve()
4020 pub fn ioctl(fd: c_int, request: c_int, ...) -> c_int; in ioctl()
4022 pub fn lutimes(file: *const c_char, times: *const crate::timeval) -> c_int; in lutimes()
4028 pub fn shm_open(name: *const c_char, oflag: c_int, mode: mode_t) -> c_int; in shm_open()
4031 pub fn shmget(key: crate::key_t, size: size_t, shmflg: c_int) -> c_int; in shmget()
4032 pub fn shmat(shmid: c_int, shmaddr: *const c_void, shmflg: c_int) -> *mut c_void; in shmat()
4033 pub fn shmdt(shmaddr: *const c_void) -> c_int; in shmdt()
4034 pub fn shmctl(shmid: c_int, cmd: c_int, buf: *mut crate::shmid_ds) -> c_int; in shmctl()
4036 pub fn semget(key: crate::key_t, nsems: c_int, semflag: c_int) -> c_int; in semget()
4037 pub fn semop(semid: c_int, sops: *mut crate::sembuf, nsops: size_t) -> c_int; in semop()
4038 pub fn semctl(semid: c_int, semnum: c_int, cmd: c_int, ...) -> c_int; in semctl()
4039 pub fn msgctl(msqid: c_int, cmd: c_int, buf: *mut msqid_ds) -> c_int; in msgctl()
4040 pub fn msgget(key: crate::key_t, msgflg: c_int) -> c_int; in msgget()
4042 msqid: c_int, in msgrcv()
4046 msgflg: c_int, in msgrcv()
4048 pub fn msgsnd(msqid: c_int, msgp: *const c_void, msgsz: size_t, msgflg: c_int) -> c_int; in msgsnd()
4050 pub fn mprotect(addr: *mut c_void, len: size_t, prot: c_int) -> c_int; in mprotect()
4053 pub fn fallocate(fd: c_int, mode: c_int, offset: off_t, len: off_t) -> c_int; in fallocate()
4054 pub fn posix_fallocate(fd: c_int, offset: off_t, len: off_t) -> c_int; in posix_fallocate()
4055 pub fn readahead(fd: c_int, offset: off64_t, count: size_t) -> ssize_t; in readahead()
4056 pub fn signalfd(fd: c_int, mask: *const crate::sigset_t, flags: c_int) -> c_int; in signalfd()
4057 pub fn timerfd_create(clockid: c_int, flags: c_int) -> c_int; in timerfd_create()
4058 pub fn timerfd_gettime(fd: c_int, curr_value: *mut itimerspec) -> c_int; in timerfd_gettime()
4060 fd: c_int, in timerfd_settime()
4061 flags: c_int, in timerfd_settime()
4064 ) -> c_int; in timerfd_settime()
4065 pub fn pwritev(fd: c_int, iov: *const crate::iovec, iovcnt: c_int, offset: off_t) -> ssize_t; in pwritev()
4066 pub fn preadv(fd: c_int, iov: *const crate::iovec, iovcnt: c_int, offset: off_t) -> ssize_t; in preadv()
4067 pub fn quotactl(cmd: c_int, special: *const c_char, id: c_int, data: *mut c_char) -> c_int; in quotactl()
4068 pub fn dup3(oldfd: c_int, newfd: c_int, flags: c_int) -> c_int; in dup3()
4069 pub fn mkostemp(template: *mut c_char, flags: c_int) -> c_int; in mkostemp()
4070 pub fn mkostemps(template: *mut c_char, suffixlen: c_int, flags: c_int) -> c_int; in mkostemps()
4075 ) -> c_int; in sigtimedwait()
4076 pub fn sigwaitinfo(set: *const sigset_t, info: *mut siginfo_t) -> c_int; in sigwaitinfo()
4085 flags: c_int, in getnameinfo()
4086 ) -> c_int; in getnameinfo()
4087 pub fn reboot(how_to: c_int) -> c_int; in reboot()
4088 pub fn setfsgid(gid: crate::gid_t) -> c_int; in setfsgid()
4089 pub fn setfsuid(uid: crate::uid_t) -> c_int; in setfsuid()
4092 pub fn mkfifoat(dirfd: c_int, pathname: *const c_char, mode: mode_t) -> c_int; in mkfifoat()
4095 pub fn sync_file_range(fd: c_int, offset: off64_t, nbytes: off64_t, flags: c_uint) -> c_int; in sync_file_range()
4096 pub fn getifaddrs(ifap: *mut *mut crate::ifaddrs) -> c_int; in getifaddrs()
4101 flags: c_int, in glob()
4102 errfunc: Option<extern "C" fn(epath: *const c_char, errno: c_int) -> c_int>, in glob()
4107 pub fn posix_madvise(addr: *mut c_void, len: size_t, advice: c_int) -> c_int; in posix_madvise()
4109 pub fn shm_unlink(name: *const c_char) -> c_int; in shm_unlink()
4114 pub fn madvise(addr: *mut c_void, len: size_t, advice: c_int) -> c_int; in madvise()
4116 pub fn msync(addr: *mut c_void, len: size_t, flags: c_int) -> c_int; in msync()
4119 socket: c_int, in recvfrom()
4122 flags: c_int, in recvfrom()
4126 pub fn mkstemps(template: *mut c_char, suffixlen: c_int) -> c_int; in mkstemps()
4127 pub fn futimes(fd: c_int, times: *const crate::timeval) -> c_int; in futimes()
4131 socket: c_int, in bind()
4134 ) -> c_int; in bind()
4136 pub fn writev(fd: c_int, iov: *const crate::iovec, iovcnt: c_int) -> ssize_t; in writev()
4137 pub fn readv(fd: c_int, iov: *const crate::iovec, iovcnt: c_int) -> ssize_t; in readv()
4139 pub fn sendmsg(fd: c_int, msg: *const crate::msghdr, flags: c_int) -> ssize_t; in sendmsg()
4140 pub fn recvmsg(fd: c_int, msg: *mut crate::msghdr, flags: c_int) -> ssize_t; in recvmsg()
4141 pub fn getdomainname(name: *mut c_char, len: size_t) -> c_int; in getdomainname()
4142 pub fn setdomainname(name: *const c_char, len: size_t) -> c_int; in setdomainname()
4144 pub fn sendmmsg(sockfd: c_int, msgvec: *mut mmsghdr, vlen: c_uint, flags: c_int) -> c_int; in sendmmsg()
4146 sockfd: c_int, in recvmmsg()
4149 flags: c_int, in recvmmsg()
4151 ) -> c_int; in recvmmsg()
4158 ) -> c_int; in sched_getaffinity()
4163 ) -> c_int; in sched_setaffinity()
4164 pub fn umount(target: *const c_char) -> c_int; in umount()
4165 pub fn sched_get_priority_max(policy: c_int) -> c_int; in sched_get_priority_max()
4166 pub fn tee(fd_in: c_int, fd_out: c_int, len: size_t, flags: c_uint) -> ssize_t; in tee()
4167 pub fn settimeofday(tv: *const crate::timeval, tz: *const crate::timezone) -> c_int; in settimeofday()
4169 fd_in: c_int, in splice()
4171 fd_out: c_int, in splice()
4176 pub fn eventfd(init: c_uint, flags: c_int) -> c_int; in eventfd()
4177 pub fn sched_rr_get_interval(pid: crate::pid_t, tp: *mut crate::timespec) -> c_int; in sched_rr_get_interval()
4178 pub fn sem_timedwait(sem: *mut sem_t, abstime: *const crate::timespec) -> c_int; in sem_timedwait()
4179 pub fn sem_getvalue(sem: *mut sem_t, sval: *mut c_int) -> c_int; in sem_getvalue()
4180 pub fn sched_setparam(pid: crate::pid_t, param: *const crate::sched_param) -> c_int; in sched_setparam()
4181 pub fn swapoff(puath: *const c_char) -> c_int; in swapoff()
4182 pub fn vmsplice(fd: c_int, iov: *const crate::iovec, nr_segs: size_t, flags: c_uint) in vmsplice()
4190 ) -> c_int; in mount()
4191 pub fn personality(persona: c_ulong) -> c_int; in personality()
4192 pub fn sched_getparam(pid: crate::pid_t, param: *mut crate::sched_param) -> c_int; in sched_getparam()
4198 ) -> c_int; in ppoll()
4202 ) -> c_int; in pthread_mutex_timedlock()
4204 cb: extern "C" fn(*mut c_void) -> c_int, in clone()
4206 flags: c_int, in clone()
4209 ) -> c_int; in clone()
4210 pub fn sched_getscheduler(pid: crate::pid_t) -> c_int; in sched_getscheduler()
4213 flags: c_int, in clock_nanosleep()
4216 ) -> c_int; in clock_nanosleep()
4220 ) -> c_int; in pthread_attr_getguardsize()
4221 pub fn pthread_attr_setguardsize(attr: *mut crate::pthread_attr_t, guardsize: size_t) -> c_int; in pthread_attr_setguardsize()
4222 pub fn sethostname(name: *const c_char, len: size_t) -> c_int; in sethostname()
4223 pub fn sched_get_priority_min(policy: c_int) -> c_int; in sched_get_priority_min()
4224 pub fn umount2(target: *const c_char, flags: c_int) -> c_int; in umount2()
4225 pub fn swapon(path: *const c_char, swapflags: c_int) -> c_int; in swapon()
4228 policy: c_int, in sched_setscheduler()
4230 ) -> c_int; in sched_setscheduler()
4231 pub fn sigsuspend(mask: *const crate::sigset_t) -> c_int; in sigsuspend()
4238 ) -> c_int; in getgrgid_r()
4239 pub fn sigaltstack(ss: *const stack_t, oss: *mut stack_t) -> c_int; in sigaltstack()
4240 pub fn sem_close(sem: *mut sem_t) -> c_int; in sem_close()
4248 ) -> c_int; in getgrnam_r()
4249 pub fn initgroups(user: *const c_char, group: crate::gid_t) -> c_int; in initgroups()
4250 pub fn pthread_sigmask(how: c_int, set: *const sigset_t, oldset: *mut sigset_t) -> c_int; in pthread_sigmask()
4251 pub fn sem_open(name: *const c_char, oflag: c_int, ...) -> *mut sem_t; in sem_open()
4253 pub fn pthread_cancel(thread: crate::pthread_t) -> c_int; in pthread_cancel()
4254 pub fn pthread_kill(thread: crate::pthread_t, sig: c_int) -> c_int; in pthread_kill()
4255 pub fn sem_unlink(name: *const c_char) -> c_int; in sem_unlink()
4256 pub fn daemon(nochdir: c_int, noclose: c_int) -> c_int; in daemon()
4263 ) -> c_int; in getpwnam_r()
4270 ) -> c_int; in getpwuid_r()
4271 pub fn sigwait(set: *const sigset_t, sig: *mut c_int) -> c_int; in sigwait()
4276 ) -> c_int; in pthread_atfork()
4287 ngroups: *mut c_int, in getgrouplist()
4288 ) -> c_int; in getgrouplist()
4290 pub fn faccessat(dirfd: c_int, pathname: *const c_char, mode: c_int, flags: c_int) -> c_int; in faccessat()
4296 ) -> c_int; in pthread_create()
4303 ) -> c_int, in dl_iterate_phdr()