Module libc::aarch64_linux_android
Structs
Functions
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn qsort(base: &mut c_void, num: size_t, size: size_t, compar: fn(&c_void, &c_void) -> c_int)
-
extern "C" fn bsearch(key: &c_void, base: &c_void, num: size_t, size: size_t, compar: fn(&c_void, &c_void) -> c_int) -> &mut c_void
-
-
-
-
-
-
-
extern "C" fn tmpfile() -> &mut FILE
-
-
-
extern "C" fn getchar() -> c_int
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn rewind(stream: &mut FILE)
-
-
-
-
-
extern "C" fn clearerr(stream: &mut FILE)
-
extern "C" fn perror(s: &c_char)
-
-
-
-
extern "C" fn atoll(s: &c_char) -> c_longlong
-
-
-
-
extern "C" fn strtoll(s: &c_char, endp: &mut &mut c_char, base: c_int) -> c_longlong
-
-
extern "C" fn strtoull(s: &c_char, endp: &mut &mut c_char, base: c_int) -> c_ulonglong
-
-
-
-
extern "C" fn free(p: &mut c_void)
-
extern "C" fn abort() -> !
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn getchar_unlocked() -> c_int
-
-
-
-
-
-
extern "C" fn getpeername(socket: c_int, address: &mut sockaddr, address_len: &mut socklen_t) -> c_int
-
extern "C" fn getsockname(socket: c_int, address: &mut sockaddr, address_len: &mut socklen_t) -> c_int
-
extern "C" fn setsockopt(socket: c_int, level: c_int, name: c_int, value: &c_void, option_len: socklen_t) -> c_int
-
extern "C" fn socketpair(domain: c_int, type_: c_int, protocol: c_int, socket_vector: &mut c_int) -> c_int
-
extern "C" fn sendto(socket: c_int, buf: &c_void, len: size_t, flags: c_int, addr: &sockaddr, addrlen: socklen_t) -> ssize_t
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn rewinddir(dirp: &mut DIR)
-
-
-
extern "C" fn fchownat(dirfd: c_int, pathname: &c_char, owner: uid_t, group: gid_t, flags: c_int) -> c_int
-
-
extern "C" fn linkat(olddirfd: c_int, oldpath: &c_char, newdirfd: c_int, newpath: &c_char, flags: c_int) -> c_int
-
extern "C" fn renameat(olddirfd: c_int, oldpath: &c_char, newdirfd: c_int, newpath: &c_char) -> c_int
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn fork() -> pid_t
-
-
-
extern "C" fn getegid() -> gid_t
-
extern "C" fn geteuid() -> uid_t
-
extern "C" fn getgid() -> gid_t
-
-
extern "C" fn getlogin() -> &mut c_char
-
-
-
extern "C" fn getpgrp() -> pid_t
-
extern "C" fn getpid() -> pid_t
-
extern "C" fn getppid() -> pid_t
-
extern "C" fn getuid() -> uid_t
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn setsid() -> pid_t
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn munlockall() -> c_int
-
extern "C" fn mmap(addr: &mut c_void, len: size_t, prot: c_int, flags: c_int, fd: c_int, offset: off_t) -> &mut c_void
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn signal(signum: c_int, handler: sighandler_t) -> sighandler_t
-
-
-
-
-
extern "C" fn pthread_self() -> pthread_t
-
-
-
extern "C" fn pthread_attr_init(attr: &mut pthread_attr_t) -> c_int
-
extern "C" fn pthread_attr_destroy(attr: &mut pthread_attr_t) -> c_int
-
extern "C" fn pthread_attr_setstacksize(attr: &mut pthread_attr_t, stack_size: size_t) -> c_int
-
extern "C" fn pthread_attr_setdetachstate(attr: &mut pthread_attr_t, state: c_int) -> c_int
-
-
extern "C" fn sched_yield() -> c_int
-
extern "C" fn pthread_key_create(key: &mut pthread_key_t, dtor: fn(&mut c_void)) -> c_int
-
extern "C" fn pthread_key_delete(key: pthread_key_t) -> c_int
-
extern "C" fn pthread_getspecific(key: pthread_key_t) -> &mut c_void
-
extern "C" fn pthread_setspecific(key: pthread_key_t, value: &c_void) -> c_int
-
extern "C" fn pthread_mutex_init(lock: &mut pthread_mutex_t, attr: &pthread_mutexattr_t) -> c_int
-
extern "C" fn pthread_mutex_destroy(lock: &mut pthread_mutex_t) -> c_int
-
extern "C" fn pthread_mutex_lock(lock: &mut pthread_mutex_t) -> c_int
-
extern "C" fn pthread_mutex_trylock(lock: &mut pthread_mutex_t) -> c_int
-
extern "C" fn pthread_mutex_unlock(lock: &mut pthread_mutex_t) -> c_int
-
extern "C" fn pthread_mutexattr_init(attr: &mut pthread_mutexattr_t) -> c_int
-
extern "C" fn pthread_mutexattr_destroy(attr: &mut pthread_mutexattr_t) -> c_int
-
extern "C" fn pthread_mutexattr_settype(attr: &mut pthread_mutexattr_t, _type: c_int) -> c_int
-
extern "C" fn pthread_cond_init(cond: &mut pthread_cond_t, attr: &pthread_condattr_t) -> c_int
-
extern "C" fn pthread_cond_wait(cond: &mut pthread_cond_t, lock: &mut pthread_mutex_t) -> c_int
-
extern "C" fn pthread_cond_timedwait(cond: &mut pthread_cond_t, lock: &mut pthread_mutex_t, abstime: ×pec) -> c_int
-
extern "C" fn pthread_cond_signal(cond: &mut pthread_cond_t) -> c_int
-
extern "C" fn pthread_cond_broadcast(cond: &mut pthread_cond_t) -> c_int
-
extern "C" fn pthread_cond_destroy(cond: &mut pthread_cond_t) -> c_int
-
extern "C" fn pthread_condattr_init(attr: &mut pthread_condattr_t) -> c_int
-
extern "C" fn pthread_condattr_destroy(attr: &mut pthread_condattr_t) -> c_int
-
extern "C" fn pthread_rwlock_init(lock: &mut pthread_rwlock_t, attr: &pthread_rwlockattr_t) -> c_int
-
extern "C" fn pthread_rwlock_destroy(lock: &mut pthread_rwlock_t) -> c_int
-
extern "C" fn pthread_rwlock_rdlock(lock: &mut pthread_rwlock_t) -> c_int
-
extern "C" fn pthread_rwlock_tryrdlock(lock: &mut pthread_rwlock_t) -> c_int
-
extern "C" fn pthread_rwlock_wrlock(lock: &mut pthread_rwlock_t) -> c_int
-
extern "C" fn pthread_rwlock_trywrlock(lock: &mut pthread_rwlock_t) -> c_int
-
extern "C" fn pthread_rwlock_unlock(lock: &mut pthread_rwlock_t) -> c_int
-
extern "C" fn pthread_rwlockattr_init(attr: &mut pthread_rwlockattr_t) -> c_int
-
extern "C" fn pthread_rwlockattr_destroy(attr: &mut pthread_rwlockattr_t) -> c_int
-
extern "C" fn getsockopt(sockfd: c_int, level: c_int, optname: c_int, optval: &mut c_void, optlen: &mut socklen_t) -> c_int
-
-
-
-
extern "C" fn dlerror() -> &mut c_char
-
-
-
extern "C" fn getaddrinfo(node: &c_char, service: &c_char, hints: &addrinfo, res: &mut &mut addrinfo) -> c_int
-
extern "C" fn freeaddrinfo(res: &mut addrinfo)
-
-
-
extern "C" fn res_init() -> c_int
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn getservent() -> &mut servent
-
extern "C" fn setservent(stayopen: c_int)
-
-
-
-
-
-
-
-
-
extern "C" fn select(nfds: c_int, readfds: &mut fd_set, writefds: &mut fd_set, errorfds: &mut fd_set, timeout: &mut timeval) -> c_int
-
-
extern "C" fn localeconv() -> &mut lconv
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn pause() -> c_int
-
-
-
-
-
extern "C" fn readlinkat(dirfd: c_int, pathname: &c_char, buf: &mut c_char, bufsiz: size_t) -> ssize_t
-
-
-
extern "C" fn atexit(cb: fn()) -> c_int
-
extern "C" fn sigaction(signum: c_int, act: &sigaction_t, oldact: &mut sigaction_t) -> c_int
-
-
extern "C" fn pselect(nfds: c_int, readfds: &mut fd_set, writefds: &mut fd_set, errorfds: &mut fd_set, timeout: ×pec, sigmask: &sigset_t) -> c_int
-
extern "C" fn cfmakeraw(termios_: &mut termios)
-
-
-
-
-
-
-
-
-
-
-
fn SIGRTMAX() -> c_int
-
fn SIGRTMIN() -> c_int
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
extern "C" fn pthread_getattr_np(native: pthread_t, attr: &mut pthread_attr_t) -> c_int
-
extern "C" fn pthread_attr_getstack(attr: &pthread_attr_t, stackaddr: &mut &mut c_void, stacksize: &mut size_t) -> c_int
-
-
-
-
-
extern "C" fn statfs64(path: &c_char, buf: &mut statfs64_t) -> c_int
-
-
extern "C" fn fstatfs64(fd: c_int, buf: &mut statfs64_t) -> c_int
-
extern "C" fn statvfs64(path: &c_char, buf: &mut statvfs64_t) -> c_int
-
extern "C" fn fstatvfs64(fd: c_int, buf: &mut statvfs64_t) -> c_int
-
-
-
-
-
-
-
extern "C" fn freelocale(loc: locale_t)
-
-
-
-
-
-
-
-
-
extern "C" fn mmap64(addr: &mut c_void, len: size_t, prot: c_int, flags: c_int, fd: c_int, offset: off64_t) -> &mut c_void
-
-
-
-
-
-
extern "C" fn readdir64_r(dirp: &mut DIR, entry: &mut dirent64, result: &mut &mut dirent64) -> c_int
-
-
-
-
extern "C" fn pthread_condattr_getclock(attr: &pthread_condattr_t, clock_id: &mut clockid_t) -> c_int
-
extern "C" fn pthread_condattr_setclock(attr: &mut pthread_condattr_t, clock_id: clockid_t) -> c_int
-
-
-
-
-
-
extern "C" fn clearenv() -> c_int
-
-
-
-
-
-
-
extern "C" fn vfork() -> pid_t
-
-
-
-
-
-
-
-
extern "C" fn freeifaddrs(ifa: &mut ifaddrs)
-
-
-
-
-
-
-
-
-
-
extern "C" fn forkpty(amaster: &mut c_int, name: &mut c_char, termp: &termios, winp: &winsize) -> pid_t
-
extern "C" fn openpty(amaster: &mut c_int, aslave: &mut c_int, name: &mut c_char, termp: &termios, winp: &winsize) -> c_int
-
-
-
-
-
-
-
-
-
-
-
-
-
fn SO_EE_OFFENDER(ee: &sock_extended_err) -> &mut sockaddr
-
-
-
-
-
-
extern "C" fn prlimit(pid: pid_t, resource: c_int, new_limit: &rlimit, old_limit: &mut rlimit) -> c_int
-
extern "C" fn prlimit64(pid: pid_t, resource: c_int, new_limit: &rlimit64, old_limit: &mut rlimit64) -> c_int
-
-
-
-
-
-
-
-
extern "C" fn recvfrom(socket: c_int, buf: &mut c_void, len: size_t, flags: c_int, addr: &mut sockaddr, addrlen: &mut socklen_t) -> ssize_t
-
extern "C" fn getnameinfo(sa: &sockaddr, salen: socklen_t, host: &mut c_char, hostlen: size_t, serv: &mut c_char, sevlen: size_t, flags: c_int) -> c_int
-
-
-
extern "C" fn process_vm_readv(pid: pid_t, local_iov: &iovec, local_iov_count: c_ulong, remote_iov: &iovec, remote_iov_count: c_ulong, flags: c_ulong) -> ssize_t
-
extern "C" fn process_vm_writev(pid: pid_t, local_iov: &iovec, local_iov_count: c_ulong, remote_iov: &iovec, remote_iov_count: c_ulong, flags: c_ulong) -> ssize_t
-
-
-
-
extern "C" fn sched_getcpu() -> c_int
-
extern "C" fn mallinfo() -> mallinfo_t
-
-
-
-
-
extern "C" fn getutent() -> &mut utmp
-
-
-
-
-
-
-
-
-
-
extern "C" fn setxattr(path: &c_char, name: &c_char, value: &c_void, size: size_t, flags: c_int) -> c_int
-
extern "C" fn lsetxattr(path: &c_char, name: &c_char, value: &c_void, size: size_t, flags: c_int) -> c_int
-
extern "C" fn fsetxattr(filedes: c_int, name: &c_char, value: &c_void, size: size_t, flags: c_int) -> c_int
-
-
-
-
-
-
-
-
-
extern "C" fn timerfd_gettime(fd: c_int, current_value: &mut itimerspec) -> c_int
-
extern "C" fn timerfd_settime(fd: c_int, flags: c_int, new_value: &itimerspec, old_value: &mut itimerspec) -> c_int
-
-
-
-
-
-
extern "C" fn epoll_wait(epfd: c_int, events: &mut epoll_event, maxevents: c_int, timeout: c_int) -> c_int
-
extern "C" fn epoll_ctl(epfd: c_int, op: c_int, fd: c_int, event: &mut epoll_event) -> c_int
-
extern "C" fn pthread_getschedparam(native: pthread_t, policy: &mut c_int, param: &mut sched_param) -> c_int
-
-
-
-
-
-
extern "C" fn splice(fd_in: c_int, off_in: &mut loff_t, fd_out: c_int, off_out: &mut loff_t, len: size_t, flags: c_uint) -> ssize_t
-
-
-
-
-
extern "C" fn sched_setparam(pid: pid_t, param: &sched_param) -> c_int
-
-
-
-
extern "C" fn mount(src: &c_char, target: &c_char, fstype: &c_char, flags: c_ulong, data: &c_void) -> c_int
-
-
-
extern "C" fn sched_getparam(pid: pid_t, param: &mut sched_param) -> c_int
-
extern "C" fn ppoll(fds: &mut pollfd, nfds: nfds_t, timeout: ×pec, sigmask: &sigset_t) -> c_int
-
extern "C" fn pthread_mutex_timedlock(lock: &mut pthread_mutex_t, abstime: ×pec) -> c_int
-
extern "C" fn pthread_barrierattr_init(attr: &mut pthread_barrierattr_t) -> c_int
-
extern "C" fn pthread_barrierattr_destroy(attr: &mut pthread_barrierattr_t) -> c_int
-
-
-
extern "C" fn pthread_barrier_init(barrier: &mut pthread_barrier_t, attr: &pthread_barrierattr_t, count: c_uint) -> c_int
-
extern "C" fn pthread_barrier_destroy(barrier: &mut pthread_barrier_t) -> c_int
-
extern "C" fn pthread_barrier_wait(barrier: &mut pthread_barrier_t) -> c_int
-
extern "C" fn pthread_spin_init(lock: &mut pthread_spinlock_t, pshared: c_int) -> c_int
-
extern "C" fn pthread_spin_destroy(lock: &mut pthread_spinlock_t) -> c_int
-
extern "C" fn pthread_spin_lock(lock: &mut pthread_spinlock_t) -> c_int
-
extern "C" fn pthread_spin_trylock(lock: &mut pthread_spinlock_t) -> c_int
-
extern "C" fn pthread_spin_unlock(lock: &mut pthread_spinlock_t) -> c_int
-
extern "C" fn clone(cb: fn(&mut c_void) -> c_int, child_stack: &mut c_void, flags: c_int, arg: &mut c_void, ...) -> c_int
-
-
extern "C" fn clock_nanosleep(clk_id: clockid_t, flags: c_int, rqtp: ×pec, rmtp: &mut timespec) -> c_int
-
extern "C" fn pthread_attr_getguardsize(attr: &pthread_attr_t, guardsize: &mut size_t) -> c_int
-
-
-
-
-
-
extern "C" fn pthread_setschedparam(native: pthread_t, policy: c_int, param: &sched_param) -> c_int
-
-
extern "C" fn sched_setscheduler(pid: pid_t, policy: c_int, param: &sched_param) -> c_int
-
-
-
-
-
extern "C" fn getgrgid_r(gid: gid_t, grp: &mut group, buf: &mut c_char, buflen: size_t, result: &mut &mut group) -> c_int
-
-
-
extern "C" fn getgrnam_r(name: &c_char, grp: &mut group, buf: &mut c_char, buflen: size_t, result: &mut &mut group) -> c_int
-
-
-
-
-
-
-
extern "C" fn getpwnam_r(name: &c_char, pwd: &mut passwd, buf: &mut c_char, buflen: size_t, result: &mut &mut passwd) -> c_int
-
extern "C" fn getpwuid_r(uid: uid_t, pwd: &mut passwd, buf: &mut c_char, buflen: size_t, result: &mut &mut passwd) -> c_int
-
-
-
extern "C" fn pthread_atfork(prepare: fn(), parent: fn(), child: fn()) -> c_int
-
-
extern "C" fn getgrouplist(user: &c_char, group: gid_t, groups: &mut gid_t, ngroups: &mut c_int) -> c_int
-
-
-
-
-
extern "C" fn pthread_create(native: &mut pthread_t, attr: &pthread_attr_t, f: fn(&mut c_void) -> &mut c_void, value: &mut c_void) -> c_int
-
-
-
extern "C" fn recvmmsg(sockfd: c_int, msgvec: &mut mmsghdr, vlen: c_uint, flags: c_int, timeout: ×pec) -> c_int
-
extern "C" fn inotify_init() -> c_int
-
-
-
-
extern "C" fn regexec(preg: ®ex_t, input: &c_char, nmatch: size_t, pmatch: &mut regmatch_t, eflags: c_int) -> c_int
-
extern "C" fn regerror(errcode: c_int, preg: ®ex_t, errbuf: &mut c_char, errbuf_size: size_t) -> size_t
-
extern "C" fn regfree(preg: &mut regex_t)
-
extern "C" fn android_set_abort_message(msg: &c_char)
-
extern "C" fn gettid() -> pid_t
-
-
-
extern "C" fn dl_iterate_phdr(callback: fn(&mut dl_phdr_info, usize, &mut c_void) -> c_int, data: &mut c_void) -> c_int
-
extern "C" fn arc4random() -> u32
-
-
-
-
-
extern "C" fn memmem(haystack: &c_void, haystacklen: size_t, needle: &c_void, needlelen: size_t) -> &mut c_void
-
-
-
extern "C" fn getopt_long(argc: c_int, argv: &&mut c_char, optstring: &c_char, longopts: &option, longindex: &mut c_int) -> c_int
-
-
-
-
Unions
Types
-
type int8_t = i8
-
type int16_t = i16
-
type int32_t = i32
-
type int64_t = i64
-
type uint8_t = u8
-
type uint16_t = u16
-
type uint32_t = u32
-
type uint64_t = u64
-
type c_schar = i8
-
type c_uchar = u8
-
type c_short = i16
-
type c_ushort = u16
-
type c_int = i32
-
type c_uint = u32
-
type c_float = f32
-
type c_double = f64
-
type c_longlong = i64
-
type c_ulonglong = u64
-
type intmax_t = i64
-
type uintmax_t = u64
-
type size_t = usize
-
type ptrdiff_t = isize
-
type intptr_t = isize
-
type uintptr_t = usize
-
type ssize_t = isize
-
type pid_t = i32
-
type in_addr_t = u32
-
type in_port_t = u16
-
type sighandler_t = size_t
-
type cc_t = c_uchar
-
type uid_t = u32
-
type gid_t = u32
-
type locale_t = &mut c_void
-
type sa_family_t = u16
-
type speed_t = c_uint
-
type tcflag_t = c_uint
-
type clockid_t = c_int
-
type timer_t = &mut c_void
-
type key_t = c_int
-
type id_t = c_uint
-
type clock_t = c_long
-
type time_t = c_long
-
type suseconds_t = c_long
-
type off_t = c_long
-
type blkcnt_t = c_ulong
-
type blksize_t = c_ulong
-
type nlink_t = u32
-
type useconds_t = u32
-
type pthread_t = c_long
-
type pthread_mutexattr_t = c_long
-
type pthread_rwlockattr_t = c_long
-
type pthread_barrierattr_t = c_int
-
type pthread_condattr_t = c_long
-
type pthread_key_t = c_int
-
type fsfilcnt_t = c_ulong
-
type fsblkcnt_t = c_ulong
-
type nfds_t = c_uint
-
type rlim_t = c_ulong
-
type dev_t = c_ulong
-
type ino_t = c_ulong
-
type ino64_t = u64
-
type idtype_t = c_int
-
type loff_t = c_longlong
-
type Elf32_Addr = u32
-
type Elf32_Half = u16
-
type Elf32_Off = u32
-
type Elf32_Word = u32
-
type Elf64_Addr = u64
-
type Elf64_Half = u16
-
type Elf64_Off = u64
-
type Elf64_Word = u32
-
type Elf64_Xword = u64
-
type c_long = i64
-
type c_ulong = u64
-
type mode_t = u32
-
type off64_t = i64
-
type socklen_t = u32
-
type c_char = u8
-
type wchar_t = u32
Enums
Consts
-
const INT_MIN: c_int = ...
-
const INT_MAX: c_int = ...
-
const SIG_DFL: sighandler_t = ...
-
const SIG_IGN: sighandler_t = ...
-
const SIG_ERR: sighandler_t = ...
-
const DT_UNKNOWN: u8 = ...
-
const DT_FIFO: u8 = ...
-
const DT_CHR: u8 = ...
-
const DT_DIR: u8 = ...
-
const DT_BLK: u8 = ...
-
const DT_REG: u8 = ...
-
const DT_LNK: u8 = ...
-
const DT_SOCK: u8 = ...
-
const FD_CLOEXEC: c_int = ...
-
const USRQUOTA: c_int = ...
-
const GRPQUOTA: c_int = ...
-
const SIGIOT: c_int = ...
-
const S_ISUID: mode_t = ...
-
const S_ISGID: mode_t = ...
-
const S_ISVTX: mode_t = ...
-
const IF_NAMESIZE: size_t = ...
-
const IFNAMSIZ: size_t = ...
-
const LOG_EMERG: c_int = ...
-
const LOG_ALERT: c_int = ...
-
const LOG_CRIT: c_int = ...
-
const LOG_ERR: c_int = ...
-
const LOG_WARNING: c_int = ...
-
const LOG_NOTICE: c_int = ...
-
const LOG_INFO: c_int = ...
-
const LOG_DEBUG: c_int = ...
-
const LOG_KERN: c_int = ...
-
const LOG_USER: c_int = ...
-
const LOG_MAIL: c_int = ...
-
const LOG_DAEMON: c_int = ...
-
const LOG_AUTH: c_int = ...
-
const LOG_SYSLOG: c_int = ...
-
const LOG_LPR: c_int = ...
-
const LOG_NEWS: c_int = ...
-
const LOG_UUCP: c_int = ...
-
const LOG_LOCAL0: c_int = ...
-
const LOG_LOCAL1: c_int = ...
-
const LOG_LOCAL2: c_int = ...
-
const LOG_LOCAL3: c_int = ...
-
const LOG_LOCAL4: c_int = ...
-
const LOG_LOCAL5: c_int = ...
-
const LOG_LOCAL6: c_int = ...
-
const LOG_LOCAL7: c_int = ...
-
const LOG_PID: c_int = ...
-
const LOG_CONS: c_int = ...
-
const LOG_ODELAY: c_int = ...
-
const LOG_NDELAY: c_int = ...
-
const LOG_NOWAIT: c_int = ...
-
const LOG_PRIMASK: c_int = ...
-
const LOG_FACMASK: c_int = ...
-
const PRIO_MIN: c_int = ...
-
const PRIO_MAX: c_int = ...
-
const IPPROTO_ICMP: c_int = ...
-
const IPPROTO_ICMPV6: c_int = ...
-
const IPPROTO_TCP: c_int = ...
-
const IPPROTO_UDP: c_int = ...
-
const IPPROTO_IP: c_int = ...
-
const IPPROTO_IPV6: c_int = ...
-
const INADDR_LOOPBACK: in_addr_t = ...
-
const INADDR_ANY: in_addr_t = ...
-
const INADDR_BROADCAST: in_addr_t = ...
-
const INADDR_NONE: in_addr_t = ...
-
const ARPOP_REQUEST: u16 = ...
-
const ARPOP_REPLY: u16 = ...
-
const ATF_COM: c_int = ...
-
const ATF_PERM: c_int = ...
-
const ATF_PUBL: c_int = ...
-
const ATF_USETRAILERS: c_int = ...
-
const ULONG_SIZE: usize = ...
-
const EXIT_FAILURE: c_int = ...
-
const EXIT_SUCCESS: c_int = ...
-
const RAND_MAX: c_int = ...
-
const EOF: c_int = ...
-
const SEEK_SET: c_int = ...
-
const SEEK_CUR: c_int = ...
-
const SEEK_END: c_int = ...
-
const F_DUPFD: c_int = ...
-
const F_GETFD: c_int = ...
-
const F_SETFD: c_int = ...
-
const F_GETFL: c_int = ...
-
const F_SETFL: c_int = ...
-
const F_SETLEASE: c_int = ...
-
const F_GETLEASE: c_int = ...
-
const F_NOTIFY: c_int = ...
-
const F_CANCELLK: c_int = ...
-
const F_DUPFD_CLOEXEC: c_int = ...
-
const F_SETPIPE_SZ: c_int = ...
-
const F_GETPIPE_SZ: c_int = ...
-
const F_ADD_SEALS: c_int = ...
-
const F_GET_SEALS: c_int = ...
-
const F_SEAL_SEAL: c_int = ...
-
const F_SEAL_SHRINK: c_int = ...
-
const F_SEAL_GROW: c_int = ...
-
const F_SEAL_WRITE: c_int = ...
-
const SIGTRAP: c_int = ...
-
const PTHREAD_CREATE_JOINABLE: c_int = ...
-
const PTHREAD_CREATE_DETACHED: c_int = ...
-
const CLOCK_REALTIME: clockid_t = ...
-
const CLOCK_MONOTONIC: clockid_t = ...
-
const CLOCK_PROCESS_CPUTIME_ID: clockid_t = ...
-
const CLOCK_THREAD_CPUTIME_ID: clockid_t = ...
-
const CLOCK_MONOTONIC_RAW: clockid_t = ...
-
const CLOCK_REALTIME_COARSE: clockid_t = ...
-
const CLOCK_MONOTONIC_COARSE: clockid_t = ...
-
const CLOCK_BOOTTIME: clockid_t = ...
-
const CLOCK_REALTIME_ALARM: clockid_t = ...
-
const CLOCK_BOOTTIME_ALARM: clockid_t = ...
-
const CLOCK_TAI: clockid_t = ...
-
const TIMER_ABSTIME: c_int = ...
-
const RUSAGE_SELF: c_int = ...
-
const O_RDONLY: c_int = ...
-
const O_WRONLY: c_int = ...
-
const O_RDWR: c_int = ...
-
const SOCK_CLOEXEC: c_int = ...
-
const S_IFIFO: mode_t = ...
-
const S_IFCHR: mode_t = ...
-
const S_IFBLK: mode_t = ...
-
const S_IFDIR: mode_t = ...
-
const S_IFREG: mode_t = ...
-
const S_IFLNK: mode_t = ...
-
const S_IFSOCK: mode_t = ...
-
const S_IFMT: mode_t = ...
-
const S_IRWXU: mode_t = ...
-
const S_IXUSR: mode_t = ...
-
const S_IWUSR: mode_t = ...
-
const S_IRUSR: mode_t = ...
-
const S_IRWXG: mode_t = ...
-
const S_IXGRP: mode_t = ...
-
const S_IWGRP: mode_t = ...
-
const S_IRGRP: mode_t = ...
-
const S_IRWXO: mode_t = ...
-
const S_IXOTH: mode_t = ...
-
const S_IWOTH: mode_t = ...
-
const S_IROTH: mode_t = ...
-
const F_OK: c_int = ...
-
const R_OK: c_int = ...
-
const W_OK: c_int = ...
-
const X_OK: c_int = ...
-
const STDIN_FILENO: c_int = ...
-
const STDOUT_FILENO: c_int = ...
-
const STDERR_FILENO: c_int = ...
-
const SIGHUP: c_int = ...
-
const SIGINT: c_int = ...
-
const SIGQUIT: c_int = ...
-
const SIGILL: c_int = ...
-
const SIGABRT: c_int = ...
-
const SIGFPE: c_int = ...
-
const SIGKILL: c_int = ...
-
const SIGSEGV: c_int = ...
-
const SIGPIPE: c_int = ...
-
const SIGALRM: c_int = ...
-
const SIGTERM: c_int = ...
-
const PROT_NONE: c_int = ...
-
const PROT_READ: c_int = ...
-
const PROT_WRITE: c_int = ...
-
const PROT_EXEC: c_int = ...
-
const XATTR_CREATE: c_int = ...
-
const XATTR_REPLACE: c_int = ...
-
const RLIM64_INFINITY: c_ulonglong = ...
-
const LC_CTYPE: c_int = ...
-
const LC_NUMERIC: c_int = ...
-
const LC_TIME: c_int = ...
-
const LC_COLLATE: c_int = ...
-
const LC_MONETARY: c_int = ...
-
const LC_MESSAGES: c_int = ...
-
const LC_ALL: c_int = ...
-
const LC_CTYPE_MASK: c_int = ...
-
const LC_NUMERIC_MASK: c_int = ...
-
const LC_TIME_MASK: c_int = ...
-
const LC_COLLATE_MASK: c_int = ...
-
const LC_MONETARY_MASK: c_int = ...
-
const LC_MESSAGES_MASK: c_int = ...
-
const MAP_FILE: c_int = ...
-
const MAP_SHARED: c_int = ...
-
const MAP_PRIVATE: c_int = ...
-
const MAP_FIXED: c_int = ...
-
const MAP_FAILED: &mut c_void = ...
-
const MS_ASYNC: c_int = ...
-
const MS_INVALIDATE: c_int = ...
-
const MS_SYNC: c_int = ...
-
const MS_RDONLY: c_ulong = ...
-
const MS_NOSUID: c_ulong = ...
-
const MS_NODEV: c_ulong = ...
-
const MS_NOEXEC: c_ulong = ...
-
const MS_SYNCHRONOUS: c_ulong = ...
-
const MS_REMOUNT: c_ulong = ...
-
const MS_MANDLOCK: c_ulong = ...
-
const MS_DIRSYNC: c_ulong = ...
-
const MS_NOATIME: c_ulong = ...
-
const MS_NODIRATIME: c_ulong = ...
-
const MS_BIND: c_ulong = ...
-
const MS_MOVE: c_ulong = ...
-
const MS_REC: c_ulong = ...
-
const MS_SILENT: c_ulong = ...
-
const MS_POSIXACL: c_ulong = ...
-
const MS_UNBINDABLE: c_ulong = ...
-
const MS_PRIVATE: c_ulong = ...
-
const MS_SLAVE: c_ulong = ...
-
const MS_SHARED: c_ulong = ...
-
const MS_RELATIME: c_ulong = ...
-
const MS_KERNMOUNT: c_ulong = ...
-
const MS_I_VERSION: c_ulong = ...
-
const MS_STRICTATIME: c_ulong = ...
-
const MS_LAZYTIME: c_ulong = ...
-
const MS_ACTIVE: c_ulong = ...
-
const MS_MGC_VAL: c_ulong = ...
-
const MS_MGC_MSK: c_ulong = ...
-
const SCM_RIGHTS: c_int = ...
-
const SCM_CREDENTIALS: c_int = ...
-
const PROT_GROWSDOWN: c_int = ...
-
const PROT_GROWSUP: c_int = ...
-
const MAP_TYPE: c_int = ...
-
const MADV_NORMAL: c_int = ...
-
const MADV_RANDOM: c_int = ...
-
const MADV_SEQUENTIAL: c_int = ...
-
const MADV_WILLNEED: c_int = ...
-
const MADV_DONTNEED: c_int = ...
-
const MADV_FREE: c_int = ...
-
const MADV_REMOVE: c_int = ...
-
const MADV_DONTFORK: c_int = ...
-
const MADV_DOFORK: c_int = ...
-
const MADV_MERGEABLE: c_int = ...
-
const MADV_UNMERGEABLE: c_int = ...
-
const MADV_HUGEPAGE: c_int = ...
-
const MADV_NOHUGEPAGE: c_int = ...
-
const MADV_DONTDUMP: c_int = ...
-
const MADV_DODUMP: c_int = ...
-
const MADV_WIPEONFORK: c_int = ...
-
const MADV_KEEPONFORK: c_int = ...
-
const MADV_COLD: c_int = ...
-
const MADV_PAGEOUT: c_int = ...
-
const MADV_HWPOISON: c_int = ...
-
const MADV_POPULATE_READ: c_int = ...
-
const MADV_POPULATE_WRITE: c_int = ...
-
const MADV_DONTNEED_LOCKED: c_int = ...
-
const IFF_UP: c_int = ...
-
const IFF_BROADCAST: c_int = ...
-
const IFF_DEBUG: c_int = ...
-
const IFF_LOOPBACK: c_int = ...
-
const IFF_POINTOPOINT: c_int = ...
-
const IFF_NOTRAILERS: c_int = ...
-
const IFF_RUNNING: c_int = ...
-
const IFF_NOARP: c_int = ...
-
const IFF_PROMISC: c_int = ...
-
const IFF_ALLMULTI: c_int = ...
-
const IFF_MASTER: c_int = ...
-
const IFF_SLAVE: c_int = ...
-
const IFF_MULTICAST: c_int = ...
-
const IFF_PORTSEL: c_int = ...
-
const IFF_AUTOMEDIA: c_int = ...
-
const IFF_DYNAMIC: c_int = ...
-
const SOL_IP: c_int = ...
-
const SOL_TCP: c_int = ...
-
const SOL_UDP: c_int = ...
-
const SOL_IPV6: c_int = ...
-
const SOL_ICMPV6: c_int = ...
-
const SOL_RAW: c_int = ...
-
const SOL_DECNET: c_int = ...
-
const SOL_X25: c_int = ...
-
const SOL_PACKET: c_int = ...
-
const SOL_ATM: c_int = ...
-
const SOL_AAL: c_int = ...
-
const SOL_IRDA: c_int = ...
-
const SOL_NETBEUI: c_int = ...
-
const SOL_LLC: c_int = ...
-
const SOL_DCCP: c_int = ...
-
const SOL_NETLINK: c_int = ...
-
const SOL_TIPC: c_int = ...
-
const SOL_BLUETOOTH: c_int = ...
-
const SOL_ALG: c_int = ...
-
const AF_UNSPEC: c_int = ...
-
const AF_UNIX: c_int = ...
-
const AF_LOCAL: c_int = ...
-
const AF_INET: c_int = ...
-
const AF_AX25: c_int = ...
-
const AF_IPX: c_int = ...
-
const AF_APPLETALK: c_int = ...
-
const AF_NETROM: c_int = ...
-
const AF_BRIDGE: c_int = ...
-
const AF_ATMPVC: c_int = ...
-
const AF_X25: c_int = ...
-
const AF_INET6: c_int = ...
-
const AF_ROSE: c_int = ...
-
const AF_DECnet: c_int = ...
-
const AF_NETBEUI: c_int = ...
-
const AF_SECURITY: c_int = ...
-
const AF_KEY: c_int = ...
-
const AF_NETLINK: c_int = ...
-
const AF_ROUTE: c_int = ...
-
const AF_PACKET: c_int = ...
-
const AF_ASH: c_int = ...
-
const AF_ECONET: c_int = ...
-
const AF_ATMSVC: c_int = ...
-
const AF_RDS: c_int = ...
-
const AF_SNA: c_int = ...
-
const AF_IRDA: c_int = ...
-
const AF_PPPOX: c_int = ...
-
const AF_WANPIPE: c_int = ...
-
const AF_LLC: c_int = ...
-
const AF_CAN: c_int = ...
-
const AF_TIPC: c_int = ...
-
const AF_BLUETOOTH: c_int = ...
-
const AF_IUCV: c_int = ...
-
const AF_RXRPC: c_int = ...
-
const AF_ISDN: c_int = ...
-
const AF_PHONET: c_int = ...
-
const AF_IEEE802154: c_int = ...
-
const AF_CAIF: c_int = ...
-
const AF_ALG: c_int = ...
-
const PF_UNSPEC: c_int = ...
-
const PF_UNIX: c_int = ...
-
const PF_LOCAL: c_int = ...
-
const PF_INET: c_int = ...
-
const PF_AX25: c_int = ...
-
const PF_IPX: c_int = ...
-
const PF_APPLETALK: c_int = ...
-
const PF_NETROM: c_int = ...
-
const PF_BRIDGE: c_int = ...
-
const PF_ATMPVC: c_int = ...
-
const PF_X25: c_int = ...
-
const PF_INET6: c_int = ...
-
const PF_ROSE: c_int = ...
-
const PF_DECnet: c_int = ...
-
const PF_NETBEUI: c_int = ...
-
const PF_SECURITY: c_int = ...
-
const PF_KEY: c_int = ...
-
const PF_NETLINK: c_int = ...
-
const PF_ROUTE: c_int = ...
-
const PF_PACKET: c_int = ...
-
const PF_ASH: c_int = ...
-
const PF_ECONET: c_int = ...
-
const PF_ATMSVC: c_int = ...
-
const PF_RDS: c_int = ...
-
const PF_SNA: c_int = ...
-
const PF_IRDA: c_int = ...
-
const PF_PPPOX: c_int = ...
-
const PF_WANPIPE: c_int = ...
-
const PF_LLC: c_int = ...
-
const PF_CAN: c_int = ...
-
const PF_TIPC: c_int = ...
-
const PF_BLUETOOTH: c_int = ...
-
const PF_IUCV: c_int = ...
-
const PF_RXRPC: c_int = ...
-
const PF_ISDN: c_int = ...
-
const PF_PHONET: c_int = ...
-
const PF_IEEE802154: c_int = ...
-
const PF_CAIF: c_int = ...
-
const PF_ALG: c_int = ...
-
const MSG_OOB: c_int = ...
-
const MSG_PEEK: c_int = ...
-
const MSG_DONTROUTE: c_int = ...
-
const MSG_CTRUNC: c_int = ...
-
const MSG_TRUNC: c_int = ...
-
const MSG_DONTWAIT: c_int = ...
-
const MSG_EOR: c_int = ...
-
const MSG_WAITALL: c_int = ...
-
const MSG_FIN: c_int = ...
-
const MSG_SYN: c_int = ...
-
const MSG_CONFIRM: c_int = ...
-
const MSG_RST: c_int = ...
-
const MSG_ERRQUEUE: c_int = ...
-
const MSG_NOSIGNAL: c_int = ...
-
const MSG_MORE: c_int = ...
-
const MSG_WAITFORONE: c_int = ...
-
const MSG_FASTOPEN: c_int = ...
-
const MSG_CMSG_CLOEXEC: c_int = ...
-
const SCM_TIMESTAMP: c_int = ...
-
const SOCK_RAW: c_int = ...
-
const SOCK_RDM: c_int = ...
-
const IP_TOS: c_int = ...
-
const IP_TTL: c_int = ...
-
const IP_HDRINCL: c_int = ...
-
const IP_OPTIONS: c_int = ...
-
const IP_ROUTER_ALERT: c_int = ...
-
const IP_RECVOPTS: c_int = ...
-
const IP_RETOPTS: c_int = ...
-
const IP_PKTINFO: c_int = ...
-
const IP_PKTOPTIONS: c_int = ...
-
const IP_MTU_DISCOVER: c_int = ...
-
const IP_RECVERR: c_int = ...
-
const IP_RECVTTL: c_int = ...
-
const IP_RECVTOS: c_int = ...
-
const IP_MTU: c_int = ...
-
const IP_FREEBIND: c_int = ...
-
const IP_IPSEC_POLICY: c_int = ...
-
const IP_XFRM_POLICY: c_int = ...
-
const IP_PASSSEC: c_int = ...
-
const IP_TRANSPARENT: c_int = ...
-
const IP_ORIGDSTADDR: c_int = ...
-
const IP_RECVORIGDSTADDR: c_int = ...
-
const IP_MINTTL: c_int = ...
-
const IP_NODEFRAG: c_int = ...
-
const IP_CHECKSUM: c_int = ...
-
const IP_BIND_ADDRESS_NO_PORT: c_int = ...
-
const IP_MULTICAST_IF: c_int = ...
-
const IP_MULTICAST_TTL: c_int = ...
-
const IP_MULTICAST_LOOP: c_int = ...
-
const IP_ADD_MEMBERSHIP: c_int = ...
-
const IP_DROP_MEMBERSHIP: c_int = ...
-
const IP_UNBLOCK_SOURCE: c_int = ...
-
const IP_BLOCK_SOURCE: c_int = ...
-
const IP_ADD_SOURCE_MEMBERSHIP: c_int = ...
-
const IP_DROP_SOURCE_MEMBERSHIP: c_int = ...
-
const IP_MSFILTER: c_int = ...
-
const IP_MULTICAST_ALL: c_int = ...
-
const IP_UNICAST_IF: c_int = ...
-
const IP_DEFAULT_MULTICAST_TTL: c_int = ...
-
const IP_DEFAULT_MULTICAST_LOOP: c_int = ...
-
const IP_PMTUDISC_DONT: c_int = ...
-
const IP_PMTUDISC_WANT: c_int = ...
-
const IP_PMTUDISC_DO: c_int = ...
-
const IP_PMTUDISC_PROBE: c_int = ...
-
const IP_PMTUDISC_INTERFACE: c_int = ...
-
const IP_PMTUDISC_OMIT: c_int = ...
-
const IPPROTO_HOPOPTS: c_int = ...
-
const IPPROTO_IGMP: c_int = ...
-
const IPPROTO_IPIP: c_int = ...
-
const IPPROTO_EGP: c_int = ...
-
const IPPROTO_PUP: c_int = ...
-
const IPPROTO_IDP: c_int = ...
-
const IPPROTO_TP: c_int = ...
-
const IPPROTO_DCCP: c_int = ...
-
const IPPROTO_ROUTING: c_int = ...
-
const IPPROTO_FRAGMENT: c_int = ...
-
const IPPROTO_RSVP: c_int = ...
-
const IPPROTO_GRE: c_int = ...
-
const IPPROTO_ESP: c_int = ...
-
const IPPROTO_AH: c_int = ...
-
const IPPROTO_NONE: c_int = ...
-
const IPPROTO_DSTOPTS: c_int = ...
-
const IPPROTO_MTP: c_int = ...
-
const IPPROTO_ENCAP: c_int = ...
-
const IPPROTO_PIM: c_int = ...
-
const IPPROTO_COMP: c_int = ...
-
const IPPROTO_SCTP: c_int = ...
-
const IPPROTO_MH: c_int = ...
-
const IPPROTO_UDPLITE: c_int = ...
-
const IPPROTO_RAW: c_int = ...
-
const IPPROTO_BEETPH: c_int = ...
-
const IPPROTO_MPLS: c_int = ...
-
const IPPROTO_MPTCP: c_int = ...
-
const MCAST_EXCLUDE: c_int = ...
-
const MCAST_INCLUDE: c_int = ...
-
const MCAST_JOIN_GROUP: c_int = ...
-
const MCAST_BLOCK_SOURCE: c_int = ...
-
const MCAST_UNBLOCK_SOURCE: c_int = ...
-
const MCAST_LEAVE_GROUP: c_int = ...
-
const MCAST_JOIN_SOURCE_GROUP: c_int = ...
-
const MCAST_LEAVE_SOURCE_GROUP: c_int = ...
-
const MCAST_MSFILTER: c_int = ...
-
const IPV6_ADDRFORM: c_int = ...
-
const IPV6_2292PKTINFO: c_int = ...
-
const IPV6_2292HOPOPTS: c_int = ...
-
const IPV6_2292DSTOPTS: c_int = ...
-
const IPV6_2292RTHDR: c_int = ...
-
const IPV6_2292PKTOPTIONS: c_int = ...
-
const IPV6_CHECKSUM: c_int = ...
-
const IPV6_2292HOPLIMIT: c_int = ...
-
const IPV6_NEXTHOP: c_int = ...
-
const IPV6_AUTHHDR: c_int = ...
-
const IPV6_UNICAST_HOPS: c_int = ...
-
const IPV6_MULTICAST_IF: c_int = ...
-
const IPV6_MULTICAST_HOPS: c_int = ...
-
const IPV6_MULTICAST_LOOP: c_int = ...
-
const IPV6_ADD_MEMBERSHIP: c_int = ...