Home
last modified time | relevance | path

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

12345678910>>...116

/third_party/libuv/
DBUILD.gn31 "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 …]
DMakefile.am99 uvinclude_HEADERS += include/uv/unix.h
100 AM_CPPFLAGS += -I$(top_srcdir)/src/unix
101 libuv_la_SOURCES += src/unix/async.c \
102 src/unix/core.c \
103 src/unix/dl.c \
104 src/unix/fs.c \
105 src/unix/getaddrinfo.c \
106 src/unix/getnameinfo.c \
107 src/unix/internal.h \
108 src/unix/loop-watcher.c \
[all …]
DChangeLog13 * 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 …]
DCMakeLists.txt232 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/
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 …]
/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/grpc/examples/python/uds/
DREADME.md1 # Unix Domain Socket Example in gRPC Python
13 * `unix:path`: setting the unix domain socket path relatively or absolutely
14 * `unix://absolute_path`: setting the absolute path of the unix domain socket
26 INFO:root:Server listening on: unix:helloworld.sock
27 INFO:root:Server listening on: unix:///tmp/helloworld.sock
33 INFO:root:Server listening on: unix:helloworld.sock
34 INFO:root:Server listening on: unix:///tmp/helloworld.sock
42 INFO:root:Received: Hello to unix:helloworld.sock!
43 INFO:root:Received: Hello to unix:///tmp/helloworld.sock!
48 INFO:root:Received: Hello to unix:helloworld.sock!
[all …]
/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/rust/rust/library/std/src/sys/unix/
Denv.rs3 pub const FAMILY: &str = "unix";
14 pub const FAMILY: &str = "unix";
25 pub const FAMILY: &str = "unix";
36 pub const FAMILY: &str = "unix";
47 pub const FAMILY: &str = "unix";
58 pub const FAMILY: &str = "unix";
69 pub const FAMILY: &str = "unix";
80 pub const FAMILY: &str = "unix";
91 pub const FAMILY: &str = "unix";
102 pub const FAMILY: &str = "unix";
[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
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/rust/rust/src/tools/rustfmt/tests/source/
Dstruct_field_doc_comment.rs11 #[cfg(unix)] // some comment
13 #[cfg(not(unix))] /*block comment */
18 #[cfg(unix)]
21 #[cfg(not(unix))]
27 #[cfg(unix)] // some comment
29 #[cfg(not(unix))] /*block comment */
43 #[cfg(unix)] // some comment
45 #[cfg(not(unix))] /*block comment */
50 #[cfg(unix)] // some comment
52 #[cfg(not(unix))] /*block comment */
/third_party/rust/rust/src/tools/rustfmt/tests/target/
Dstruct_field_doc_comment.rs12 #[cfg(unix)] // some comment
14 #[cfg(not(unix))] /*block comment */ u32,
18 #[cfg(unix)]
21 #[cfg(not(unix))]
27 #[cfg(unix)] // some comment
29 #[cfg(not(unix))] /*block comment */ pub(crate) u32,
42 #[cfg(unix)] // some comment
44 #[cfg(not(unix))] /*block comment */ b: u32,
48 #[cfg(unix)] // some comment
50 #[cfg(not(unix))] /*block comment */ pub(crate) b: u32,
/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/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/rust/src/tools/clippy/tests/ui/
Dmismatched_target_os_unix.stderr9 = help: did you mean `unix`?
20 = help: did you mean `unix`?
30 = help: did you mean `unix`?
40 = help: did you mean `unix`?
50 = help: did you mean `unix`?
60 = help: did you mean `unix`?
70 = help: did you mean `unix`?
80 = help: did you mean `unix`?
90 = help: did you mean `unix`?
100 = help: did you mean `unix`?
[all …]
/third_party/rust/rust/src/librustdoc/clean/cfg/
Dtests.rs316 assert_eq!(word_cfg("unix").render_short_html(), "Unix"); in test_render_short_html()
322 (word_cfg("unix") & word_cfg("windows")).render_short_html(), in test_render_short_html()
323 "Unix and Windows" in test_render_short_html()
325 assert_eq!((word_cfg("unix") | word_cfg("windows")).render_short_html(), "Unix or Windows"); in test_render_short_html()
327 (word_cfg("unix") & word_cfg("windows") & word_cfg("debug_assertions")) in test_render_short_html()
329 "Unix and Windows and debug-assertions enabled" in test_render_short_html()
332 (word_cfg("unix") | word_cfg("windows") | word_cfg("debug_assertions")) in test_render_short_html()
334 "Unix or Windows or debug-assertions enabled" in test_render_short_html()
337 (!(word_cfg("unix") | word_cfg("windows") | word_cfg("debug_assertions"))) in test_render_short_html()
339 "Neither Unix nor Windows nor debug-assertions enabled" in test_render_short_html()
[all …]

12345678910>>...116