HomeSort by relevance Sort by last modified time
    Searched refs:Transport (Results 26 - 50 of 155) sorted by null

12 3 4 5 6 7

  /external/libbrillo/brillo/http/
http_transport_curl.cc 34 class Transport::SocketPollData : public base::MessageLoopForIO::Watcher {
38 Transport* transport,
42 transport_(transport),
75 // CURL multi-handle associated with the transport.
77 // Transport object itself.
78 Transport* transport_;
89 struct Transport::AsyncRequestData {
100 Transport::Transport(const std::shared_ptr<CurlInterface>& curl_interface
328 auto transport = static_cast<Transport*>(userp); local
394 auto transport = static_cast<Transport*>(userp); local
    [all...]
mock_transport.h 18 class MockTransport : public Transport {
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...]
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_;
http_connection_fake.cc 20 const std::shared_ptr<http::Transport>& transport)
21 : http::Connection(transport), request_(url, method) {
45 fake::Transport* transport = static_cast<fake::Transport*>(transport_.get()); local
46 CHECK(transport) << "Expecting a fake transport";
47 auto handler = transport->GetHandler(request_.GetURL(), request_.GetMethod());
http_connection_curl.h 28 const std::shared_ptr<http::Transport>& transport);
95 friend class http::curl::Transport;
http_transport_fake.h 28 // A fake implementation of http::Transport that simulates HTTP communication
31 class Transport : public http::Transport {
33 Transport();
34 ~Transport() override;
68 // For tests that wish to simulate critical transport errors, this method
85 // Overrides from http::Transport.
118 DISALLOW_COPY_AND_ASSIGN(Transport);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
Transport.java 25 public interface Transport {
63 * Returns true if the socket connection held by this transport can be reused
  /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/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;
  /frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
UsbAccessoryBulkTransport.java 20 import com.android.accessorydisplay.common.Transport;
32 public class UsbAccessoryBulkTransport extends Transport {
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
UsbAccessoryStreamTransport.java 20 import com.android.accessorydisplay.common.Transport;
32 public class UsbAccessoryStreamTransport extends Transport {
  /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...]
transportcontroller.h 21 #include "webrtc/p2p/base/transport.h"
93 // If any transport failed => failed,
99 // Receiving if any transport is receiving
116 virtual Transport* CreateTransport_w(const std::string& transport_name);
119 const std::map<std::string, Transport*>& transports() { return transports_; }
120 Transport* GetTransport_w(const std::string& transport_name);
125 // It's the Transport that's currently responsible for creating/destroying
152 Transport* GetOrCreateTransport_w(const std::string& transport_name);
182 // Handlers for signals from Transport.
195 typedef std::map<std::string, Transport*> TransportMap
    [all...]
  /external/webrtc/webrtc/test/
direct_transport.h 22 #include "webrtc/transport.h"
32 class DirectTransport : public Transport {
52 static bool NetworkProcess(void* transport);
  /system/core/fastboot/
usbtest.cpp 89 int test_null(Transport* usb)
108 int test_zero(Transport* usb)
130 int (*test)(Transport* usb);
180 Transport* usb;
  /system/core/metricsd/uploader/
sender_http.cc 41 brillo::http::Transport::CreateDefault(),
  /external/webrtc/webrtc/video/
video_quality_test.h 102 void SetupCommon(Transport* send_transport, Transport* recv_transport);

Completed in 326 milliseconds

12 3 4 5 6 7