Home
last modified time | relevance | path

Searched defs:Connection (Results 1 – 25 of 170) sorted by relevance

1234567

/external/rust/crates/quiche/src/h3/
Dffi.rs87 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 …]
Dmod.rs829 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/
Dconnection.rs27 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/
DScheduleDFS.h92 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/
DScheduleDFS.h92 struct Connection { struct
96 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {} in Connection() argument
/external/rust/crates/quiche/src/
Dffi.rs462 ) -> *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/
Dconnectionmanager.rs58 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/
DScheduleDFS.h93 struct Connection { struct
97 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {} in Connection() argument
/external/python/bumble/bumble/
Dgatt_server.py308 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:
Dl2cap.py759 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/
Dconnection.rs19 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/
Dcollation.rs16 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()
Dtransaction.rs107 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
Dbackup.rs46 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()
Dlib.rs323 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 …]
Dlimits.rs48 impl Connection { implementation
/external/rust/crates/hyper/src/client/conn/
Dhttp2.rs40 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
Dhttp1.rs53 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/
Dmod.rs43 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/
Dpandora.py30 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/
Dhttp2.rs41 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/
Dmod.rs16 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/
Dconnection.rs59 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/
Dmod.rs10 pub trait Connection { trait
/external/rust/crates/tower/src/make/
Dmake_connection.rs14 type Connection: AsyncRead + AsyncWrite; typedef
36 type Connection = C::Response; typedef

1234567