Home
last modified time | relevance | path

Searched refs:SO_PEERSEC (Results 1 – 15 of 15) sorted by relevance

/external/selinux/libselinux/src/
Dgetpeercon.c10 #ifndef SO_PEERSEC
11 #define SO_PEERSEC 31 macro
26 ret = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, buf, &size); in getpeercon_raw()
36 ret = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, buf, &size); in getpeercon_raw()
/external/strace/xlat/
Dsock_options.h722 #if defined(SO_PEERSEC) || (defined(HAVE_DECL_SO_PEERSEC) && HAVE_DECL_SO_PEERSEC)
724 static_assert((SO_PEERSEC) == (30), "SO_PEERSEC != 30");
727 # define SO_PEERSEC 30
730 #if defined(SO_PEERSEC) || (defined(HAVE_DECL_SO_PEERSEC) && HAVE_DECL_SO_PEERSEC)
732 static_assert((SO_PEERSEC) == (16413), "SO_PEERSEC != 16413");
735 # define SO_PEERSEC 16413
738 #if defined(SO_PEERSEC) || (defined(HAVE_DECL_SO_PEERSEC) && HAVE_DECL_SO_PEERSEC)
740 static_assert((SO_PEERSEC) == (31), "SO_PEERSEC != 31");
743 # define SO_PEERSEC 31
1664 XLAT(SO_PEERSEC),
[all …]
Dsock_options.in232 SO_PEERSEC 30
234 SO_PEERSEC 16413
236 SO_PEERSEC 31
/external/kernel-headers/original/uapi/asm-generic/
Dsocket.h53 #define SO_PEERSEC 31 macro
/external/rust/crates/libc/src/unix/linux_like/linux/arch/sparc/
Dmod.rs38 pub const SO_PEERSEC: ::c_int = 0x001e; constant
/external/rust/crates/libc/src/unix/linux_like/linux/arch/mips/
Dmod.rs44 pub const SO_PEERSEC: ::c_int = 30; constant
/external/rust/crates/libc/src/unix/linux_like/linux/arch/powerpc/
Dmod.rs42 pub const SO_PEERSEC: ::c_int = 31; constant
/external/rust/crates/libc/src/unix/linux_like/linux/arch/generic/
Dmod.rs42 pub const SO_PEERSEC: ::c_int = 31; constant
/external/minijail/linux-x86/
Dlibconstants.gen.c4987 #ifdef SO_PEERSEC
4988 { "SO_PEERSEC", (unsigned long) SO_PEERSEC },
/external/rust/crates/libc/src/unix/redox/
Dmod.rs664 pub const SO_PEERSEC: ::c_int = 31; constant
/external/crosvm/net_sys/src/
Diff.rs319 pub const SO_PEERSEC: u32 = 31; constant
/external/python/cpython3/Modules/
Dsocketmodule.c7597 #ifdef SO_PEERSEC
7598 PyModule_AddIntMacro(m, SO_PEERSEC);
/external/rust/crates/libc/src/unix/linux_like/android/
Dmod.rs1081 pub const SO_PEERSEC: ::c_int = 31; constant
/external/python/cpython3/Doc/library/
Dsocket.rst364 ``SO_DOMAIN``, ``SO_PROTOCOL``, ``SO_PEERSEC``, ``SO_PASSSEC``,
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1411 ``SO_PROTOCOL``, ``SO_PEERSEC``, and ``SO_PASSSEC`` are now supported.