HomeSort by relevance Sort by last modified time
    Searched refs:transport (Results 26 - 50 of 400) sorted by null

12 3 4 5 6 7 8 91011>>

  /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_;
  /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);
114 logWriter.println("Established transport connection");
132 transport.stopListening();
134 logWriter.println("IOException in stopping transport listening: " + e);
146 transport.accept(settings.getTimeout(), settings.getTimeout());
150 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;
  /frameworks/base/core/java/android/app/backup/
IBackupManager.aidl 136 * transport will still be asked to confirm via the usual requestBackupTime()
176 * transport.
209 * Identify the currently selected transport. Callers must hold the
221 * Retrieve the list of whitelisted transport components. Callers do </i>not</i> need
224 * @return The names of all whitelisted transport components defined by the system.
229 * Specify the current backup transport. Callers must hold the
232 * @param transport The name of the transport to select. This should be one
234 * @return The name of the previously selected transport. If the given transport
    [all...]
  /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/libbrillo/brillo/http/
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...]
http_connection_fake.cc 20 const std::shared_ptr<http::Transport>& transport)
21 : http::Connection(transport), request_(url, method) {
45 fake::Transport* transport = static_cast<fake::Transport*>(transport_.get()); local
46 CHECK(transport) << "Expecting a fake transport";
47 auto handler = transport->GetHandler(request_.GetURL(), request_.GetMethod());
  /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...]
  /system/core/fastboot/
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...]
  /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 30 uint8_t transport; member in struct:scsi_nl_hdr
57 #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/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/guestbook/client/
main.py 25 from protorpc import transport namespace
32 transport.HttpTransport('http://postservice-demo.appspot.com/postservice'))
  /external/kernel-headers/original/uapi/scsi/
scsi_netlink.h 2 * SCSI Transport Netlink Interface
3 * Used for the posting of outbound SCSI transport events
32 /* Single Netlink Message type to send all SCSI Transport messages */
35 /* SCSI Transport Broadcast Groups */
44 uint8_t transport; member in struct:scsi_nl_hdr
56 /* scsi_nl_hdr->transport value */
61 /* Transport-based scsi_nl_hdr->msgtype values are defined in each transport */
116 (hdr)->transport = t; \
  /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...]
  /external/nist-sip/java/javax/sip/
SipStack.java 12 ListeningPoint createListeningPoint(int port, String transport)
15 String transport) throws TransportNotSupportedException,
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Service.java 19 import com.android.accessorydisplay.common.Transport;
27 * Base implementation of a service that communicates over a transport.
30 * accessed from the {@link Looper} thread on which the transport was created.
33 public abstract class Service implements Transport.Callback {
35 private final Transport mTransport;
38 public Service(Context context, Transport transport, int serviceId) {
40 mTransport = transport;
52 public Transport getTransport() {
  /system/core/adb/
socket.h 99 atransport *transport; member in struct:asocket
111 const atransport* transport);
  /external/webrtc/webrtc/voice_engine/include/
voe_network.h 38 #include "webrtc/transport.h"
58 // Installs and enables a user-defined external transport protocol for a
60 virtual int RegisterExternalTransport(int channel, Transport& transport) = 0;
62 // Removes and disables a user-defined external transport protocol for a
67 // function when external transport is enabled. Note that the data
81 // function when external transport is enabled. Note that the data
  /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...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.transport.ecf_1.1.0.v20130516-1858.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.transport.ecf_1.1.0.v20130516-1858.jar 
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
TerminalKeyListener.java 36 import org.connectbot.transport.AbsTransport;
100 * more sense to a host then pass it to the transport.
106 AbsTransport transport = bridge.getTransport(); local
116 if (transport == null || !transport.isSessionOpen()) {
123 transport.write('/');
127 transport.write(0x09);
133 transport.write('/');
137 transport.write(0x09);
145 if (keyCode == KeyEvent.KEYCODE_BACK && transport != null)
    [all...]
  /system/core/liblog/
logger_write.c 139 struct android_log_transport_write *transport; local
144 write_transport_for_each_safe(transport, n, &__android_log_transport_write) {
145 __android_log_cache_available(transport);
146 if (!transport->logMask) {
147 list_remove(&transport->node);
150 if (!transport->open || ((*transport->open)() < 0)) {
151 if (transport->close) {
152 (*transport->close)();
154 list_remove(&transport->node)
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
Pop3StoreUnitTests.java 25 import com.android.email.mail.transport.MockTransport;
235 mockTransport.expect(null, "-ERR from the Mock Transport.");
377 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
420 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
462 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
505 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
557 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
604 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
663 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
710 * Test the scenario where the transport is "open" but not really (e.g. server closed). Tw
    [all...]
  /system/bt/stack/gatt/
gatt_attr.c 45 tGATT_DISCONN_REASON reason, tBT_TRANSPORT transport);
113 static tGATT_PROFILE_CLCB *gatt_profile_find_clcb_by_bd_addr(BD_ADDR bda, tBT_TRANSPORT transport)
120 if (p_clcb->in_use && p_clcb->transport == transport &&
149 p_clcb->transport = tranport;
234 tBT_TRANSPORT transport)
242 tGATT_PROFILE_CLCB *p_clcb = gatt_profile_find_clcb_by_bd_addr(bda, transport);
245 p_clcb = gatt_profile_clcb_alloc(conn_id, bda, transport);
443 void GATT_ConfigServiceChangeCCC (BD_ADDR remote_bda, BOOLEAN enable, tBT_TRANSPORT transport)
445 tGATT_PROFILE_CLCB *p_clcb = gatt_profile_find_clcb_by_bd_addr (remote_bda, transport);
    [all...]

Completed in 731 milliseconds

12 3 4 5 6 7 8 91011>>