Lines Matching defs:c_uint
13 pub type c_uint = u32;
37 pub type pthread_key_t = ::c_uint;
38 pub type speed_t = ::c_uint;
39 pub type tcflag_t = ::c_uint;
42 pub type id_t = ::c_uint;
55 pub type idtype_t = ::c_uint;
61 pub type __u32 = ::c_uint;
220 pub ipv6mr_interface: ::c_uint,
468 pub ifa_flags: ::c_uint,
573 pub if_index: ::c_uint,
591 pub msg_len: ::c_uint,
883 pub ipi6_ifindex: ::c_uint,
901 pub mem_unit: ::c_uint,
1972 pub const SPLICE_F_MOVE: ::c_uint = 0x01;
1973 pub const SPLICE_F_NONBLOCK: ::c_uint = 0x02;
1974 pub const SPLICE_F_MORE: ::c_uint = 0x04;
1975 pub const SPLICE_F_GIFT: ::c_uint = 0x08;
2000 pub const SI_LOAD_SHIFT: ::c_uint = 16;
2100 pub const FILENAME_MAX: ::c_uint = 4096;
2101 pub const L_tmpnam: ::c_uint = 20;
2493 pub const SYNC_FILE_RANGE_WAIT_BEFORE: ::c_uint = 1;
2494 pub const SYNC_FILE_RANGE_WRITE: ::c_uint = 2;
2495 pub const SYNC_FILE_RANGE_WAIT_AFTER: ::c_uint = 4;
2660 pub const MFD_CLOEXEC: ::c_uint = 0x0001;
2661 pub const MFD_ALLOW_SEALING: ::c_uint = 0x0002;
2716 pub const BUFSIZ: ::c_uint = 1024;
2717 pub const TMP_MAX: ::c_uint = 10000;
2718 pub const FOPEN_MAX: ::c_uint = 1000;
3224 pub fn major(dev: ::dev_t) -> ::c_uint {
3228 major as ::c_uint
3231 pub fn minor(dev: ::dev_t) -> ::c_uint {
3235 minor as ::c_uint
3268 pub {const} fn CMSG_SPACE(len: ::c_uint) -> ::c_uint {
3270 as ::c_uint
3273 pub fn CMSG_LEN(len: ::c_uint) -> ::c_uint {
3274 (CMSG_ALIGN(::mem::size_of::<cmsghdr>()) + len as ::size_t) as ::c_uint
3315 pub {const} fn makedev(major: ::c_uint, minor: ::c_uint) -> ::dev_t {
3458 pub fn srand(seed: c_uint);
3583 pub fn alarm(seconds: ::c_uint) -> ::c_uint;
3629 pub fn sleep(secs: ::c_uint) -> ::c_uint;
3661 pub fn if_nametoindex(ifname: *const c_char) -> ::c_uint;
3662 pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut ::c_char;
3780 pub fn usleep(secs: ::c_uint) -> ::c_int;
3799 pub fn sem_init(sem: *mut sem_t, pshared: ::c_int, value: ::c_uint) -> ::c_int;
4034 flags: ::c_uint,
4083 vlen: ::c_uint,
4089 vlen: ::c_uint,
4104 pub fn tee(fd_in: ::c_int, fd_out: ::c_int, len: ::size_t, flags: ::c_uint) -> ::ssize_t;
4112 flags: ::c_uint,
4114 pub fn eventfd(init: ::c_uint, flags: ::c_int) -> ::c_int;
4124 flags: ::c_uint,