/external/libbrillo/brillo/http/ |
http_transport.cc | 15 std::shared_ptr<Transport> Transport::CreateDefault() { 16 return std::make_shared<http::curl::Transport>(std::make_shared<CurlApi>()); 19 std::shared_ptr<Transport> Transport::CreateDefaultWithProxy( 24 return std::make_shared<http::curl::Transport>(std::make_shared<CurlApi>(),
|
http_transport.h | 39 // Transport is a base class for specific implementation of HTTP communication. 43 class BRILLO_EXPORT Transport : public std::enable_shared_from_this<Transport> { 45 Transport() = default; 46 virtual ~Transport() = default; 49 // |transport| is a shared pointer to this transport object instance, 52 // to the underlying transport (e.g. CURL) to establish the connection. 62 // transport. For transports that do not contain references to real message 63 // loops (e.g. a fake transport), calls the callback immediately [all...] |
http_utils.h | 39 // transport, error); 47 // transport, error); 63 std::shared_ptr<Transport> transport, 72 std::shared_ptr<Transport> transport, 79 // request using Transport::CancelRequest(). 86 std::shared_ptr<Transport> transport, 94 // request using Transport::CancelRequest() [all...] |
http_transport_curl.h | 24 // An implementation of http::Transport that uses libcurl for 25 // HTTP communications. This class (as http::Transport base) 30 class BRILLO_EXPORT Transport : public http::Transport { 32 // Constructs the transport using the current message loop for async 34 explicit Transport(const std::shared_ptr<CurlInterface>& curl_interface); 35 // Creates a transport object using a proxy. 38 Transport(const std::shared_ptr<CurlInterface>& curl_interface, 40 ~Transport() override; 42 // Overrides from http::Transport [all...] |
http_transport_curl.cc | 34 class Transport::SocketPollData : public base::MessagePumpForIO::FdWatcher { 38 Transport* transport, 42 transport_(transport), 76 // CURL multi-handle associated with the transport. 78 // Transport object itself. 79 Transport* transport_; 90 struct Transport::AsyncRequestData { 101 Transport::Transport(const std::shared_ptr<CurlInterface>& curl_interface 338 auto transport = static_cast<Transport*>(userp); local 405 auto transport = static_cast<Transport*>(userp); local [all...] |
http_transport_fake.cc | 22 using http::fake::Transport; 27 Transport::Transport() { 28 VLOG(1) << "fake::Transport created"; 31 Transport::~Transport() { 32 VLOG(1) << "fake::Transport destroyed"; 35 std::shared_ptr<http::Connection> Transport::CreateConnection( 66 void Transport::RunCallbackAsync( 76 bool Transport::HandleOneAsyncRequest() [all...] |
http_utils_unittest.cc | 43 std::shared_ptr<fake::Transport> transport(new fake::Transport); 44 transport->AddHandler( 56 transport, 65 std::shared_ptr<fake::Transport> transport(new fake::Transport); 66 transport->AddHandler( 88 transport, [all...] |
/external/webrtc/webrtc/call/ |
transport_adapter.h | 15 #include "webrtc/transport.h" 20 class TransportAdapter : public Transport { 22 explicit TransportAdapter(Transport* transport); 33 Transport *transport_;
|
/external/webrtc/webrtc/ |
transport.h | 28 class Transport { 36 virtual ~Transport() {}
|
audio_send_stream.h | 21 #include "webrtc/transport.h" 55 explicit Config(Transport* send_transport) 74 // Transport for outgoing packets. The transport is expected to exist for 76 Transport* send_transport = nullptr;
|
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/ |
Transport.java | 24 public enum Transport { 25 NETTY_NIO(true, "The Netty Java NIO transport. Using this with TLS requires " 28 NETTY_EPOLL(true, "The Netty native EPOLL transport. Using this with TLS requires that " 32 NETTY_UNIX_DOMAIN_SOCKET(false, "The Netty Unix Domain Socket transport. This currently " 34 OK_HTTP(true, "The OkHttp transport.", SocketAddressValidator.INET); 40 Transport(boolean tlsSupported, String description, 48 * Validates the given address for this transport. 50 * @throws IllegalArgumentException if the given address is invalid for this transport. 55 "Invalid address " + address + " for transport " + this); 60 * Describe the {@link Transport} [all...] |
/external/oj-libjdwp/src/share/classes/com/sun/jdi/connect/ |
Transport.java | 33 * <p> A Transport represents the transport mechanism used by a 36 * by invoking the {@link #name} method. Furthermore, a Transport 46 public interface Transport { 48 * Returns a short identifier for the transport. 50 * @return the name of this transport.
|
/external/webrtc/webrtc/test/ |
mock_transport.h | 15 #include "webrtc/transport.h" 19 class MockTransport : public Transport {
|
null_transport.h | 13 #include "webrtc/transport.h" 20 class NullTransport : public Transport {
|
/external/syzkaller/vendor/golang.org/x/net/http2/ |
not_go16.go | 14 func configureTransport(t1 *http.Transport) (*Transport, error) { 18 func transportExpectContinueTimeout(t1 *http.Transport) time.Duration {
|
configure_transport.go | 15 func configureTransport(t1 *http.Transport) (*Transport, error) { 17 t2 := &Transport{ 58 // registerHTTPSProtocol calls Transport.RegisterProtocol but 60 func registerHTTPSProtocol(t *http.Transport, rt http.RoundTripper) (err error) { 72 type noDialH2RoundTripper struct{ t *Transport }
|
/external/webrtc/webrtc/p2p/base/ |
transport.cc | 13 #include "webrtc/p2p/base/transport.h" 66 Transport::Transport(const std::string& name, PortAllocator* allocator) 69 Transport::~Transport() { 73 void Transport::SetIceRole(IceRole role) { 80 bool Transport::GetRemoteSSLCertificate(rtc::SSLCertificate** cert) { 89 void Transport::SetIceConfig(const IceConfig& config) { 96 bool Transport::SetLocalTransportDescription( 126 // If PRANSWER/ANSWER is set, we should decide transport protocol type [all...] |
p2ptransport.cc | 24 : Transport(name, allocator) {}
|
p2ptransport.h | 15 #include "webrtc/p2p/base/transport.h" 20 class P2PTransport : public Transport {
|
/external/syzkaller/vendor/google.golang.org/api/googleapi/transport/ |
apikey.go | 5 // Package transport contains HTTP transports used to make 7 package transport package 14 // APIKey is an HTTP Transport which wraps an underlying transport and 20 // Transport is the underlying HTTP transport. 22 Transport http.RoundTripper 26 rt := t.Transport 30 return nil, errors.New("googleapi/transport: no Transport specified or available" [all...] |
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/ |
Transport.java | 24 package org.ksoap2.transport; 41 * transport layers. This class encapsulates the serialization and 45 abstract public class Transport { 76 public Transport() { 79 public Transport(String url) { 83 public Transport(String url, int timeout) { 88 public Transport(String url, int timeout, int bufferLength) { 95 * Construct the transport object 105 public Transport(Proxy proxy, String url) { 110 public Transport(Proxy proxy, String url, int timeout) [all...] |
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
RawCommandLineLauncher.java | 42 Transport transport; field in class:RawCommandLineLauncher 48 public Transport transport() { method in class:RawCommandLineLauncher 49 return transport; 58 transport = new Transport() { 71 transport = new Transport() {
|
GenericAttachingConnector.java | 51 Transport transport; field in class:GenericAttachingConnector 55 * encapsulates a transport service and optionally has an 62 transport = new Transport() { 64 // delegate name to the transport service 134 return transport.name() + "Attach"; 141 public Transport transport() { method in class:GenericAttachingConnector 142 return transport; [all...] |
/external/webrtc/webrtc/voice_engine/include/ |
voe_network.h | 38 #include "webrtc/transport.h" 58 // Installs and enables a user-defined external transport protocol for a 60 virtual int RegisterExternalTransport(int channel, Transport& transport) = 0; 62 // Removes and disables a user-defined external transport protocol for a 67 // function when external transport is enabled. Note that the data 81 // function when external transport is enabled. Note that the data
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/ |
UsbMassImpl.c | 19 // Array of USB transport interfaces.
69 Status = UsbMass->Transport->Reset (UsbMass->Context, ExtendedVerification);
368 Initilize the USB Mass Storage transport.
370 This function tries to find the matching USB Mass Storage transport
371 protocol for USB device. If found, initializes the matching transport.
375 @param Transport The pointer to pointer to USB_MASS_TRANSPORT.
380 @retval EFI_UNSUPPORTED No matching transport protocol is found.
388 OUT USB_MASS_TRANSPORT **Transport,
420 // matching transport protocol.
422 // If found, execute USB_MASS_TRANSPORT.Init() to initialize the transport context. [all...] |