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

1 2 34 5 6 7

  /external/webrtc/webrtc/modules/rtp_rtcp/include/
rtp_rtcp.h 26 class Transport;
47 * outgoing_transport - Transport object that will be called when packets
63 Transport* outgoing_transport;
  /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/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
DisplaySinkService.java 21 import com.android.accessorydisplay.common.Transport;
45 // happens on the transport thread, we are not allowed to access the surface after
55 public DisplaySinkService(Context context, Transport transport, int densityDpi) {
56 super(context, transport, Protocol.DisplaySinkService.ID);
57 mTransportHandler = transport.getHandler();
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
DisplaySourceService.java 21 import com.android.accessorydisplay.common.Transport;
58 public DisplaySourceService(Context context, Transport transport, Callbacks callbacks) {
59 super(context, transport, Protocol.DisplaySourceService.ID);
  /system/core/fastboot/
usb_windows.cpp 69 class WindowsUsbTransport : public Transport {
360 Transport* usb_open(ifc_match_func callback)
engine.cpp 78 bool fb_getvar(Transport* transport, const std::string& key, std::string* value) {
84 if (fb_command_response(transport, cmd.c_str(), buf)) {
333 int fb_execute_queue(Transport* transport)
353 status = fb_download_data(transport, a->data, a->size);
357 status = fb_command(transport, a->cmd);
361 status = fb_command_response(transport, a->cmd, resp);
367 status = fb_download_data_sparse(transport, reinterpret_cast<sparse_file*>(a->data));
371 transport->WaitForDisconnect()
    [all...]
usb_linux.cpp 90 class LinuxUsbTransport : public Transport {
479 Transport* usb_open(ifc_match_func callback)
usb_osx.cpp 68 class OsxUsbTransport : public Transport {
483 Transport* usb_open(ifc_match_func callback) {
  /system/tpm/attestation/server/
attestation_service.h 104 const std::shared_ptr<brillo::http::Transport>& transport) {
105 http_transport_ = transport;
287 std::shared_ptr<brillo::http::Transport> http_transport_;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
transport_test.py 29 from protorpc import transport namespace
41 MODULE = transport
57 class TestRpc(transport.Rpc):
100 transport.RpcStateError,
109 transport.RpcStateError,
129 transport.RpcStateError,
145 transport.RpcStateError,
186 trans = transport.Transport()
192 trans = transport.Transport(protocol=protojson
    [all...]
  /external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/
after_initialization_fixture.h 28 class LoopBackTransport : public webrtc::Transport {
94 static bool NetworkProcess(void* transport) {
95 return static_cast<LoopBackTransport*>(transport)->SendPackets();
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtcp_sender.h 31 #include "webrtc/transport.h"
80 Transport* outgoing_transport);
206 Transport* const transport_;
rtcp_sender.cc 86 explicit PacketContainer(Transport* transport)
87 : transport_(transport), bytes_sent_(0) {}
104 Transport* transport_;
145 Transport* outgoing_transport)
    [all...]
rtp_sender.h 29 #include "webrtc/transport.h"
92 Transport* transport,
373 // Update the transport sequence number of the packet using a new sequence
404 Transport *transport_;
  /external/webrtc/webrtc/video/
vie_channel.h 70 Transport* transport,
292 Transport* outgoing_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...]
  /external/webrtc/webrtc/voice_engine/
channel.h 164 public Transport,
225 int32_t RegisterExternalTransport(Transport& transport);
394 // From Transport (called by the RTP/RTCP module)
563 Transport* _transportPtr; // WebRtc socket or external transport
  /frameworks/base/core/java/android/accounts/
AbstractAccountAuthenticator.java 155 private class Transport extends IAccountAuthenticator.Stub {
519 private Transport mTransport = new Transport();
    [all...]
  /external/libbrillo/brillo/http/
http_request.cc 109 std::shared_ptr<Transport> transport)
110 : transport_(transport), request_url_(url), method_(method) {
113 transport_ = http::Transport::CreateDefault();
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Connection.java 29 import com.squareup.okhttp.internal.http.Transport;
443 /** Returns the transport appropriate for this connection. */
444 Transport newTransport(HttpEngine httpEngine) throws IOException {
OkHttpClient.java 26 import com.squareup.okhttp.internal.http.Transport;
67 @Override public Transport newTransport(
524 * servers. By default this client will prefer the most efficient transport
537 * support for transitional protocols. The http/1.1 transport will never be
542 * will be used to negotiate a transport.
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
HttpTransportSE.java 26 package org.ksoap2.transport;
42 public class HttpTransportSE extends Transport {
  /external/webrtc/talk/media/webrtc/
webrtcvoiceengine.h 154 public webrtc::Transport {
203 // implements Transport interface
  /external/webrtc/webrtc/p2p/base/
p2ptransportchannel.h 30 #include "webrtc/p2p/base/transport.h"
70 P2PTransport* transport,
75 Transport* GetTransport() override { return transport_; }
190 // A transport channel is weak if the current best connection is either
  /external/webrtc/webrtc/test/channel_transport/
udp_transport.h 15 #include "webrtc/transport.h"
64 // Transport layer port number.
111 class UdpTransport : public Transport {

Completed in 774 milliseconds

1 2 34 5 6 7