Lines Matching refs:pub

5 @@ -501,6 +501,8 @@ pub const SYS_pwritev2: ::c_long = 393;
6 pub const SYS_pkey_mprotect: ::c_long = 394;
7 pub const SYS_pkey_alloc: ::c_long = 395;
8 pub const SYS_pkey_free: ::c_long = 396;
9 +pub const SYS_io_uring_setup: ::c_long = 425;
10 +pub const SYS_io_uring_enter: ::c_long = 426;
13 pub const REG_R0: ::c_int = 0;
18 @@ -533,6 +533,8 @@ pub const SYS_pwritev2: ::c_long = 379;
19 pub const SYS_pkey_mprotect: ::c_long = 380;
20 pub const SYS_pkey_alloc: ::c_long = 381;
21 pub const SYS_pkey_free: ::c_long = 382;
22 +pub const SYS_io_uring_setup: ::c_long = 425;
23 +pub const SYS_io_uring_enter: ::c_long = 426;
26 pub const EBX: ::c_int = 0;
31 @@ -365,6 +365,8 @@ pub const SYS_pwritev2: ::c_long = 287;
32 pub const SYS_pkey_mprotect: ::c_long = 288;
33 pub const SYS_pkey_alloc: ::c_long = 289;
34 pub const SYS_pkey_free: ::c_long = 290;
35 +pub const SYS_io_uring_setup: ::c_long = 425;
36 +pub const SYS_io_uring_enter: ::c_long = 426;
37 pub const SYS_syscalls: ::c_long = 436;
44 @@ -602,6 +602,8 @@ pub const SYS_pwritev2: ::c_long = 328;
45 pub const SYS_pkey_mprotect: ::c_long = 329;
46 pub const SYS_pkey_alloc: ::c_long = 330;
47 pub const SYS_pkey_free: ::c_long = 331;
48 +pub const SYS_io_uring_setup: ::c_long = 425;
49 +pub const SYS_io_uring_enter: ::c_long = 426;
52 pub const R15: ::c_int = 0;
57 @@ -2285,6 +2285,10 @@ pub const AF_VSOCK: ::c_int = 40;
58 pub const PF_NFC: ::c_int = AF_NFC;
59 pub const PF_VSOCK: ::c_int = AF_VSOCK;
62 +pub const PR_GET_SECUREBITS: ::c_int = 27;
63 +pub const PR_SET_SECUREBITS: ::c_int = 28;
66 pub fn CMSG_NXTHDR(mhdr: *const msghdr,
69 pub fn android_set_abort_message(msg: *const ::c_char);
71 pub fn gettid() -> ::pid_t;
73 + pub fn getrandom(buf: *mut ::c_void, buflen: ::size_t, flags: ::c_uint) -> ::ssize_t;
75 + pub fn pthread_setname_np(thread: ::pthread_t, name: *const ::c_char) -> ::c_int;