| /external/rust/crates/quiche/src/h3/ |
| D | ffi.rs | 87 quic_conn: &mut Connection, config: &mut h3::Config, in quiche_h3_conn_new_with_transport() 88 ) -> *mut h3::Connection { in quiche_h3_conn_new_with_transport() 98 conn: &h3::Connection, in quiche_h3_for_each_setting() 121 conn: &mut h3::Connection, quic_conn: &mut Connection, in quiche_h3_conn_poll() 203 conn: &h3::Connection, in quiche_h3_extended_connect_enabled_by_peer() 224 conn: &mut h3::Connection, quic_conn: &mut Connection, in quiche_h3_send_request() 238 conn: &mut h3::Connection, quic_conn: &mut Connection, stream_id: u64, in quiche_h3_send_response() 252 conn: &mut h3::Connection, quic_conn: &mut Connection, stream_id: u64, in quiche_h3_send_response_with_priority() 272 conn: &mut h3::Connection, quic_conn: &mut Connection, stream_id: u64, in quiche_h3_send_body() 290 conn: &mut h3::Connection, quic_conn: &mut Connection, stream_id: u64, in quiche_h3_recv_body() [all …]
|
| D | mod.rs | 829 pub struct Connection { struct 837 local_settings: ConnectionSettings, argument 838 peer_settings: ConnectionSettings, argument 861 impl Connection { argument 864 ) -> Result<Connection> { in new() 941 conn: &mut super::Connection, config: &Config, in with_transport() 942 ) -> Result<Connection> { in with_transport() 992 &mut self, conn: &mut super::Connection, headers: &[T], fin: bool, in send_request() 1045 &mut self, conn: &mut super::Connection, stream_id: u64, headers: &[T], in send_response() 1072 &mut self, conn: &mut super::Connection, stream_id: u64, headers: &[T], in send_response_with_priority() [all …]
|
| /external/rust/crates/tonic/src/transport/service/ |
| D | connection.rs | 27 pub(crate) struct Connection { struct 31 impl Connection { implementation 102 impl Service<Request> for Connection { implementation 116 impl Load for Connection { implementation 124 impl fmt::Debug for Connection { implementation
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
| D | ScheduleDFS.h | 92 struct Connection { struct 96 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {} in Connection() function
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/ |
| D | ScheduleDFS.h | 92 struct Connection { struct 96 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {} in Connection() argument
|
| /external/rust/crates/quiche/src/ |
| D | ffi.rs | 462 ) -> *mut Connection { in quiche_accept() 489 ) -> *mut Connection { in quiche_connect() 564 ) -> *mut Connection { in quiche_conn_new_with_tls() 598 conn: &mut Connection, path: *const c_char, in quiche_conn_set_keylog_path() 620 pub extern fn quiche_conn_set_keylog_fd(conn: &mut Connection, fd: c_int) { in quiche_conn_set_keylog_fd() 630 conn: &mut Connection, path: *const c_char, log_title: *const c_char, in quiche_conn_set_qlog_path() 661 conn: &mut Connection, fd: c_int, log_title: *const c_char, in quiche_conn_set_qlog_fd() 679 conn: &mut Connection, buf: *const u8, buf_len: size_t, in quiche_conn_set_session() 709 conn: &mut Connection, buf: *mut u8, buf_len: size_t, info: &RecvInfo, in quiche_conn_recv() 736 conn: &mut Connection, out: *mut u8, out_len: size_t, out_info: &mut SendInfo, in quiche_conn_send() [all …]
|
| /external/rust/crates/virtio-drivers/src/device/socket/ |
| D | connectionmanager.rs | 58 struct Connection { struct 59 info: ConnectionInfo, argument 66 impl Connection { impl 309 connections: &mut [Connection], in get_connection() 312 ) -> core::result::Result<(usize, &mut Connection), SocketError> { in get_connection() 324 connections: &'a mut [Connection], in get_connection_for_event() 327 ) -> Option<(usize, &'a mut Connection)> { in get_connection_for_event()
|
| /external/llvm/include/llvm/CodeGen/ |
| D | ScheduleDFS.h | 93 struct Connection { struct 97 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {} in Connection() argument
|
| /external/python/bumble/bumble/ |
| D | gatt_server.py | 308 self, connection: Optional[Connection], characteristic: Characteristic 322 connection: Connection, 352 def send_response(self, connection: Connection, response: ATT_PDU) -> None: 360 connection: Connection, 403 connection: Connection, 505 def on_disconnection(self, connection: Connection) -> None: 513 def on_gatt_pdu(self, connection: Connection, att_pdu: ATT_PDU) -> None: 555 def on_att_request(self, connection: Connection, pdu: ATT_PDU) -> None:
|
| D | l2cap.py | 759 connection: Connection, 1066 connection: Connection, 1534 def next_identifier(self, connection: Connection) -> int: 1665 def on_pdu(self, connection: Connection, cid: int, pdu: bytes) -> None: 1687 self, connection: Connection, cid: int, control_frame: L2CAP_Control_Frame 1697 self, connection: Connection, cid: int, control_frame: L2CAP_Control_Frame 1736 self, _connection: Connection, _cid: int, packet 1741 self, connection: Connection, cid: int, request 1795 self, connection: Connection, cid: int, response 1812 self, connection: Connection, cid: int, request [all …]
|
| /external/rust/crates/h2/src/proto/ |
| D | connection.rs | 19 pub(crate) struct Connection<T, P, B: Buf = Bytes> struct 26 inner: ConnectionInner<P, B>, argument 29 // Extracted part of `Connection` which does not depend on `T`. Reduces the amount of duplicated argument 100 impl<T, P, B> Connection<T, P, B> impl 556 impl<T, B> Connection<T, client::Peer, B> implementation 566 impl<T, B> Connection<T, server::Peer, B> implementation 601 impl<T, P, B> Drop for Connection<T, P, B> implementation
|
| /external/rust/crates/rusqlite/src/ |
| D | collation.rs | 16 impl Connection { impl 32 x_coll_needed: fn(&Connection, &str) -> Result<()>, in collation_needed() 110 x_coll_needed: fn(&Connection, &str) -> Result<()>, in collation_needed() 201 fn collation_needed(db: &Connection, collation_name: &str) -> Result<()> { in collation_needed()
|
| D | transaction.rs | 107 pub fn new(conn: &mut Connection, behavior: TransactionBehavior) -> Result<Transaction<'_>> { in new() 118 conn: &Connection, in new_unchecked() 237 fn deref(&self) -> &Connection { in deref() 253 conn: &Connection, in with_depth_and_name() 269 fn with_depth(conn: &Connection, depth: u32) -> Result<Savepoint<'_>> { in with_depth() 282 pub fn with_name<T: Into<String>>(conn: &mut Connection, name: T) -> Result<Savepoint<'_>> { in with_name() 366 fn deref(&self) -> &Connection { in deref() 393 impl Connection { impl
|
| D | backup.rs | 46 impl Connection { implementation 187 pub fn new<'a, 'b>(from: &'a Connection, to: &'b mut Connection) -> Result<Backup<'a, 'b>> { in new() 201 from: &'a Connection, in new_with_names() 203 to: &'b mut Connection, in new_with_names()
|
| D | lib.rs | 323 pub struct Connection { struct 324 db: RefCell<InnerConnection>, argument 328 unsafe impl Send for Connection {} argument 330 impl Drop for Connection { implementation 337 impl Connection { implementation 391 pub fn open<P: AsRef<Path>>(path: P) -> Result<Connection> { in open() 417 pub fn open_with_flags<P: AsRef<Path>>(path: P, flags: OpenFlags) -> Result<Connection> { in open_with_flags() 440 ) -> Result<Connection> { in open_with_flags_and_vfs() 458 pub fn open_in_memory_with_flags(flags: OpenFlags) -> Result<Connection> { in open_in_memory_with_flags() 473 pub fn open_in_memory_with_flags_and_vfs(flags: OpenFlags, vfs: &str) -> Result<Connection> { in open_in_memory_with_flags_and_vfs() [all …]
|
| D | limits.rs | 48 impl Connection { implementation
|
| /external/rust/crates/hyper/src/client/conn/ |
| D | http2.rs | 40 pub struct Connection<T, B> struct 61 pub async fn handshake<E, T, B>(exec: E, io: T) -> crate::Result<(SendRequest<B>, Connection<T, B>)> in handshake() argument 193 impl<T, B> Connection<T, B> impl 214 impl<T, B> fmt::Debug for Connection<T, B> implementation 224 impl<T, B> Future for Connection<T, B> implementation
|
| D | http1.rs | 53 pub struct Connection<T, B> struct 61 impl<T, B> Connection<T, B> impl 255 impl<T, B> fmt::Debug for Connection<T, B> implementation 265 impl<T, B> Future for Connection<T, B> implementation
|
| /external/rust/crates/gdbstub/src/stub/ |
| D | mod.rs | 43 type Connection: ConnectionExt; typedef 62 conn: &mut Self::Connection, in wait_for_stop_reason() 105 Connection(C), enumerator 163 E: run_blocking::BlockingEventLoop<Target = T, Connection = C>, in run_blocking() argument
|
| /external/pandora/avatar/avatar/ |
| D | pandora.py | 30 def get_raw_connection_handle(device: PandoraDevice, connection: Connection) -> int: 35 def get_raw_connection(device: PandoraDevice, connection: Connection) -> Optional[BumbleConnection]:
|
| /external/rust/crates/hyper/src/server/conn/ |
| D | http2.rs | 41 impl<I, S, E> fmt::Debug for Connection<I, S, E> implementation 50 impl<I, B, S, E> Connection<I, S, E> impl 74 impl<I, B, S, E> Future for Connection<I, S, E> implementation
|
| /external/rust/crates/gdbstub/src/conn/impls/ |
| D | mod.rs | 16 impl<E> Connection for &mut dyn Connection<Error = E> { implementation 36 impl<E> Connection for &mut dyn ConnectionExt<Error = E> { impl
|
| /external/crosvm/third_party/vmm_vhost/src/ |
| D | connection.rs | 59 pub struct Connection<R: Req>( struct 67 impl<R: Req> From<SystemStream> for Connection<R> { implementation 77 impl<R: Req> Connection<R> { implementation 236 impl<R: Req> AsRawDescriptor for Connection<R> { implementation
|
| /external/rust/crates/gdbstub/src/conn/ |
| D | mod.rs | 10 pub trait Connection { trait
|
| /external/rust/crates/tower/src/make/ |
| D | make_connection.rs | 14 type Connection: AsyncRead + AsyncWrite; typedef 36 type Connection = C::Response; typedef
|