HomeSort by relevance Sort by last modified time
    Searched refs:Transport (Results 51 - 75 of 285) sorted by null

1 23 4 5 6 7 8 91011>>

  /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 {
  /test/vts-testcase/hal/treble/vintf/
VtsTrebleVintfTestBase.h 47 const string &instance_name, Transport,
50 const string &instance_name, Transport,
SystemVendorTest.cpp 106 for (auto transport : {Transport::HWBINDER, Transport::PASSTHROUGH}) {
108 transport == Transport::HWBINDER
114 GetHalService(fq_name, instance, transport, false /* log */);
116 if (transport == Transport::PASSTHROUGH) {
vts_treble_vintf_test_o_mr1.cpp 53 using android::vintf::Transport;
133 Transport transport = vendor_manifest_->getTransport( local
137 transport);
146 cout << "Verifying transport method of: " << fq_name.string() << endl;
152 Transport transport = vendor_manifest_->getTransport(
155 EXPECT_NE(transport, Transport::EMPTY)
156 << hal_name << " has no transport specified in VINTF."
    [all...]
utils.h 51 using android::vintf::Transport;
64 const string& instance_name, Transport)>;
  /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/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);
  /prebuilts/go/darwin-x86/test/bench/go1/
http_test.go 24 tr := &http.Transport{}
27 Transport: tr,
  /prebuilts/go/linux-x86/test/bench/go1/
http_test.go 24 tr := &http.Transport{}
27 Transport: tr,
  /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;
tcp.cpp 56 class TcpTransport : public Transport {
83 std::unique_ptr<TcpTransport> transport(new TcpTransport(std::move(socket)));
85 if (!transport->InitializeProtocol(error)) {
89 return transport;
181 std::unique_ptr<Transport> Connect(const std::string& hostname, int port, std::string* error) {
188 std::unique_ptr<Transport> Connect(std::unique_ptr<Socket> sock, std::string* error) {
  /system/libvintf/include/vintf/
ManifestInstance.h 46 Transport transport() const;
  /external/libbrillo/brillo/http/
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);
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());
  /external/webrtc/webrtc/video/
video_quality_test.h 102 void SetupCommon(Transport* send_transport, Transport* recv_transport);
  /external/webrtc/webrtc/
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;
  /prebuilts/go/darwin-x86/src/net/http/
npn_test.go 66 tr := &Transport{
74 Transport: tr,
89 tlsConfig := c.Transport.(*Transport).TLSClientConfig
  /prebuilts/go/linux-x86/src/net/http/
npn_test.go 66 tr := &Transport{
74 Transport: tr,
89 tlsConfig := c.Transport.(*Transport).TLSClientConfig

Completed in 899 milliseconds

1 23 4 5 6 7 8 91011>>