Home
last modified time | relevance | path

Searched full:unix (Results 1 – 25 of 2860) sorted by relevance

12345678910>>...115

/third_party/libuv/
DBUILD.gn31 "src/unix",
48 "src/unix",
56 "src/unix",
84 "src/unix/async.c",
85 "src/unix/core.c",
86 "src/unix/dl.c",
87 "src/unix/epoll.c",
88 "src/unix/fs.c",
89 "src/unix/getaddrinfo.c",
90 "src/unix/getnameinfo.c",
[all …]
DMakefile.am96 uvinclude_HEADERS += include/uv/unix.h
97 AM_CPPFLAGS += -I$(top_srcdir)/src/unix
98 libuv_la_SOURCES += src/unix/async.c \
99 src/unix/atomic-ops.h \
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 \
[all …]
DChangeLog27 * unix: simplify getpwuid call (Jameson Nash)
47 * unix,win: fix UV_RUN_ONCE + uv_idle_stop loop hang (Ben Noordhuis)
75 * unix: use MSG_CMSG_CLOEXEC where supported (Ben Noordhuis)
107 * unix,tcp: fix errno handling in uv__tcp_bind() (Samuel Cabrero)
109 * shutdown,unix: reduce code duplication (Jameson Nash)
111 * unix: fix c99 comments (Ben Noordhuis)
113 * unix: retry tcgetattr/tcsetattr() on EINTR (Ben Noordhuis)
117 * unix,stream: optimize uv_shutdown() codepath (Jameson Nash)
123 * unix,tcp: allow EINVAL errno from setsockopt in uv_tcp_close_reset() (Stacey
154 * unix: fix STATIC_ASSERT to check what it means to check (Jessica Clarke)
[all …]
DCMakeLists.txt181 src/unix/async.c
182 src/unix/core.c
183 src/unix/dl.c
184 src/unix/fs.c
185 src/unix/getaddrinfo.c
186 src/unix/getnameinfo.c
187 src/unix/loop-watcher.c
188 src/unix/loop.c
189 src/unix/pipe.c
190 src/unix/poll.c
[all …]
/third_party/node/deps/uv/
DMakefile.am96 uvinclude_HEADERS += include/uv/unix.h
97 AM_CPPFLAGS += -I$(top_srcdir)/src/unix
98 libuv_la_SOURCES += src/unix/async.c \
99 src/unix/atomic-ops.h \
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 \
[all …]
Duv.gyp154 'include/uv/unix.h',
160 'src/unix/async.c',
161 'src/unix/atomic-ops.h',
162 'src/unix/core.c',
163 'src/unix/dl.c',
164 'src/unix/fs.c',
165 'src/unix/getaddrinfo.c',
166 'src/unix/getnameinfo.c',
167 'src/unix/internal.h',
168 'src/unix/loop.c',
[all …]
DChangeLog27 * unix: simplify getpwuid call (Jameson Nash)
47 * unix,win: fix UV_RUN_ONCE + uv_idle_stop loop hang (Ben Noordhuis)
75 * unix: use MSG_CMSG_CLOEXEC where supported (Ben Noordhuis)
107 * unix,tcp: fix errno handling in uv__tcp_bind() (Samuel Cabrero)
109 * shutdown,unix: reduce code duplication (Jameson Nash)
111 * unix: fix c99 comments (Ben Noordhuis)
113 * unix: retry tcgetattr/tcsetattr() on EINTR (Ben Noordhuis)
117 * unix,stream: optimize uv_shutdown() codepath (Jameson Nash)
123 * unix,tcp: allow EINVAL errno from setsockopt in uv_tcp_close_reset() (Stacey
154 * unix: fix STATIC_ASSERT to check what it means to check (Jessica Clarke)
[all …]
DCMakeLists.txt181 src/unix/async.c
182 src/unix/core.c
183 src/unix/dl.c
184 src/unix/fs.c
185 src/unix/getaddrinfo.c
186 src/unix/getnameinfo.c
187 src/unix/loop-watcher.c
188 src/unix/loop.c
189 src/unix/pipe.c
190 src/unix/poll.c
[all …]
/third_party/libwebsockets/lib/plat/unix/
DCMakeLists.txt45 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/
Dimpls_mio.rs5 #[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 …]
Draw.rs3 //! 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 …]
Dimpls_async_std.rs5 #[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 …]
Dimpls_std.rs3 #[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 …]
Dportability.rs3 //! 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 …]
Dimpls_tokio.rs5 #[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 …]
Dviews.rs12 #[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/
Daddr.rs4 #[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/
Ddetect.mk2 # 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 …]
Dunix.mk2 # 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/
Daddr.rs18 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/
Dlinux.yml14 # 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/
Dftplistparser.c28 * 1) Unix version 1
30 * 2) Unix version 2
32 * 3) Unix version 3
34 * 4) Unix symlink
162 } UNIX; member
422 switch(parser->state.UNIX.main) { in Curl_ftp_parselist()
424 switch(parser->state.UNIX.sub.total_dirsize) { in Curl_ftp_parselist()
427 parser->state.UNIX.sub.total_dirsize = PL_UNIX_TOTALSIZE_READING; in Curl_ftp_parselist()
431 parser->state.UNIX.main = PL_UNIX_FILETYPE; in Curl_ftp_parselist()
457 parser->state.UNIX.main = PL_UNIX_FILETYPE; in Curl_ftp_parselist()
[all …]
/third_party/libwebsockets/READMEs/
DREADME.unix-domain-reverse-proxy.md1 ## 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/
Dsocket_addr_any.rs3 //! 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/
Dchangelog.rs29 /// 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 …]

12345678910>>...115