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

1 23 4 5 6 7

  /system/core/fastboot/
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) {
fastboot.cpp 61 #include "transport.h"
233 // Opens a new Transport connected to a device. If |serial| is non-null it will be used to identify
239 // The returned Transport is a singleton, so multiple calls to this function will return the same
240 // object, and the caller should not attempt to delete the returned Transport.
241 static Transport* open_device() {
242 static Transport* transport = nullptr; local
245 if (transport != nullptr) {
246 return transport;
279 transport = tcp::Connect(host, port, &error).release()
1396 Transport* transport = open_device(); local
    [all...]
udp.cpp 101 // Implements the Transport interface to work with the fastboot engine.
102 class UdpTransport : public Transport {
143 std::unique_ptr<UdpTransport> transport(new UdpTransport(std::move(socket)));
145 if (!transport->InitializeProtocol(error)) {
149 return transport;
373 std::unique_ptr<Transport> Connect(const std::string& hostname, int port, std::string* error) {
380 std::unique_ptr<Transport> Connect(std::unique_ptr<Socket> sock, std::string* error) {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Internal.java 30 import com.squareup.okhttp.internal.http.Transport;
54 public abstract Transport newTransport(Connection connection, HttpEngine httpEngine)
  /external/libbrillo/brillo/http/
http_connection_fake.h 25 const std::shared_ptr<http::Transport>& transport);
http_transport_curl_unittest.cc 33 transport_ = std::make_shared<Transport>(curl_api_);
53 std::shared_ptr<Transport> transport_;
168 transport_ = std::make_shared<Transport>(curl_api_);
182 std::shared_ptr<Transport> transport_;
http_connection_curl.cc 56 const std::shared_ptr<http::Transport>& transport)
57 : http::Connection(transport),
157 Transport::AddEasyCurlError(error, FROM_HERE, ret, curl_interface_.get());
http_request.h 218 // |transport| is the HTTP transport implementation for server communications.
221 std::shared_ptr<Transport> transport);
297 // Implementation that provides particular HTTP transport.
298 std::shared_ptr<Transport> transport_;
  /external/webrtc/webrtc/p2p/base/
transportchannelimpl.h 15 #include "webrtc/p2p/base/transport.h"
31 // methods called only by Transport, which do not need to be exposed to the
39 // Returns the transport that created this channel.
40 virtual Transport* GetTransport() = 0;
50 // transport channels. Non-ICE transport channels can just ignore.
55 // transport channels. Non-ICE transport channels can just ignore.
59 // SetRemoteIceMode must be implemented only by the ICE transport channels.
73 // Handles sending and receiving of candidates. The Transport
    [all...]
dtlstransportchannel.h 85 // transport -- the DtlsTransport that created us
87 DtlsTransportChannelWrapper(Transport* transport,
111 // TransportChannel calls that we forward to the wrapped transport.
162 Transport* GetTransport() override { return transport_; }
221 Transport* transport_; // The transport_ that created us.
  /external/webrtc/webrtc/test/
call_test.h 71 Transport* send_transport);
72 void CreateMatchingReceiveConfigs(Transport* rtcp_send_transport);
  /system/bt/service/common/bluetooth/
low_energy_constants.h 58 enum Transport {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
Mailer.java 111 Transport.send(message);
156 Transport.send(message);
227 Transport.send(message);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddchgr.h 281 CHANGER_ELEMENT Transport;
287 CHANGER_ELEMENT Transport;
296 CHANGER_ELEMENT Transport;
  /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/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/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/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...]
  /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/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpTransport.java 27 public final class HttpTransport implements Transport {
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtcp_format_remb_unittest.cc 27 class TestTransport : public Transport {
  /external/webrtc/webrtc/voice_engine/test/auto_test/fakes/
conference_transport.h 45 class ConferenceTransport: public webrtc::Transport {
100 // Inherit from class webrtc::Transport.
122 static bool Run(void* transport) {
123 return static_cast<ConferenceTransport*>(transport)->DispatchPackets();
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
rtp_rtcp_extensions.cc 22 class ExtensionVerifyTransport : public webrtc::Transport {
  /external/webrtc/webrtc/voice_engine/
voe_network_impl.cc 39 Transport& transport) {
47 return channelPtr->RegisterExternalTransport(transport);
85 LOG_F(LS_ERROR) << "No external transport for channel: " << channel;
108 LOG_F(LS_ERROR) << "No external transport for channel: " << channel;
  /system/weaved/buffet/
http_transport_client.cc 76 : transport_{brillo::http::Transport::CreateDefault()} {

Completed in 397 milliseconds

1 23 4 5 6 7