/third_party/python/Lib/wsgiref/ |
H A D | types.py | 5 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 D | connect_bind_send.rs | 2 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 D | unix.rs | 19 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 D | v6.rs | 9 Protocol, RecvFlags, SendFlags, SocketAddrAny, SocketAddrV6, SocketType, 20 Protocol::default(), in server() 65 Protocol::default(), in client()
|
H A D | v4.rs | 9 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 D | poll.rs | 8 Protocol, RecvFlags, SendFlags, SocketAddrAny, SocketAddrV6, SocketType, 19 Protocol::default(), in server() 77 Protocol::default(), in client()
|
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | typing_util.py | 29 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.py | 1 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 D | socketpair.rs | 2 use crate::net::{AddressFamily, Protocol, SocketFlags, SocketType}; 18 protocol: Protocol, in socketpair()
|
H A D | socket.rs | 9 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 D | GPBAny.pbobjc.h | 21 #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 D | GPBSourceContext.pbobjc.h | 21 #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 D | GPBFieldMask.pbobjc.h | 21 #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 D | GPBTimestamp.pbobjc.h | 21 #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 D | GPBDuration.pbobjc.h | 21 #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 D | GPBEmpty.pbobjc.h | 21 #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 D | GPBStruct.pbobjc.h | 21 #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 D | GPBWrappers.pbobjc.h | 21 #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 D | epoll.rs | 7 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 D | test_typing.py | 22 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 D | gen_calendar_entries.py | 37 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 D | test_sslproto.py | 37 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 D | test_windows_events.py | 25 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 D | test_ssl.py | 32 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 D | abc.py | 5 from typing import runtime_checkable, Protocol namespace 57 class Traversable(Protocol):
|