/external/rust/crates/quiche/src/h3/ |
D | ffi.rs | 78 quic_conn: &mut Connection, config: &mut h3::Config, in quiche_h3_conn_new_with_transport() 79 ) -> *mut h3::Connection { in quiche_h3_conn_new_with_transport() 89 conn: &mut h3::Connection, quic_conn: &mut Connection, in quiche_h3_conn_poll() 181 conn: &mut h3::Connection, quic_conn: &mut Connection, in quiche_h3_send_request() 195 conn: &mut h3::Connection, quic_conn: &mut Connection, stream_id: u64, in quiche_h3_send_response() 209 conn: &mut h3::Connection, quic_conn: &mut Connection, stream_id: u64, in quiche_h3_send_response_with_priority() 231 conn: &mut h3::Connection, quic_conn: &mut Connection, stream_id: u64, in quiche_h3_send_body() 249 conn: &mut h3::Connection, quic_conn: &mut Connection, stream_id: u64, in quiche_h3_recv_body() 267 conn: &h3::Connection, quic_conn: &Connection, in quiche_h3_dgram_enabled_by_peer() 274 conn: &mut h3::Connection, quic_conn: &mut Connection, flow_id: u64, in quiche_h3_send_dgram() [all …]
|
D | mod.rs | 607 pub struct Connection { struct 615 local_settings: ConnectionSettings, argument 616 peer_settings: ConnectionSettings, argument 640 impl Connection { argument 644 ) -> Result<Connection> { in new() 712 conn: &mut super::Connection, config: &Config, in with_transport() 713 ) -> Result<Connection> { in with_transport() 757 &mut self, conn: &mut super::Connection, headers: &[T], fin: bool, in send_request() 806 &mut self, conn: &mut super::Connection, stream_id: u64, headers: &[T], in send_response() 828 &mut self, conn: &mut super::Connection, stream_id: u64, headers: &[T], in send_response_with_priority() [all …]
|
/external/rust/crates/quiche/src/ |
D | ffi.rs | 383 ) -> *mut Connection { in quiche_accept() 408 ) -> *mut Connection { in quiche_connect() 482 ) -> *mut Connection { in quiche_conn_new_with_tls() 514 conn: &mut Connection, path: *const c_char, in quiche_conn_set_keylog_path() 536 pub extern fn quiche_conn_set_keylog_fd(conn: &mut Connection, fd: c_int) { in quiche_conn_set_keylog_fd() 546 conn: &mut Connection, path: *const c_char, log_title: *const c_char, in quiche_conn_set_qlog_path() 577 conn: &mut Connection, fd: c_int, log_title: *const c_char, in quiche_conn_set_qlog_fd() 595 conn: &mut Connection, buf: *const u8, buf_len: size_t, in quiche_conn_set_session() 622 conn: &mut Connection, buf: *mut u8, buf_len: size_t, info: &RecvInfo, in quiche_conn_recv() 647 conn: &mut Connection, out: *mut u8, out_len: size_t, out_info: &mut SendInfo, in quiche_conn_send() [all …]
|
D | lib.rs | 927 pub struct Connection { struct 932 dcid: ConnectionId<'static>, argument 935 scid: ConnectionId<'static>, argument 951 /// Due to the requirement for `Connection` to be Send+Sync, and the fact argument 954 handshake: Mutex<tls::Handshake>, 960 session: Option<Vec<u8>>, 963 recovery: recovery::Recovery, 965 peer_addr: SocketAddr, 968 application_protos: Vec<Vec<u8>>, 971 recv_count: usize, [all …]
|
/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() argument
|
/external/llvm/include/llvm/CodeGen/ |
D | ScheduleDFS.h | 93 struct Connection { struct 97 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {} in Connection() function
|
/external/rust/crates/rusqlite/src/ |
D | transaction.rs | 106 pub fn new(conn: &mut Connection, behavior: TransactionBehavior) -> Result<Transaction<'_>> { in new() 117 conn: &Connection, in new_unchecked() 236 fn deref(&self) -> &Connection { in deref() 252 conn: &Connection, in with_depth_and_name() 268 fn with_depth(conn: &Connection, depth: u32) -> Result<Savepoint<'_>> { in with_depth() 281 pub fn with_name<T: Into<String>>(conn: &mut Connection, name: T) -> Result<Savepoint<'_>> { in with_name() 365 fn deref(&self) -> &Connection { in deref() 378 impl Connection { impl
|
D | collation.rs | 16 impl Connection { implementation 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 | 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 | 334 pub struct Connection { struct 335 db: RefCell<InnerConnection>, argument 340 unsafe impl Send for Connection {} implementation 342 impl Drop for Connection { implementation 349 impl Connection { impl 372 pub fn open<P: AsRef<Path>>(path: P) -> Result<Connection> { in open() 398 pub fn open_with_flags<P: AsRef<Path>>(path: P, flags: OpenFlags) -> Result<Connection> { in open_with_flags() 422 ) -> Result<Connection> { in open_with_flags_and_vfs() 441 pub fn open_in_memory_with_flags(flags: OpenFlags) -> Result<Connection> { in open_in_memory_with_flags() 456 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 { impl
|
D | config.rs | 66 impl Connection { impl
|
D | busy.rs | 12 impl Connection { impl
|
D | cache.rs | 10 impl Connection { implementation 140 conn: &'conn Connection, in get()
|
/external/rust/crates/gdbstub/src/connection/ |
D | mod.rs | 8 pub trait Connection { interface
|
/external/rust/crates/gdbstub/src/connection/impls/ |
D | mod.rs | 15 impl<E> Connection for &mut dyn Connection<Error = E> { implementation
|
/external/libbrillo/brillo/http/ |
D | http_connection.h | 46 explicit Connection(const std::shared_ptr<Transport>& transport) in Connection() function
|
D | http_transport_curl.h | 23 class Connection; variable
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | Connection.java | 66 public interface Connection { interface
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
D | Connection.java | 68 public interface Connection { interface
|
/external/oj-libjdwp/src/share/classes/com/sun/jdi/connect/spi/ |
D | Connection.java | 60 public abstract class Connection { class
|
/external/python/rsa/rsa/ |
D | parallel.py | 32 def _find_prime(nbits: int, pipe: Connection) -> None:
|
/external/clang/test/CodeGen/ |
D | 2002-03-12-StructInitializer.c | 12 } Connection; typedef
|
D | 2002-03-12-StructInitialize.c | 8 } Connection; typedef
|
/external/rust/crates/criterion/src/ |
D | connection.rs | 130 pub struct Connection { struct 131 inner: RefCell<InnerConnection>, argument 133 impl Connection { implementation
|