Home
last modified time | relevance | path

Searched refs:Protocol (Results 1 - 25 of 79) sorted by relevance

1234

/third_party/python/Lib/wsgiref/
H A Dtypes.py5 from typing import Any, Protocol, TypeAlias namespace
19 class StartResponse(Protocol):
33 class InputStream(Protocol):
40 class ErrorStream(Protocol):
46 class _Readable(Protocol):
50 class FileWrapper(Protocol):
/third_party/rust/crates/rustix/tests/net/
H A Dconnect_bind_send.rs2 AddressFamily, Ipv6Addr, Protocol, RecvFlags, SendFlags, SocketAddrAny, SocketAddrV4,
13 rustix::net::socket(AddressFamily::INET, SocketType::STREAM, Protocol::default())?; in net_v4_connect_any()
18 let sender = rustix::net::socket(AddressFamily::INET, SocketType::STREAM, Protocol::default())?; in net_v4_connect_any()
47 Protocol::default(), in net_v6_connect_any()
56 Protocol::default(), in net_v6_connect_any()
84 rustix::net::socket(AddressFamily::INET, SocketType::STREAM, Protocol::default())?; in net_v4_connect()
93 let sender = rustix::net::socket(AddressFamily::INET, SocketType::STREAM, Protocol::default())?; in net_v4_connect()
122 Protocol::default(), in net_v6_connect()
135 Protocol::default(), in net_v6_connect()
163 rustix::net::socket(AddressFamily::INET, SocketType::STREAM, Protocol in net_v4_bind_any()
[all...]
H A Dunix.rs19 accept, bind_unix, connect_unix, listen, socket, AddressFamily, Protocol, SocketAddrUnix,
34 Protocol::default(), in server()
88 Protocol::default(), in client()
108 Protocol::default(), in client()
H A Dv6.rs9 Protocol, RecvFlags, SendFlags, SocketAddrAny, SocketAddrV6, SocketType,
20 Protocol::default(), in server()
65 Protocol::default(), in client()
H A Dv4.rs9 Protocol, RecvFlags, SendFlags, SocketAddrAny, SocketAddrV4, SocketType,
18 socket(AddressFamily::INET, SocketType::STREAM, Protocol::default()).unwrap(); in server()
58 let data_socket = socket(AddressFamily::INET, SocketType::STREAM, Protocol::default()).unwrap(); in client()
H A Dpoll.rs8 Protocol, RecvFlags, SendFlags, SocketAddrAny, SocketAddrV6, SocketType,
19 Protocol::default(), in server()
77 Protocol::default(), in client()
/third_party/mbedtls/scripts/mbedtls_dev/
H A Dtyping_util.py29 from typing_extensions import Protocol #pylint: disable=import-error namespace
31 class Protocol: #type: ignore class
35 class Writable(Protocol):
/third_party/python/Lib/importlib/metadata/
H A D_meta.py1 from typing import Any, Dict, Iterator, List, Protocol, TypeVar, Union namespace
7 class PackageMetadata(Protocol):
32 class SimplePath(Protocol):
/third_party/rust/crates/rustix/src/net/
H A Dsocketpair.rs2 use crate::net::{AddressFamily, Protocol, SocketFlags, SocketType};
18 protocol: Protocol, in socketpair()
H A Dsocket.rs9 AcceptFlags, AddressFamily, Protocol, Shutdown, SocketFlags, SocketType,
12 impl Default for Protocol {
38 pub fn socket(domain: AddressFamily, type_: SocketType, protocol: Protocol) -> io::Result<OwnedFd> { in socket()
67 protocol: Protocol, in socket_with()
/third_party/protobuf/objectivec/
H A DGPBAny.pbobjc.h21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
24 #error This file was generated by an older version of protoc which is incompatible with your Protocol Buffer library sources.
H A DGPBSourceContext.pbobjc.h21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
24 #error This file was generated by an older version of protoc which is incompatible with your Protocol Buffer library sources.
H A DGPBFieldMask.pbobjc.h21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
24 #error This file was generated by an older version of protoc which is incompatible with your Protocol Buffer library sources.
H A DGPBTimestamp.pbobjc.h21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
24 #error This file was generated by an older version of protoc which is incompatible with your Protocol Buffer library sources.
H A DGPBDuration.pbobjc.h21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
24 #error This file was generated by an older version of protoc which is incompatible with your Protocol Buffer library sources.
H A DGPBEmpty.pbobjc.h21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
24 #error This file was generated by an older version of protoc which is incompatible with your Protocol Buffer library sources.
H A DGPBStruct.pbobjc.h21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
24 #error This file was generated by an older version of protoc which is incompatible with your Protocol Buffer library sources.
H A DGPBWrappers.pbobjc.h21 #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
24 #error This file was generated by an older version of protoc which is incompatible with your Protocol Buffer library sources.
/third_party/rust/crates/rustix/tests/io/
H A Depoll.rs7 accept, bind_v4, connect_v4, getsockname, listen, socket, AddressFamily, Ipv4Addr, Protocol,
17 let listen_sock = socket(AddressFamily::INET, SocketType::STREAM, Protocol::default()).unwrap(); in server()
77 socket(AddressFamily::INET, SocketType::STREAM, Protocol::default()).unwrap(); in client()
/third_party/python/Lib/test/
H A Dtest_typing.py22 from typing import Generic, ClassVar, Final, final, Protocol namespace
500 Generic, Generic[T], Protocol, Protocol[T],
2354 class Coordinate(Protocol):
2359 class Point(Coordinate, Protocol):
2367 class XAxis(Protocol):
2370 class YAxis(Protocol):
2374 class Position(XAxis, YAxis, Protocol):
2378 class Proto(Protocol):
2398 class HasCallProtocol(Protocol)
[all...]
/third_party/mesa3d/bin/
H A Dgen_calendar_entries.py37 from typing_extensions import Protocol namespace
39 class RCArguments(Protocol):
44 class FinalArguments(Protocol):
51 class ExtendArguments(Protocol):
/third_party/python/Lib/test/test_asyncio/
H A Dtest_sslproto.py37 proto = asyncio.Protocol()
138 new_app_proto = asyncio.Protocol()
244 class ClientProto(asyncio.Protocol):
307 class ClientProto(asyncio.Protocol):
395 class ClientProtoSecond(asyncio.Protocol):
465 class ClientProto(asyncio.Protocol):
526 class ServerProto(asyncio.Protocol):
627 asyncio.Protocol,
H A Dtest_windows_events.py25 class UpperProto(asyncio.Protocol):
91 trans = self.loop._make_socket_transport(a, asyncio.Protocol())
114 asyncio.Protocol, ADDRESS)
143 asyncio.Protocol, ADDRESS)
275 [server] = await self.loop.start_serving_pipe(asyncio.Protocol, ADDRESS)
H A Dtest_ssl.py32 class MyBaseProto(asyncio.Protocol):
480 asyncio.Protocol,
517 class ClientProto(asyncio.Protocol):
699 class ClientProto(asyncio.Protocol):
758 class ClientProto(asyncio.Protocol):
849 class ClientProtoSecond(asyncio.Protocol):
919 class ClientProto(asyncio.Protocol):
978 class ServerProto(asyncio.Protocol):
1439 self.loop.create_connection(asyncio.Protocol,
1468 self.loop.create_connection(asyncio.Protocol, *add
1496 class Protocol(asyncio.Protocol): global() class
1544 class Protocol(asyncio.Protocol): global() class
[all...]
/third_party/python/Lib/importlib/resources/
H A Dabc.py5 from typing import runtime_checkable, Protocol namespace
57 class Traversable(Protocol):

Completed in 17 milliseconds

1234