/third_party/rust/crates/rustix/src/backend/libc/net/ |
H A D | syscalls.rs | 501 let l_linger = if let Some(linger) = linger { 502 let mut l_linger = linger.as_secs(); variables 504 l_linger = l_linger.checked_add(1).ok_or(io::Errno::INVAL)?; 506 l_linger.try_into().map_err(|_e| io::Errno::INVAL)? 512 l_linger, 522 Some(Duration::from_secs(linger.l_linger as u64))
|
/third_party/rust/crates/rustix/src/backend/linux_raw/net/ |
H A D | syscalls.rs | 894 let l_linger = if let Some(linger) = linger { 895 let mut l_linger = linger.as_secs(); variables 897 l_linger = l_linger.checked_add(1).ok_or(io::Errno::INVAL)?; 899 l_linger.try_into().map_err(|_e| io::Errno::INVAL)? 905 l_linger, 915 Some(Duration::from_secs(linger.l_linger as u64))
|
/third_party/ltp/utils/sctp/func_tests/ |
H A D | test_1_to_1_sockopt.c | 273 /* SO_LINGER Test with l_onff = 0 and l_linger = 0 */ in main() 275 slinger.l_linger = 0; in main() 301 slinger.l_linger != glinger.l_linger) in main()
|
/third_party/musl/libc-test/src/api/ |
H A D | sys_socket.c | 54 F(int,l_linger) in f()
|
/third_party/rust/crates/linux-raw-sys/gen/modules/ |
H A D | general.h | 93 int l_linger; member
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/remote-compile/ |
H A D | socket.cc | 151 int l_linger; /* how many seconds to linger for */ in setOptions() member
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | socket.h | 76 int l_linger; member
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
H A D | socket.h | 65 int l_linger; member
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | socket.h | 76 int l_linger; member
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
H A D | socket.h | 76 int l_linger; member
|
/third_party/musl/porting/linux/user/include/sys/ |
H A D | socket.h | 80 int l_linger; member
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | socket.h | 76 int l_linger; member
|
/third_party/musl/include/sys/ |
H A D | socket.h | 80 int l_linger; member
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | s_time.c | 463 no_linger.l_linger = 0; in doConnection()
|
/third_party/openssl/apps/ |
H A D | s_time.c | 463 no_linger.l_linger = 0; in doConnection()
|
/third_party/ffmpeg/libavformat/ |
H A D | libsrt.c | 373 lin.l_linger = s->linger; in libsrt_set_options_pre() 374 lin.l_onoff = lin.l_linger > 0 ? 1 : 0; in libsrt_set_options_pre()
|
/third_party/lwip/src/include/lwip/ |
H A D | sockets.h | 228 int l_linger; /* linger time in seconds */ member
|
/third_party/rust/crates/libc/src/unix/newlib/ |
H A D | mod.rs | 81 pub l_linger: ::c_int,
|
/third_party/lwip/src/api/ |
H A D | sockets.c | 3070 linger->l_linger = (int)conn_linger; 3073 linger->l_linger = 0; 3470 int lingersec = linger->l_linger;
|
/third_party/rust/crates/libc/src/vxworks/ |
H A D | mod.rs | 183 pub l_linger: ::c_int,
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 173 pub l_linger: ::c_int,
|
/third_party/rust/crates/linux-raw-sys/src/aarch64/ |
H A D | general.rs | 4721 pub l_linger: crate::ctypes::c_int,
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 251 pub l_linger: ::c_int,
|
/third_party/rust/crates/linux-raw-sys/src/riscv64/ |
H A D | general.rs | 4719 pub l_linger: crate::ctypes::c_int,
|
/third_party/rust/crates/linux-raw-sys/src/riscv32/ |
H A D | general.rs | 4699 pub l_linger: crate::ctypes::c_int,
|