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

12 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/
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;
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;
  /system/core/fastboot/
udp.h 36 #include "transport.h"
42 // Returns a newly allocated Transport object connected to |hostname|:|port|. On failure, |error| is
44 std::unique_ptr<Transport> Connect(const std::string& hostname, int port, std::string* error);
73 // Creates a UDP Transport object using a given Socket. Used for unit tests to create a Transport
75 std::unique_ptr<Transport> Connect(std::unique_ptr<Socket> sock, std::string* error);
  /external/libbrillo/brillo/http/
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_transport_curl.cc 34 class Transport::SocketPollData : public base::MessageLoopForIO::Watcher {
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
330 auto transport = static_cast<Transport*>(userp); local
397 auto transport = static_cast<Transport*>(userp); local
    [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...]
mock_transport.h 18 class MockTransport : public Transport {
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_;
  /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
  /frameworks/base/core/proto/android/net/
networkcapabilities.proto 31 enum Transport {
32 // Indicates this network uses a Cellular transport.
34 // Indicates this network uses a Wi-Fi transport.
36 // Indicates this network uses a Bluetooth transport.
38 // Indicates this network uses an Ethernet transport.
40 // Indicates this network uses a VPN transport.
42 // Indicates this network uses a Wi-Fi Aware transport.
44 // Indicates this network uses a LoWPAN transport.
47 repeated Transport transports = 1;
119 // bandwidth for the first hop on the given transport. It is not measured
    [all...]
  /test/vts-testcase/hal/treble/vintf/
SingleManifestTest.cpp 70 Transport transport) {
71 cout << "Verifying transport method of: " << fq_name.string() << endl;
77 EXPECT_NE(transport, Transport::EMPTY)
78 << hal_name << " has no transport specified in VINTF.";
80 if (transport == Transport::PASSTHROUGH) {
98 Transport transport) {
    [all...]
VtsTrebleVintfTestBase.cpp 67 using android::vintf::Transport;
93 const Transport transport = manifest_instance.transport();
97 std::async([&]() { fn(fq_name, instance_name, transport); });
110 Transport transport, bool log) {
111 return GetHalService(fq_name.string(), instance_name, transport, log);
116 Transport transport, bool log)
    [all...]
  /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...]
  /prebuilts/go/darwin-x86/src/net/http/httptest/
server_test.go 165 // Tests that the Server.Client.Transport interface is implemented
166 // by a *http.Transport.
172 if _, ok := client.Transport.(*http.Transport); !ok {
173 t.Errorf("got %T, want *http.Transport", client.Transport)
177 // Tests that the TLS Server.Client.Transport interface is implemented
178 // by a *http.Transport.
184 if _, ok := client.Transport.(*http.Transport); !ok
    [all...]
  /prebuilts/go/linux-x86/src/net/http/httptest/
server_test.go 165 // Tests that the Server.Client.Transport interface is implemented
166 // by a *http.Transport.
172 if _, ok := client.Transport.(*http.Transport); !ok {
173 t.Errorf("got %T, want *http.Transport", client.Transport)
177 // Tests that the TLS Server.Client.Transport interface is implemented
178 // by a *http.Transport.
184 if _, ok := client.Transport.(*http.Transport); !ok
    [all...]
  /system/netd/server/dns/
DnsTlsDispatcher.h 67 // This lock is static so that it can be used to annotate the Transport struct.
75 // Transport is a thin wrapper around DnsTlsTransport, adding reference counting and
77 struct Transport {
78 Transport(const DnsTlsServer& server, unsigned mark,
80 transport(server, mark, factory) {}
82 DnsTlsTransport transport; member in struct:android::net::DnsTlsDispatcher::Transport
93 std::map<Key, std::unique_ptr<Transport>> mStore GUARDED_BY(sLock);
  /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;
  /system/libhidl/transport/manager/1.0/
IServiceManager.hal 76 enum Transport : uint8_t {
83 * Get the transport of a service.
88 * @return transport Transport of service if known.
90 getTransport(string fqName, string name) generates (Transport transport);
  /prebuilts/go/darwin-x86/src/net/http/
export_test.go 84 func (t *Transport) NumPendingRequestsForTesting() int {
90 func (t *Transport) IdleConnKeysForTesting() (keys []string) {
101 func (t *Transport) IdleConnKeyCountForTesting() int {
107 func (t *Transport) IdleConnStrsForTesting() []string {
120 func (t *Transport) IdleConnStrsForTesting_h2() []string {
138 func (t *Transport) IdleConnCountForTesting(cacheKey string) int {
149 func (t *Transport) IdleConnChMapSizeForTesting() int {
155 func (t *Transport) IsIdleForTesting() bool {
161 func (t *Transport) RequestIdleConnChForTesting() {
165 func (t *Transport) PutIdleTestConn() bool
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
export_test.go 84 func (t *Transport) NumPendingRequestsForTesting() int {
90 func (t *Transport) IdleConnKeysForTesting() (keys []string) {
101 func (t *Transport) IdleConnKeyCountForTesting() int {
107 func (t *Transport) IdleConnStrsForTesting() []string {
120 func (t *Transport) IdleConnStrsForTesting_h2() []string {
138 func (t *Transport) IdleConnCountForTesting(cacheKey string) int {
149 func (t *Transport) IdleConnChMapSizeForTesting() int {
155 func (t *Transport) IsIdleForTesting() bool {
161 func (t *Transport) RequestIdleConnChForTesting() {
165 func (t *Transport) PutIdleTestConn() bool
    [all...]
  /external/curl/docs/cmdline-opts/
cert.d 10 PKCS#12 format if using Secure Transport, or PEM format if using any other
26 (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

Completed in 530 milliseconds

12 3 4 5 6 7 8 91011>>