HomeSort by relevance Sort by last modified time
    Searched refs:transport (Results 201 - 225 of 786) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/location/java/android/location/
CountryDetector.java 122 ListenerTransport transport = new ListenerTransport(listener, looper); local
124 mService.addCountryListener(transport);
125 mListeners.put(listener, transport);
138 ListenerTransport transport = mListeners.get(listener); local
139 if (transport != null) {
142 mService.removeCountryListener(transport);
  /frameworks/base/services/backup/java/com/android/server/backup/internal/
PerformClearTask.java 27 import com.android.server.backup.transport.TransportClient;
50 IBackupTransport transport = null; local
59 transport = mTransportClient.connectOrThrow(callerLogString);
60 // Tell the transport to remove all the persistent storage for the app
62 transport.clearBackupData(mPackage);
64 Slog.e(TAG, "Transport threw clearing data for " + mPackage + ": " + e.getMessage());
66 if (transport != null) {
69 transport.finishBackup();
  /external/adhd/cras/src/server/
cras_a2dp_iodev.c 36 * transport - The transport object for bluez media API.
49 struct cras_bt_transport *transport; member in struct:a2dp_io
67 cras_bt_transport_configuration(a2dpio->transport, &a2dp,
144 err = cras_bt_transport_acquire(a2dpio->transport);
150 /* Apply the node's volume after transport is acquired. Doing this
170 sock_depth = 2 * cras_bt_transport_write_mtu(a2dpio->transport);
171 setsockopt(cras_bt_transport_fd(a2dpio->transport),
176 cras_bt_transport_write_mtu(a2dpio->transport))
186 audio_thread_add_write_callback(cras_bt_transport_fd(a2dpio->transport),
    [all...]
cras_bt_manager.c 78 struct cras_bt_transport *transport; local
80 transport = cras_bt_transport_get(object_path);
81 if (transport) {
83 transport, properties_array_iter, NULL);
85 transport = cras_bt_transport_create(conn, object_path);
86 if (transport) {
88 transport, properties_array_iter, NULL);
91 "Bluetooth Transport: %s added",
92 cras_bt_transport_object_path(transport));
95 "Failed to create Bluetooth Transport:
130 struct cras_bt_transport *transport; local
170 struct cras_bt_transport *transport; local
    [all...]
  /system/core/fastboot/
fastboot.h 37 #include "transport.h"
42 int fb_command(Transport* transport, const std::string& cmd);
43 int fb_command_response(Transport* transport, const std::string& cmd, char* response);
44 int64_t fb_download_data(Transport* transport, const void* data, uint32_t size);
45 int64_t fb_download_data_fd(Transport* transport, int fd, uint32_t size);
46 int fb_download_data_sparse(Transport* transport, struct sparse_file* s)
    [all...]
fastboot.cpp 66 #include "transport.h"
238 // Opens a new Transport connected to a device. If |serial| is non-null it will be used to identify
244 // The returned Transport is a singleton, so multiple calls to this function will return the same
245 // object, and the caller should not attempt to delete the returned Transport.
246 static Transport* open_device() {
247 static Transport* transport = nullptr; local
250 if (transport != nullptr) {
251 return transport;
284 transport = tcp::Connect(host, port, &error).release()
1652 Transport* transport = open_device(); local
    [all...]
  /external/libbrillo/brillo/http/
http_utils.cc 26 std::shared_ptr<Transport> transport,
29 request_type::kGet, url, headers, transport, error);
34 std::shared_ptr<Transport> transport,
40 transport,
46 std::shared_ptr<Transport> transport,
49 request_type::kHead, url, {}, transport, error);
53 std::shared_ptr<Transport> transport
    [all...]
http_utils_unittest.cc 43 std::shared_ptr<fake::Transport> transport(new fake::Transport);
44 transport->AddHandler(
56 transport,
65 std::shared_ptr<fake::Transport> transport(new fake::Transport);
66 transport->AddHandler(
88 transport,
    [all...]
  /test/vts-testcase/hal/treble/vintf/
SingleManifestTest.cpp 70 Transport transport) {
71 cout << "Verifying transport method of: " << fq_name.string() << endl;
77 EXPECT_NE(transport, Transport::EMPTY)
78 << hal_name << " has no transport specified in VINTF.";
80 if (transport == Transport::PASSTHROUGH) {
98 Transport transport) {
    [all...]
VtsTrebleVintfTestBase.cpp 67 using android::vintf::Transport;
93 const Transport transport = manifest_instance.transport();
97 std::async([&]() { fn(fq_name, instance_name, transport); });
110 Transport transport, bool log) {
111 return GetHalService(fq_name.string(), instance_name, transport, log);
116 Transport transport, bool log)
    [all...]
  /bionic/libc/kernel/uapi/linux/
vsockmon.h 28 __le16 transport; member in struct:af_vsockmon_hdr
  /external/kernel-headers/original/uapi/linux/
vsockmon.h 15 * | transport header |
22 * The vsockmon header is a transport-independent description of the packet.
23 * It duplicates some of the information from the transport header so that
24 * no transport-specific knowledge is necessary to process packets.
26 * The transport header is useful for low-level transport-specific packet
27 * analysis. Transport type is given in af_vsockmon_hdr->transport and
28 * transport header length is given in af_vsockmon_hdr->len.
31 * transport header. Other ops do not have a payload
40 __le16 transport; \/* enum af_vsockmon_transport *\/ member in struct:af_vsockmon_hdr
    [all...]
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
HttpsServiceConnectionSEIgnoringConnectionClose.java 2 package org.ksoap2.transport;
  /external/webrtc/webrtc/call/
transport_adapter.h 15 #include "webrtc/transport.h"
20 class TransportAdapter : public Transport {
22 explicit TransportAdapter(Transport* transport);
33 Transport *transport_;
  /frameworks/base/services/backup/java/com/android/server/backup/transport/
TransportNotRegisteredException.java 17 package com.android.server.backup.transport;
25 * Exception thrown when the transport is not registered.
34 super("Transport " + transportName + " not registered");
38 super("Transport for host " + transportComponent + " not registered");
  /system/bt/btif/include/
btif_gatt_util.h 30 tGATT_TRANSPORT transport);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPUnitDebuggeeWrapper.java 47 * Wrapper around JDWP transport connection.
49 protected TransportWrapper transport; field in class:JDWPUnitDebuggeeWrapper
52 * JDWP transport address.
79 transport = createTransportWrapper();
85 address = transport.startListening(address);
116 logWriter.println("Established transport connection");
134 // thrown), make sure that the transport server socket (if
136 // block the transport port for subsequent JDWP tests.
148 transport.accept(settings.getTimeout(), settings.getTimeout());
152 transport.attach(address, settings.getTimeout(), settings.getTimeout())
    [all...]
  /external/webrtc/webrtc/test/channel_transport/
udp_transport_unittest.cc 112 UdpTransport* transport = UdpTransport::Create(id, threads); local
113 UdpTransport::Destroy(transport);
121 UdpTransport* transport = new UdpTransportImpl(id, local
124 delete transport;
132 UdpTransport* transport = new UdpTransportImpl(id, local
135 EXPECT_EQ(0, transport->InitializeSourcePorts(4711, 4712));
138 delete transport;
  /development/tools/axl/
axl.py 37 return self.transport.write(data)
44 self.transport.setTcpNoDelay(1) # send immediately
64 self.transport.loseConnection()
71 self.transport.loseConnection()
88 self.transport.loseConnection()
100 self.transport.loseConnection()
109 self.transport.loseConnection()
117 self.transport.loseConnection()
126 self.transport.loseConnection()
141 self.transport.loseConnection(
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageProcessor.java 45 * the given transport.
86 * The transport where I am listening
88 protected String transport; field in class:MessageProcessor
102 protected MessageProcessor( String transport ) {
103 this.transport = transport;
111 * @param transport -- transport to use for the message processor (UDP/TCP/TLS).
113 protected MessageProcessor( InetAddress ipAddress, int port, String transport,
115 this( transport );
    [all...]
  /external/webrtc/webrtc/p2p/base/
transportcontroller.cc 155 Transport* transport = GetOrCreateTransport_w(transport_name); local
156 TransportChannelImpl* channel = transport->CreateChannel(component);
194 Transport* transport = GetTransport_w(transport_name); local
195 transport->DestroyChannel(component);
196 // Just as we create a Transport when its first channel is created,
198 if (!transport->HasChannels()) {
210 Transport* TransportController::CreateTransport_w(
214 Transport* transport = new DtlsTransport<P2PTransport> local
278 Transport* transport = GetTransport_w(transport_name); local
410 Transport* transport = GetTransport_w(transport_name); local
429 Transport* transport = GetTransport_w(transport_name); local
453 Transport* transport = GetTransport_w(transport_name); local
467 Transport* transport = GetTransport_w(transport_name); local
478 Transport* transport = GetTransport_w(transport_name); local
    [all...]
  /bionic/libc/kernel/uapi/scsi/
scsi_netlink.h 28 uint8_t transport; member in struct:scsi_nl_hdr
50 #define INIT_SCSI_NL_HDR(hdr,t,mtype,mlen) { (hdr)->version = SCSI_NL_VERSION; (hdr)->transport = t; (hdr)->magic = SCSI_NL_MAGIC; (hdr)->msgtype = mtype; (hdr)->msglen = mlen; }
  /external/kernel-headers/original/uapi/scsi/
scsi_netlink.h 3 * SCSI Transport Netlink Interface
4 * Used for the posting of outbound SCSI transport events
33 /* Single Netlink Message type to send all SCSI Transport messages */
36 /* SCSI Transport Broadcast Groups */
45 uint8_t transport; member in struct:scsi_nl_hdr
57 /* scsi_nl_hdr->transport value */
62 /* Transport-based scsi_nl_hdr->msgtype values are defined in each transport */
117 (hdr)->transport = t; \
  /external/ltp/testcases/network/stress/ns-tools/
output_ipsec_conf 72 mode: transport / tunnel
151 transport)
154 -P $direct1 ipsec $protocol/transport//use ;
157 -P $direct2 ipsec $protocol/transport//use ;
  /external/nist-sip/java/gov/nist/javax/sip/
ListeningPointImpl.java 60 protected String transport; field in class:ListeningPointImpl
88 * @param transport transport
91 public static String makeKey(String host, int port, String transport) {
96 .append(transport)
106 return makeKey(this.getIPAddress(), port, transport);
131 String transport) {
135 this.transport = transport;
141 * started. The transport is set to null
    [all...]

Completed in 510 milliseconds

1 2 3 4 5 6 7 891011>>