HomeSort by relevance Sort by last modified time
    Searched refs:Transport (Results 101 - 125 of 238) sorted by null

1 2 3 45 6 7 8 910

  /system/core/fastboot/
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) {
usb_windows.cpp 69 class WindowsUsbTransport : public Transport {
360 Transport* usb_open(ifc_match_func callback)
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/
UsbMass.h 2 Definition of USB Mass Storage Class and its value, USB Mass Transport Protocol,
58 Initializes USB transport protocol.
60 This function initializes the USB mass storage class transport protocol.
67 @retval EFI_UNSUPPORTED The transport protocol doesn't support the device.
68 @retval Other The USB transport initialization fails.
79 Execute USB mass storage command through the transport protocol.
81 @param Context The USB Transport Protocol.
110 Reset the USB mass storage device by Transport protocol.
112 @param Context The USB Transport Protocol
130 @param Context The context of the transport protocol.
    [all...]
  /external/libbrillo/brillo/http/
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/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;
  /prebuilts/go/darwin-x86/src/cmd/go/
http.go 35 Transport: &http.Transport{
  /prebuilts/go/darwin-x86/src/crypto/tls/
example_test.go 94 Transport: &http.Transport{
  /prebuilts/go/darwin-x86/src/net/http/
npn_test.go 48 c := &Client{Transport: tr}
69 c := &Client{Transport: tr}
  /prebuilts/go/linux-x86/src/cmd/go/
http.go 35 Transport: &http.Transport{
  /prebuilts/go/linux-x86/src/crypto/tls/
example_test.go 94 Transport: &http.Transport{
  /prebuilts/go/linux-x86/src/net/http/
npn_test.go 48 c := &Client{Transport: tr}
69 c := &Client{Transport: tr}
  /system/bt/service/common/bluetooth/
low_energy_constants.h 58 enum Transport { TRANSPORT_AUTO = 0, TRANSPORT_BREDR = 1, TRANSPORT_LE = 2 };
  /system/hwservicemanager/
ServiceManager.h 35 Return<Transport> getTransport(const hidl_string& fqName,
  /system/libvintf/include/vintf/
HalManifest.h 51 // return getHal(name)->transport if the component exist and v exactly matches
53 Transport getTransport(const std::string &name, const Version &v,
  /external/autotest/server/hosts/
rpc_server_tracker.py 313 kwargs['transport'] = TimeoutXMLRPCTransport(timeout=timeout)
317 class TimeoutXMLRPCTransport(xmlrpclib.Transport):
318 """A Transport subclass supporting timeout."""
322 @param timeout: Timeout in seconds for a HTTP request through this transport layer.
323 @param *args: args to xmlrpclib.Transport.
324 @param **kwargs: kwargs to xmlrpclib.Transport.
327 xmlrpclib.Transport.__init__(self, *args, **kwargs)
332 """Overwrites make_connection in xmlrpclib.Transport with timeout.
  /external/curl/docs/cmdline-opts/
cacert.d 22 (iOS and macOS only) If curl is built against Secure Transport, then this
  /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);

Completed in 1752 milliseconds

1 2 3 45 6 7 8 910