/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
ProcessAttachingConnector.java | 41 * on a transport address then this connector reads the transport address 42 * and attempts to attach to it using the appropriate transport. 55 Transport transport; field in class:ProcessAttachingConnector 73 transport = new Transport() { 116 throw new IOException("Unable to determine transport endpoint"); 119 // parse into transport library name and address 136 throw new IOException("Transport " + lib + " not recognized") 153 public Transport transport() { method in class:ProcessAttachingConnector [all...] |
SunCommandLineLauncher.java | 48 Transport transport; field in class:SunCommandLineLauncher 55 public Transport transport() { method in class:SunCommandLineLauncher 56 return transport; 64 * transport or the socket transport 69 transport = new Transport() { 82 transport = new Transport() [all...] |
/external/syzkaller/vendor/golang.org/x/oauth2/ |
transport.go | 14 // Transport is an http.RoundTripper that makes OAuth 2.0 HTTP requests, 18 // Transport is a low-level mechanism. Most code will use the 20 type Transport struct { 36 func (t *Transport) RoundTrip(req *http.Request) (*http.Response, error) { 38 return nil, errors.New("oauth2: Transport's Source is nil") 61 func (t *Transport) CancelRequest(req *http.Request) { 74 func (t *Transport) base() http.RoundTripper { 81 func (t *Transport) setModReq(orig, mod *http.Request) {
|
/external/webrtc/webrtc/call/ |
transport_adapter.cc | 18 TransportAdapter::TransportAdapter(Transport* transport) 19 : transport_(transport), enabled_(0) { 20 RTC_DCHECK(nullptr != transport);
|
/external/webrtc/webrtc/voice_engine/ |
voe_network_impl.h | 22 int RegisterExternalTransport(int channel, Transport& transport) override;
|
/external/libbrillo/brillo/http/ |
http_utils.cc | 26 std::shared_ptr<Transport> transport, 29 request_type::kGet, url, headers, transport, error); 34 std::shared_ptr<Transport> transport, 40 transport, 46 std::shared_ptr<Transport> transport, 49 request_type::kHead, url, {}, transport, error); 53 std::shared_ptr<Transport> transport [all...] |
http_connection.h | 26 // It abstracts the implementation of underlying transport library (ex libcurl). 30 // Transport::CreateConnection() for more details). But most implementations 36 // the transport-specific instance of the communication channel with the 37 // destination server. It is created by Transport as part of initiating 46 explicit Connection(const std::shared_ptr<Transport>& transport) 47 : transport_(transport) {} 98 // the Transport-derived class for their own needs as well. 99 std::shared_ptr<Transport> transport_;
|
mock_transport.h | 18 class MockTransport : public Transport {
|
http_connection_curl.h | 28 const std::shared_ptr<http::Transport>& transport); 95 friend class http::curl::Transport;
|
/external/curl/docs/cmdline-opts/ |
cert.d | 10 PKCS#12 format if using Secure Transport, or PEM format if using any other 33 (iOS and macOS only) If curl is built against Secure Transport, then the
|
tlsv1.3.d | 9 of this writing, they are BoringSSL, NSS, and Secure Transport (on iOS 11 or
|
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/qps/ |
ServerConfiguration.java | 39 Transport transport = Transport.NETTY_NIO; field in class:ServerConfiguration 70 if (config.tls && !config.transport.tlsSupported) { 72 "TLS unsupported with the " + config.transport.name().toLowerCase() + " transport"); 75 // Verify that the address type is correct for the transport type. 76 config.transport.validateSocketAddress(config.address); 89 public enum Transport { 90 NETTY_NIO(true, "The Netty Java NIO transport. Using this with TLS requires [all...] |
ClientConfiguration.java | 24 import io.grpc.benchmarks.Transport; 44 Transport transport = Transport.NETTY_NIO; field in class:ClientConfiguration 69 return Utils.newClientChannel(transport, address, tls, testca, authorityOverride, 105 if (!config.transport.tlsSupported) { 107 "Transport " + config.transport.name().toLowerCase() + " does not support TLS."); 110 if (config.transport != Transport.OK_HTT [all...] |
/external/syzkaller/vendor/golang.org/x/net/http2/ |
go16.go | 14 func transportExpectContinueTimeout(t1 *http.Transport) time.Duration {
|
/external/webrtc/webrtc/ |
audio_receive_stream.h | 21 #include "webrtc/transport.h" 78 // https://tools.ietf.org/html/draft-holmer-rmcat-transport-wide-cc-extensions 86 Transport* receive_transport = nullptr; 87 Transport* rtcp_send_transport = nullptr;
|
video_receive_stream.h | 22 #include "webrtc/transport.h" 78 explicit Config(Transport* rtcp_send_transport) 108 // See draft-holmer-rmcat-transport-wide-cc-extensions for details. 140 // Transport for outgoing packets (RTCP). 141 Transport* rtcp_send_transport = nullptr;
|
video_send_stream.h | 21 #include "webrtc/transport.h" 79 explicit Config(Transport* send_transport) 108 // Max RTP packet size delivered to send transport from VideoEngine. 135 // Transport for outgoing packets. 136 Transport* send_transport = nullptr;
|
/external/python/cpython3/Lib/test/test_asyncio/ |
test_transports.py | 13 transport = asyncio.Transport() 14 self.assertEqual(transport._extra, {}) 17 transport = asyncio.Transport({'extra': 'info'}) 18 self.assertEqual('info', transport.get_extra_info('extra')) 19 self.assertIsNone(transport.get_extra_info('unknown')) 22 self.assertIs(default, transport.get_extra_info('unknown', default)) 25 transport = asyncio.Transport() [all...] |
/external/syzkaller/vendor/google.golang.org/api/transport/http/ |
dial.go | 15 // Package transport/http supports network connections to HTTP servers. 26 "google.golang.org/api/googleapi/transport" 48 Transport: &transport.APIKey{ 50 Transport: userAgentTransport{ 63 Transport: &oauth2.Transport{ 82 return nil, errors.New("transport: no Transport specified") 100 // baseTransport returns the base HTTP transport [all...] |
/external/webrtc/webrtc/modules/rtp_rtcp/test/testAPI/ |
test_api.h | 22 #include "webrtc/transport.h" 28 class LoopBackTransport : public Transport {
|
/external/webrtc/webrtc/p2p/base/ |
transport.h | 11 // A Transport manages a set of named channels of the same type. 18 // On Threading: Transport performs work solely on the worker thread, and so 66 // Transport is closed. 81 // Stats that we can return about the connections for a transport channel. 130 // Information about all the channels of a transport. 134 // Information about the stats of a transport. 159 class Transport : public sigslot::has_slots<> { 161 Transport(const std::string& name, PortAllocator* allocator); 162 virtual ~Transport(); 164 // Returns the name of this transport [all...] |
transportcontroller.cc | 155 Transport* transport = GetOrCreateTransport_w(transport_name); local 156 TransportChannelImpl* channel = transport->CreateChannel(component); 194 Transport* transport = GetTransport_w(transport_name); local 195 transport->DestroyChannel(component); 196 // Just as we create a Transport when its first channel is created, 198 if (!transport->HasChannels()) { 210 Transport* TransportController::CreateTransport_w( 214 Transport* transport = new DtlsTransport<P2PTransport> local 278 Transport* transport = GetTransport_w(transport_name); local 410 Transport* transport = GetTransport_w(transport_name); local 429 Transport* transport = GetTransport_w(transport_name); local 453 Transport* transport = GetTransport_w(transport_name); local 467 Transport* transport = GetTransport_w(transport_name); local 478 Transport* transport = GetTransport_w(transport_name); local [all...] |
faketransportcontroller.h | 18 #include "webrtc/p2p/base/transport.h" 41 // Fake transport channel class, which can be passed to anything that needs a 42 // transport channel. Can be informed of another FakeTransportChannel via 48 explicit FakeTransportChannel(Transport* transport, 52 transport_(transport), 70 Transport* GetTransport() override { return transport_; } 316 Transport* transport_; 343 // Fake transport class, which can be passed to anything that needs a Transport 524 FakeTransport* transport = static_cast<FakeTransport*>(kv.second); local 531 FakeTransport* transport = static_cast<FakeTransport*>(kv.second); local [all...] |
/external/webrtc/webrtc/test/ |
direct_transport.h | 22 #include "webrtc/transport.h" 32 class DirectTransport : public Transport { 52 static bool NetworkProcess(void* transport);
|
/external/webrtc/webrtc/video/ |
video_quality_test.h | 102 void SetupCommon(Transport* send_transport, Transport* recv_transport);
|