HomeSort by relevance Sort by last modified time
    Searched defs:Transport (Results 1 - 25 of 40) sorted by null

1 2

  /external/webrtc/webrtc/
transport.h 28 class Transport {
36 virtual ~Transport() {}
  /external/libbrillo/brillo/http/
http_transport.h 37 // Transport is a base class for specific implementation of HTTP communication.
41 class BRILLO_EXPORT Transport : public std::enable_shared_from_this<Transport> {
43 Transport() = default;
44 virtual ~Transport() = default;
47 // |transport| is a shared pointer to this transport object instance,
50 // to the underlying transport (e.g. CURL) to establish the connection.
60 // transport. For transports that do not contain references to real message
61 // loops (e.g. a fake transport), calls the callback immediately
    [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::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...]
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_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);
  /system/core/fastboot/
transport.h 24 class Transport {
26 Transport() = default;
27 virtual ~Transport() = default;
37 // Closes the underlying transport. Returns 0 on success.
40 // Blocks until the transport disconnects. Transports that don't support
45 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/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...]
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...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
transport.py 18 """Transport library for ProtoRPC.
23 Includes HTTP transport built over urllib2.
45 'Transport',
56 An RPC is created by the transport class and is used with a single RPC. While
142 class Transport(object):
143 """Transport base class.
145 Provides basic support for implementing a ProtoRPC transport such as one
149 instance and a request Message. The transport is expected to set the rpc
180 """Protocol associated with this transport."""
185 """Protocol associated with this transport.""
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/
Transport.java 24 package org.ksoap2.transport;
36 * transport layers. This class encapsulates the serialization and
40 abstract public class Transport {
64 public Transport() {
67 public Transport(String url) {
71 public Transport(String url, int timeout) {
76 public Transport(String url, int timeout, int bufferLength) {
83 * Construct the transport object
90 public Transport(Proxy proxy, String url) {
95 public Transport(Proxy proxy, String url, int timeout)
    [all...]
  /frameworks/base/core/java/android/database/
ContentObserver.java 29 private Transport mTransport; // guarded by mLock
43 * Gets access to the binder transport object. Not for public consumption.
50 mTransport = new Transport(this);
57 * Gets access to the binder transport object, and unlinks the transport object
64 final Transport oldTransport = mTransport;
220 private static final class Transport extends IContentObserver.Stub {
223 public Transport(ContentObserver contentObserver) {
  /frameworks/base/core/java/android/os/
CancellationSignal.java 125 * Sets the remote transport.
128 * remote transport is canceled immediately.
130 * This method is guaranteed that the remote transport will not be called after it
133 * @param remote The remote transport, or null to remove.
165 * Creates a transport that can be returned back to the caller of
168 * @return The new cancellation signal transport.
173 return new Transport();
177 * Given a locally created transport, returns its associated cancellation signal.
179 * @param transport The locally created transport, or null if none
    [all...]
  /frameworks/base/core/java/android/accounts/
AbstractAccountAuthenticator.java 155 private class Transport extends IAccountAuthenticator.Stub {
519 private Transport mTransport = new Transport();
    [all...]
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Transport.java 28 * A simple message transport.
31 * are always delivered on the {@link Looper} thread on which the transport
35 public abstract class Transport {
40 // The transport thread looper and handler.
46 // The output buffer. Set to null when the transport is closed.
58 public Transport(Logger logger, int maxPacketSize) {
74 * Gets the handler on the transport's thread.
81 * Closes the transport.
115 mLogger.logError("Send message failed because transport was closed.");
165 throw new IllegalStateException("Transport has been closed")
    [all...]
  /system/bt/service/common/bluetooth/
low_energy_constants.h 58 enum Transport {
  /frameworks/base/core/java/android/content/
ContentProvider.java 122 private Transport mTransport = new Transport();
181 if (abstractInterface instanceof Transport) {
182 return ((Transport)abstractInterface).getContentProvider();
192 class Transport extends ContentProviderNative {
    [all...]
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipEditor.java 77 Transport(R.string.transport, R.string.default_transport, NA),
401 .setProtocol(PreferenceKey.Transport.getValue())
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_xmlrpc.py 678 p("transport").close() #same as above, really.
697 class Transport(xmlrpclib.Transport):
698 #custom transport, stores the response length for our perusal
702 return xmlrpclib.Transport.parse_response(self, response)
708 return xmlrpclib.Transport.send_content(self, connection, body)
714 t = self.Transport()
716 p = xmlrpclib.ServerProxy(URL, transport=t)
725 t = self.Transport()
728 p = xmlrpclib.ServerProxy(URL, transport=t
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
xmlrpclib.py 29 # 2001-09-03 fl Allow Transport subclass to override getparser
120 Transport Handles an HTTP transaction to an XML-RPC server
229 # transport layer, if the server returns an error code other than 200
471 # Wrapper for binary data. This can be used to transport any kind
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_xmlrpc.py 678 p("transport").close() #same as above, really.
697 class Transport(xmlrpclib.Transport):
698 #custom transport, stores the response length for our perusal
702 return xmlrpclib.Transport.parse_response(self, response)
708 return xmlrpclib.Transport.send_content(self, connection, body)
714 t = self.Transport()
716 p = xmlrpclib.ServerProxy(URL, transport=t)
725 t = self.Transport()
728 p = xmlrpclib.ServerProxy(URL, transport=t
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
xmlrpclib.py 29 # 2001-09-03 fl Allow Transport subclass to override getparser
120 Transport Handles an HTTP transaction to an XML-RPC server
229 # transport layer, if the server returns an error code other than 200
471 # Wrapper for binary data. This can be used to transport any kind
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xmlrpc.py 678 p("transport").close() #same as above, really.
697 class Transport(xmlrpclib.Transport):
698 #custom transport, stores the response length for our perusal
702 return xmlrpclib.Transport.parse_response(self, response)
708 return xmlrpclib.Transport.send_content(self, connection, body)
714 t = self.Transport()
716 p = xmlrpclib.ServerProxy(URL, transport=t)
725 t = self.Transport()
728 p = xmlrpclib.ServerProxy(URL, transport=t
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
xmlrpclib.py 29 # 2001-09-03 fl Allow Transport subclass to override getparser
120 Transport Handles an HTTP transaction to an XML-RPC server
229 # transport layer, if the server returns an error code other than 200
471 # Wrapper for binary data. This can be used to transport any kind
    [all...]

Completed in 2864 milliseconds

1 2