HomeSort by relevance Sort by last modified time
    Searched defs:transport (Results 26 - 45 of 45) sorted by null

12

  /external/opencore/protocols/rtsp_parcom/src/
rtsp_par_com_message.h 61 // RTSPTransport transport;
62 RtspTransport transport[RTSP_MAX_NUMBER_OF_TRANSPORT_ENTRIES]; member in class:RTSPGenericMessage
  /external/webkit/WebKit/chromium/src/
WebDevToolsAgentImpl.cpp 557 IORPCDelegate transport; local
558 ProfilerAgentDelegateStub stub(&transport);
  /packages/apps/Email/src/com/android/email/mail/transport/
MailTransport.java 17 package com.android.email.mail.transport;
22 import com.android.email.mail.Transport;
46 * This class implements the common aspects of "transport", one layer below the
49 public class MailTransport implements Transport {
81 * Get a new transport, using an existing one as a model. The new transport is configured as if
83 * @return a new Transport ready to open()
85 public Transport newInstanceWithConfiguration() {
139 return mConnectionSecurity == Transport.CONNECTION_SECURITY_TLS;
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
MockTransport.java 17 package com.android.email.mail.transport;
19 import com.android.email.mail.Transport;
34 * This is a mock Transport that is used to test protocols that use MailTransport.
36 public class MockTransport implements Transport {
131 * Tell the Mock Transport that we expect it to be closed. This will preserve
150 return (mConnectionSecurity == Transport.CONNECTION_SECURITY_TLS);
201 public Transport newInstanceWithConfiguration() {
299 SmtpSenderUnitTests.assertTrue("Don't call setUri on a mock transport", false);
  /external/bluetooth/bluez/audio/
ipctest.c 98 int transport; member in struct:userdata
113 .transport = BT_CAPABILITIES_TRANSPORT_A2DP,
248 if (u->transport != codec.transport) {
253 if (u->transport == BT_CAPABILITIES_TRANSPORT_SCO) {
267 } else if (u->transport == BT_CAPABILITIES_TRANSPORT_A2DP) {
315 msg.getcaps_req.transport = u->transport;
389 assert(u->transport == BT_CAPABILITIES_TRANSPORT_A2DP);
586 msg.open_req.seid = u->transport == BT_CAPABILITIES_TRANSPORT_A2DP
    [all...]
ipc.h 24 Message sequence chart of streaming sequence for A2DP transport
120 uint8_t transport; /* Requested transport */ member in struct:bt_get_capabilities_req
185 uint8_t transport; member in struct:__anon863
251 uint16_t link_mtu; /* Max length that transport supports */
pcm_bluetooth.c 112 uint8_t transport; /* Requested transport */ member in struct:bluetooth_alsa_config
133 int transport; /* chosen transport SCO or AD2P */ member in struct:bluetooth_data
134 unsigned int link_mtu; /* MTU for selected transport channel */
395 if (data->transport == BT_CAPABILITIES_TRANSPORT_A2DP) {
467 req->codec.transport = BT_CAPABILITIES_TRANSPORT_SCO;
482 data->transport = BT_CAPABILITIES_TRANSPORT_SCO;
734 req->codec.transport = BT_CAPABILITIES_TRANSPORT_A2DP;
748 data->transport = BT_CAPABILITIES_TRANSPORT_A2DP
    [all...]
  /external/bluetooth/bluez/tools/
bccmd.c 62 static inline int transport_open(int transport, char *device)
64 switch (transport) {
78 fprintf(stderr, "Unsupported transport\n");
83 static inline int transport_read(int transport, uint16_t varid, uint8_t *value, uint16_t length)
85 switch (transport) {
104 static inline int transport_write(int transport, uint16_t varid, uint8_t *value, uint16_t length)
106 switch (transport) {
125 static inline void transport_close(int transport)
127 switch (transport) {
240 static int cmd_builddef(int transport, int argc, char *argv[]
1147 int i, err, opt, transport = CSR_TRANSPORT_HCI; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransfer.java 263 * The only way to unblock is to tear down lower transport
372 * The transfer already has session and transport setup, just start it
455 if (V) Log.v(TAG, "Create Client session with transport " + mTransport.toString());
664 TestTcpTransport transport; local
665 transport = new TestTcpTransport(s);
670 transport = null;
674 transport = null;
679 if (D) Log.d(TAG, "Send transport message " + transport.toString());
680 mSessionHandler.obtainMessage(RFCOMM_CONNECTED, transport).sendToTarget()
698 BluetoothOppRfcommTransport transport; local
    [all...]
  /system/core/adb/
adb.c 91 { "transport", TRACE_TRANSPORT },
442 s->transport = l->transport;
468 if (l->transport) {
469 remove_transport_disconnect(l->transport, &l->disconnect);
509 static int remove_listener(const char *local_name, const char *connect_to, atransport* transport)
516 l->transport && l->transport == transport) {
518 listener_disconnect(l, transport);
961 atransport *transport = NULL; local
1107 atransport *transport; local
    [all...]
adb.h 127 atransport *transport; member in struct:asocket
132 ** will be called whenever a transport is disconnected (e.g. by the user)
134 ** transport (e.g. remote sockets, listeners, etc...)
145 /* a transport object models the connection to a remote device or emulator
146 ** there is one transport per connected device/emulator. a "local transport"
147 ** connects through TCP (for the emulator), while a "usb transport" through
150 ** note that kTransportHost doesn't really correspond to a real transport
187 /* a list of adisconnect callbacks called when the transport is kicked */
212 atransport *transport; member in struct:alistener
    [all...]
transport.c 181 D("failed to read packet from transport socket on fd %d\n", fd);
207 fatal_errno("Transport is null");
208 D("Transport is null \n");
212 fatal_errno("cannot enqueue packet on transport socket");
216 /* The transport is opened by transport_register_func before
221 ** of transport IO failure, the output thread will post a
224 ** The transport will not actually be closed until both
225 ** threads exit, but the input thread will kick the transport
234 D("from_remote: starting thread for transport %p, on fd %d\n", t, t->fd );
236 D("from_remote: transport %p SYNC online (%d)\n", t, t->sync_token + 1)
493 atransport *transport; member in struct:tmsg
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebChromeClientTest.java 455 WebView.WebViewTransport transport = (WebView.WebViewTransport) resultMsg.obj; local
456 transport.setWebView(childView);
  /frameworks/base/location/java/android/location/
LocationManager.java 706 ListenerTransport transport = mListeners.get(listener); local
707 if (transport == null) {
708 transport = new ListenerTransport(listener, looper);
710 mListeners.put(listener, transport);
711 mService.requestLocationUpdates(provider, minTime, minDistance, transport);
806 ListenerTransport transport = mListeners.remove(listener); local
807 if (transport != null) {
808 mService.removeUpdates(transport);
1256 GpsStatusListenerTransport transport = new GpsStatusListenerTransport(listener); local
1276 GpsStatusListenerTransport transport = mGpsStatusListeners.remove(listener); local
1302 GpsStatusListenerTransport transport = new GpsStatusListenerTransport(listener); local
1322 GpsStatusListenerTransport transport = mNmeaListeners.remove(listener); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 436 BluetoothPbapRfcommTransport transport = new BluetoothPbapRfcommTransport(mConnSocket); local
437 mServerSession = new ServerSession(transport, mPbapServer, mAuth);
  /packages/apps/Email/tests/src/com/android/email/mail/store/
Pop3StoreUnitTests.java 25 import com.android.email.mail.Transport;
31 import com.android.email.mail.transport.MockTransport;
356 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
399 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
441 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
484 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
536 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
583 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
642 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
689 * Test the scenario where the transport is "open" but not really (e.g. server closed). Tw
    [all...]
  /external/dbus/dbus/
dbus-connection.c 29 #include "dbus-transport.h"
94 * message transport mechanism such as a socket. The connection
254 DBusTransport *transport; /**< Object that sends/receives messages over network. */ member in struct:DBusConnection
287 unsigned int io_path_acquired : 1; /**< Someone has transport io path (can use the transport to read/write messages) */
450 _dbus_assert (_dbus_transport_get_is_authenticated (connection->transport));
537 * messages have been written to the underlying transport
1662 DBusTransport *transport; local
    [all...]
  /frameworks/base/core/java/android/webkit/
CallbackProxy.java 1108 WebView.WebViewTransport transport = mWebView.new WebViewTransport(); local
    [all...]
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java 174 // Transport bookkeeping
182 public IBackupTransport transport; field in class:BackupManagerService.RestoreGetSetsParams
188 transport = _transport;
195 public IBackupTransport transport; field in class:BackupManagerService.RestoreParams
203 transport = _transport;
211 transport = _transport;
220 public IBackupTransport transport; field in class:BackupManagerService.ClearParams
224 transport = _transport;
259 HashSet<String> mPendingInits = new HashSet<String>(); // transport names
276 IBackupTransport transport = getTransport(mCurrentTransport) local
692 IBackupTransport transport = getTransport(transportName); local
1090 IBackupTransport transport = mTransports.get(transportName); local
1948 IBackupTransport transport = getTransport(transportName); local
2285 Settings.Secure.BACKUP_TRANSPORT, transport); local
    [all...]
  /external/opencore/protocols/systems/3g-324m_pvterminal/h245/cmn/include/
h245def.h 2178 struct _DataProtocolCapability transport; member in struct:_GenericCapability
    [all...]

Completed in 1076 milliseconds

12