| /third_party/libuv/ |
| D | BUILD.gn | 31 "src/unix", 48 "src/unix", 56 "src/unix", 85 "src/unix/async.c", 86 "src/unix/core.c", 87 "src/unix/dl.c", 88 "src/unix/fs.c", 89 "src/unix/getaddrinfo.c", 90 "src/unix/getnameinfo.c", 91 "src/unix/linux.c", [all …]
|
| D | Makefile.am | 97 uvinclude_HEADERS += include/uv/unix.h 98 AM_CPPFLAGS += -I$(top_srcdir)/src/unix 99 libuv_la_SOURCES += src/unix/async.c \ 100 src/unix/core.c \ 101 src/unix/dl.c \ 102 src/unix/fs.c \ 103 src/unix/getaddrinfo.c \ 104 src/unix/getnameinfo.c \ 105 src/unix/internal.h \ 106 src/unix/loop-watcher.c \ [all …]
|
| D | ChangeLog | 13 * unix: ignore ifaddrs with NULL ifa_addr (Stephen Gallagher) 15 * unix,win: utility for setting priority for thread (Hao Hu) 25 * unix,win: fix read past end of pipe name buffer (Ben Noordhuis) 27 * unix: unbreak macOS < 10.14 (Sergey Fedorov) 33 * unix: correct pwritev conditional (Bo Anderson) 51 * unix,win: fix busy loop with zero timeout timers (Matheus Izvekov) 61 * unix: support full TCP keep-alive on Solaris (Andy Pan) 69 * unix: optimize uv__tcp_keepalive cpp directives (Andy Pan) 81 * unix,win: reset the timer queue on stop (Santiago Gimeno) 117 * unix: set ipv6 scope id for link-local addresses (Ben Noordhuis) [all …]
|
| D | CMakeLists.txt | 232 src/unix/async.c 233 src/unix/core.c 234 src/unix/dl.c 235 src/unix/fs.c 236 src/unix/getaddrinfo.c 237 src/unix/getnameinfo.c 238 src/unix/loop-watcher.c 239 src/unix/loop.c 240 src/unix/pipe.c 241 src/unix/poll.c [all …]
|
| /third_party/libwebsockets/lib/plat/unix/ |
| D | CMakeLists.txt | 45 plat/unix/unix-caps.c 46 plat/unix/unix-misc.c 47 plat/unix/unix-init.c 50 list(APPEND SOURCES plat/unix/unix-file.c) 54 plat/unix/unix-pipe.c 55 plat/unix/unix-service.c 56 plat/unix/unix-sockets.c 57 plat/unix/unix-fds.c 61 list(APPEND SOURCES plat/unix/android/android-resolv.c) 63 list(APPEND SOURCES plat/unix/unix-resolv.c) [all …]
|
| /third_party/rust/crates/io-lifetimes/src/ |
| D | impls_mio.rs | 5 #[cfg(any(unix, target_os = "wasi"))] 9 #[cfg(unix)] 10 use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd}; 16 #[cfg(any(unix, target_os = "wasi"))] 32 #[cfg(any(unix, target_os = "wasi"))] 40 #[cfg(any(unix, target_os = "wasi"))] 64 #[cfg(any(unix, target_os = "wasi"))] 72 #[cfg(any(unix, target_os = "wasi"))] 96 #[cfg(any(unix, target_os = "wasi"))] 112 #[cfg(any(unix, target_os = "wasi"))] [all …]
|
| D | raw.rs | 3 //! On Unix, "everything is a file descriptor". On Windows, file/pipe/process 7 #[cfg(unix)] 8 use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd}; 19 /// This is a portability abstraction over Unix-like [`RawFd`] and 21 #[cfg(any(unix, target_os = "wasi"))] 26 /// This is a portability abstraction over Unix-like `RawFd` and 33 /// This is a portability abstraction over Unix-like [`RawFd`] and 35 #[cfg(any(unix, target_os = "wasi"))] 40 /// This is a portability abstraction over Unix-like `RawFd` and 47 /// This is a portability abstraction over Unix-like [`AsRawFd`] and Windows' [all …]
|
| D | impls_async_std.rs | 5 #[cfg(any(unix, target_os = "wasi"))] 12 #[cfg(unix)] 13 use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd}; 23 #[cfg(any(unix, target_os = "wasi"))] 39 #[cfg(any(unix, target_os = "wasi"))] 47 #[cfg(any(unix, target_os = "wasi"))] 71 #[cfg(any(unix, target_os = "wasi"))] 79 #[cfg(any(unix, target_os = "wasi"))] 103 #[cfg(any(unix, target_os = "wasi"))] 119 #[cfg(any(unix, target_os = "wasi"))] [all …]
|
| D | impls_std.rs | 3 #[cfg(any(unix, target_os = "wasi"))] 7 #[cfg(any(unix, target_os = "wasi"))] 11 #[cfg(unix)] 12 use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd}; 20 #[cfg(any(unix, target_os = "wasi"))] 44 #[cfg(any(unix, target_os = "wasi"))] 68 #[cfg(any(unix, target_os = "wasi"))] 92 #[cfg(any(unix, target_os = "wasi"))] 132 #[cfg(any(unix, target_os = "wasi"))] 148 #[cfg(any(unix, target_os = "wasi"))] [all …]
|
| D | portability.rs | 3 //! On Unix, "everything is a file descriptor". On Windows, file/pipe/process 8 #[cfg(any(unix, target_os = "wasi"))] 15 /// This is a portability abstraction over Unix-like [`BorrowedFd`] and 17 #[cfg(any(unix, target_os = "wasi"))] 22 /// This is a portability abstraction over Unix-like `BorrowedFd` and 29 /// This is a portability abstraction over Unix-like [`BorrowedFd`] and 31 #[cfg(any(unix, target_os = "wasi"))] 36 /// This is a portability abstraction over Unix-like `BorrowedFd` and 43 /// This is a portability abstraction over Unix-like [`OwnedFd`] and 45 #[cfg(any(unix, target_os = "wasi"))] [all …]
|
| D | impls_tokio.rs | 5 #[cfg(any(unix, target_os = "wasi"))] 9 #[cfg(unix)] 10 use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd}; 16 #[cfg(any(unix, target_os = "wasi"))] 32 #[cfg(any(unix, target_os = "wasi"))] 40 #[cfg(any(unix, target_os = "wasi"))] 64 #[cfg(any(unix, target_os = "wasi"))] 80 #[cfg(any(unix, target_os = "wasi"))] 96 #[cfg(any(unix, target_os = "wasi"))] 112 #[cfg(any(unix, target_os = "wasi"))] [all …]
|
| D | views.rs | 12 #[cfg(any(unix, target_os = "wasi"))] 210 #[cfg(any(unix, target_os = "wasi"))] 220 #[cfg(unix)] 221 unsafe impl SocketlikeViewType for std::os::unix::net::UnixStream {} 222 #[cfg(unix)] 223 unsafe impl SocketlikeViewType for std::os::unix::net::UnixListener {} 225 #[cfg(unix)] 226 unsafe impl SocketlikeViewType for std::os::unix::net::UnixDatagram {} 247 #[cfg(unix)] 249 unsafe impl SocketlikeViewType for async_std::os::unix::net::UnixStream {} [all …]
|
| /third_party/rust/crates/rustix/src/backend/libc/net/ |
| D | addr.rs | 4 #[cfg(unix)] 6 #[cfg(unix)] 8 #[cfg(unix)] 12 #[cfg(unix)] 14 #[cfg(unix)] 18 #[cfg(unix)] 22 pub(crate) unix: c::sockaddr_un, field 34 #[cfg(unix)] 36 /// Construct a new Unix-domain address from a filesystem path. 44 let mut unix = Self::init(); in _new() localVariable [all …]
|
| /third_party/skia/third_party/externals/freetype/builds/unix/ |
| D | detect.mk | 2 # FreeType 2 configuration file to detect a UNIX host platform. 27 PLATFORM := unix 32 ifeq ($(PLATFORM),unix) 38 # file named `unix-dev.mk'. It disables optimization and libtool. 41 CONFIG_FILE := unix-dev.mk 50 # file named `unix-lcc.mk'. It disables libtool for LCC. 53 CONFIG_FILE := unix-lcc.mk 61 # If a Unix platform is detected, the configure script is called and 62 # `unix-def.mk' together with `unix-cc.mk' is created. 74 CONFIG_FILE := unix.mk [all …]
|
| D | unix.mk | 2 # FreeType 2 configuration rules for UNIX platforms 15 # We need these declarations here since unix-def.mk is a generated file. 16 PLATFORM_DIR := $(TOP_DIR)/builds/unix 17 PLATFORM := unix 19 have_mk := $(wildcard $(OBJ_DIR)/unix-def.mk) 22 include $(OBJ_DIR)/unix-def.mk 23 include $(OBJ_DIR)/unix-cc.mk 25 include $(PLATFORM_DIR)/unix-def.mk 26 include $(PLATFORM_DIR)/unix-cc.mk 57 include $(TOP_DIR)/builds/unix/install.mk
|
| /third_party/rust/crates/rustix/src/backend/linux_raw/net/ |
| D | addr.rs | 18 pub(crate) unix: c::sockaddr_un, field 23 /// Construct a new Unix-domain address from a filesystem path. 31 let mut unix = Self::init(); in _new() localVariable 33 if bytes.len() > unix.sun_path.len() { in _new() 37 unix.sun_path[i] = *b as c::c_char; in _new() 41 Ok(Self { unix, len }) in _new() 44 /// Construct a new abstract Unix-domain address from a byte slice. 47 let mut unix = Self::init(); in new_abstract_name() localVariable 48 if 1 + name.len() > unix.sun_path.len() { in new_abstract_name() 51 unix.sun_path[0] = b'\0' as c::c_char; in new_abstract_name() [all …]
|
| /third_party/opencl-headers/.github/workflows/ |
| D | linux.yml | 14 # Unix Makefiles 22 GEN: Unix Makefiles 28 GEN: Unix Makefiles 34 GEN: Unix Makefiles 40 GEN: Unix Makefiles 46 GEN: Unix Makefiles 52 GEN: Unix Makefiles 58 GEN: Unix Makefiles 64 GEN: Unix Makefiles 70 GEN: Unix Makefiles [all …]
|
| /third_party/curl/lib/ |
| D | ftplistparser.c | 28 * 1) Unix version 1 30 * 2) Unix version 2 32 * 3) Unix version 3 34 * 4) Unix symlink 159 } UNIX; member 419 switch(parser->state.UNIX.main) { in Curl_ftp_parselist() 421 switch(parser->state.UNIX.sub.total_dirsize) { in Curl_ftp_parselist() 424 parser->state.UNIX.sub.total_dirsize = PL_UNIX_TOTALSIZE_READING; in Curl_ftp_parselist() 428 parser->state.UNIX.main = PL_UNIX_FILETYPE; in Curl_ftp_parselist() 454 parser->state.UNIX.main = PL_UNIX_FILETYPE; in Curl_ftp_parselist() [all …]
|
| /third_party/libwebsockets/READMEs/ |
| D | README.unix-domain-reverse-proxy.md | 1 ## Unix Domain Sockets Reverse Proxy 7 These are particularly useful when using Unix Domain Sockets, basically 15 data from the unix socket owner is in a different process than the server 16 that serves on the unix socket. If it has problems, they do not affect 17 the actual public-facing web server. The unix domain socket server may 20 Compared to CGI, there are no forks to make a connection to the unix 25 Unix Domain Sockets are effectively "files" in the server filesystem, and 34 LWSMPRO_HTTPS depending on the protocol the unix socket understands, and the 35 origin address has the form `+/path/to/unix/socket:/path/inside/mount`. 37 The + at the start indicates it is a local unix socket we are proxying, and [all …]
|
| /third_party/rust/crates/rustix/src/net/ |
| D | socket_addr_any.rs | 3 //! This is similar to [`std::net::SocketAddr`], but also supports Unix-domain 12 #[cfg(unix)] 31 #[cfg(unix)] 32 Unix(SocketAddrUnix), enumerator 49 #[cfg(unix)] 53 Self::Unix(from) in from() 64 #[cfg(unix)] in address_family() 65 Self::Unix(_) => AddressFamily::UNIX, in address_family() 99 #[cfg(unix)] in fmt() 100 Self::Unix(unix) => unix.fmt(fmt), in fmt()
|
| /third_party/rust/crates/libloading/src/ |
| D | changelog.rs | 29 /// Additionally, on platforms `libloading` has no support (today: `not(any(unix, windows))`), we 37 /// [target.'cfg(any(unix, windows))'.dependencies.libloading] 54 /// be `unsafe`. The affected functions are: [`Library::new`], [`os::unix::Library::new`], 55 /// [`os::unix::Library::open`], [`os::windows::Library::new`], 108 /// ### Better & more consistent default behaviour on UNIX systems 110 /// On UNIX systems the [`Library::new`], [`os::unix::Library::new`] and 111 /// [`os::unix::Library::this`] methods have been changed to use 118 /// * On most UNIX systems (macOS being a notable exception) `RTLD_LOCAL` is the default when 138 /// [`os::unix::Library::this`]: crate::os::unix::Library::this 139 /// [`os::unix::Library::new`]: crate::os::unix::Library::new [all …]
|
| /third_party/libwebsockets/ |
| D | BUILD.gn | 63 "//third_party/libwebsockets/lib/plat/unix/unix-caps.c", 64 "//third_party/libwebsockets/lib/plat/unix/unix-fds.c", 65 "//third_party/libwebsockets/lib/plat/unix/unix-file.c", 66 "//third_party/libwebsockets/lib/plat/unix/unix-init.c", 67 "//third_party/libwebsockets/lib/plat/unix/unix-misc.c", 68 "//third_party/libwebsockets/lib/plat/unix/unix-pipe.c", 69 "//third_party/libwebsockets/lib/plat/unix/unix-service.c", 70 "//third_party/libwebsockets/lib/plat/unix/unix-sockets.c", 126 "//third_party/libwebsockets/lib/plat/unix", 127 "//third_party/libwebsockets/lib/plat/unix/android", [all …]
|
| /third_party/rust/crates/libloading/tests/ |
| D | markers.rs | 30 #[cfg(unix)] 33 assert_send::<libloading::os::unix::Library>(); in check_unix_library_send() 47 #[cfg(unix)] 50 assert_sync::<libloading::os::unix::Library>(); in check_unix_library_sync() 65 #[cfg(unix)] 68 assert_send::<libloading::os::unix::Symbol<fn() -> ()>>(); in check_unix_symbol_send() 69 // assert_not_send::<libloading::os::unix::Symbol<*const ()>>(); in check_unix_symbol_send() 84 #[cfg(unix)] 87 assert_sync::<libloading::os::unix::Symbol<fn() -> ()>>(); in check_unix_symbol_sync() 88 // assert_not_sync::<libloading::os::unix::Symbol<*const ()>>(); in check_unix_symbol_sync()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/ |
| D | README.txt | 1 llvm/lib/Support/Unix README 5 are common to two or more variants of UNIX. For example, the directory 8 Unix - only code that is truly generic to all UNIX platforms 9 Posix - code that is specific to Posix variants of UNIX 10 SUS - code that is specific to the Single Unix Specification 11 SysV - code that is specific to System V variants of UNIX
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
| D | README.txt | 1 llvm/lib/Support/Unix README 5 are common to two or more variants of UNIX. For example, the directory 8 Unix - only code that is truly generic to all UNIX platforms 9 Posix - code that is specific to Posix variants of UNIX 10 SUS - code that is specific to the Single Unix Specification 11 SysV - code that is specific to System V variants of UNIX
|