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

  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
Transport.java 24 interface Transport {
  /external/chromium_org/remoting/protocol/
transport.h 5 // This file defines the interface for peer-to-peer transport. There
6 // are two types of transport: StreamTransport and DatagramTransport.
10 // datagram connection. The Transport interface itself doesn't provide
13 // channel. After a new transport is Initialize()'ed the Connect()
17 // specified in the Connect() call. The Transport object must exist
20 // Transport object.
66 class Transport : public base::NonThreadSafe {
73 // Called when the transport generates a new candidate that needs
76 virtual void OnTransportCandidate(Transport* transport,
    [all...]
  /frameworks/base/core/java/android/database/
ContentObserver.java 28 private Transport mTransport; // guarded by mLock
42 * Gets access to the binder transport object. Not for public consumption.
49 mTransport = new Transport(this);
56 * Gets access to the binder transport object, and unlinks the transport object
63 final Transport oldTransport = mTransport;
184 private static final class Transport extends IContentObserver.Stub {
187 public Transport(ContentObserver contentObserver) {
  /frameworks/base/core/java/android/accounts/
AbstractAccountAuthenticator.java 117 private class Transport extends IAccountAuthenticator.Stub {
346 private Transport mTransport = new Transport();
  /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...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transport.cc 28 #include "talk/p2p/base/transport.h"
81 Transport::Transport(talk_base::Thread* signaling_thread,
91 Transport::~Transport() {
96 TransportChannelImpl* Transport::CreateChannel(
104 TransportChannelImpl* Transport::CreateChannel_w(
109 impl->SignalReadableState.connect(this, &Transport::OnChannelReadableState);
110 impl->SignalWritableState.connect(this, &Transport::OnChannelWritableState);
112 this, &Transport::OnChannelRequestSignaling)
    [all...]
transport.h 28 // A Transport manages a set of named channels of the same type.
35 // On Threading: Transport performs work on both the signaling and worker
80 // Used to parse and serialize (write) transport candidates. For
107 class Transport : public talk_base::MessageHandler,
110 Transport(talk_base::Thread* signaling_thread,
114 virtual ~Transport();
116 // Returns the signaling thread. The app talks to Transport on this thread.
121 // Returns the type of this transport.
124 // Returns the port allocator object for this transport.
132 sigslot::signal1<Transport*> SignalReadableState
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transport.cc 28 #include "talk/p2p/base/transport.h"
113 Transport::Transport(talk_base::Thread* signaling_thread,
134 Transport::~Transport() {
139 void Transport::SetIceRole(IceRole role) {
144 void Transport::SetIdentity(talk_base::SSLIdentity* identity) {
149 bool Transport::SetLocalTransportDescription(
156 bool Transport::SetRemoteTransportDescription(
163 TransportChannelImpl* Transport::CreateChannel(int component)
    [all...]
transport.h 28 // A Transport manages a set of named channels of the same type.
35 // On Threading: Transport performs work on both the signaling and worker
83 // Used to parse and serialize (write) transport candidates. For
95 // Parse or write a transport description, including ICE credentials and
96 // any DTLS fingerprint. Since only Jingle has transport descriptions, these
109 // candidates, since there is no enclosing transport description.
139 // Stats that we can return about the connections for a transport channel.
179 // Information about all the channels of a transport.
183 // Information about the stats of a transport.
189 class Transport : public talk_base::MessageHandler
    [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...]
  /frameworks/base/core/java/android/content/
ContentProvider.java 106 private Transport mTransport = new Transport();
165 if (abstractInterface instanceof Transport) {
166 return ((Transport)abstractInterface).getContentProvider();
176 class Transport extends ContentProviderNative {
    [all...]
  /packages/services/Telephony/src/com/android/phone/sip/
SipEditor.java 87 Transport(R.string.transport, R.string.default_transport, NA),
423 .setProtocol(PreferenceKey.Transport.getValue())
  /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...]
  /prebuilts/python/linux-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/linux-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...]
  /external/webrtc/src/
common_types.h 186 // External transport callback interface
187 class Transport
194 virtual ~Transport() {}
195 Transport() {}
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar 

Completed in 2040 milliseconds