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

1 23 4 5 6 7 8 91011>>

  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
Relay.java 25 import org.connectbot.transport.AbsTransport;
51 private AbsTransport transport; field in class:Relay
65 public Relay(TerminalBridge bridge, AbsTransport transport, vt320 buffer, String encoding) {
68 this.transport = transport;
125 bytesRead = transport.read(byteArray, offset, bytesToRead);
TerminalBridge.java 53 import org.connectbot.transport.AbsTransport;
85 private AbsTransport transport; field in class:TerminalBridge
157 transport = null;
176 transport = t;
224 if (b != null && transport != null) {
225 transport.write(b);
235 if (transport != null) {
236 transport.write(b);
282 transport.setBridge(this);
283 transport.setManager(manager)
    [all...]
  /frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/
MavenDependencyCollectorTask.groovy 34 import org.eclipse.aether.spi.connector.transport.TransporterFactory
35 import org.eclipse.aether.transport.file.FileTransporterFactory
36 import org.eclipse.aether.transport.http.HttpTransporterFactory
  /system/bt/btif/include/
btif_api.h 227 bt_status_t btif_dm_create_bond(const bt_bdaddr_t *bd_addr, int transport);
238 bt_status_t btif_dm_create_bond_out_of_band(const bt_bdaddr_t *bd_addr, int transport,
350 ** Description Start SDP to get remote services by transport
355 bt_status_t btif_dm_get_remote_services_by_transport(bt_bdaddr_t *remote_addr, int transport);
btif_gatt_util.h 36 void btif_gatt_check_encrypted_link(BD_ADDR bd_addr, tBTA_GATT_TRANSPORT transport);
  /cts/tests/tests/provider/src/android/provider/cts/
ProviderTestUtils.java 67 static String setBackupTransport(String transport, UiAutomation uiAutomation) throws Exception {
68 String output = executeShellCommand("bmgr transport " + transport, uiAutomation);
74 throw new Exception("non-parsable output setting bmgr transport: " + output);
94 static boolean hasBackupTransport(String transport, UiAutomation uiAutomation)
101 } else if (Objects.equals(transport, t)) {
  /external/dbus/dbus/
dbus-server-debug-pipe.h 29 #include <dbus/dbus-transport-protected.h>
dbus-transport-unix.c 2 /* dbus-transport-unix.c UNIX socket subclasses of DBusTransport
30 #include "dbus-transport-unix.h"
31 #include "dbus-transport-socket.h"
32 #include "dbus-transport-protected.h"
46 * Creates a new transport for the given Unix domain socket
47 * path. This creates a client-side of a transport.
55 * @returns a new transport, or #NULL on failure.
63 DBusTransport *transport; local
96 transport = _dbus_transport_new_for_socket (fd, NULL, &address);
97 if (transport == NULL
131 DBusTransport *transport; local
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/
ServiceConnection.java 22 package org.ksoap2.transport;
28 * Interface to allow the abstraction of the raw transport information
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
KeepAliveHttpsTransportSE.java 9 package org.ksoap2.transport;
16 * might be useful in SE environments as well and can be used as an example to create your own transport
42 * Get a service connection. Returns an implementation of {@link org.ksoap2.transport.ServiceConnectionSE} that
45 * @see org.ksoap2.transport.HttpTransportSE#getServiceConnection()
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/transport/
AbsTransport.java 18 package org.connectbot.transport;
35 * Causes transport to connect to the target host. After connecting but before a session is
42 * Reads from the transport. Transport must support reading into a the byte array
59 * Writes to the transport. If the host is not yet connected, simply return without doing
63 * bytes to write to transport
70 * Writes to the transport. See {@link #write(byte[])} for behavior details.
73 * character to write to the transport
80 * Flushes the write commands to the transport.
94 * Tells the transport what dimensions the display is currentl
    [all...]
  /external/webrtc/webrtc/voice_engine/
voe_network_impl.h 22 int RegisterExternalTransport(int channel, Transport& transport) override;
  /packages/apps/Email/src/com/android/email/mail/transport/
StatusOutputStream.java 17 package com.android.email.mail.transport;
  /frameworks/base/location/java/android/location/
LocationManager.java 869 ListenerTransport transport = mListeners.get(listener); local
884 ListenerTransport transport = wrapListener(listener, looper); local
906 ListenerTransport transport; local
1675 GnssStatusListenerTransport transport = new GnssStatusListenerTransport(listener); local
1696 GnssStatusListenerTransport transport = mGpsStatusListeners.remove(listener); local
1739 GnssStatusListenerTransport transport = local
1760 GnssStatusListenerTransport transport = mOldGnssStatusListeners.remove(callback); local
1801 GnssStatusListenerTransport transport = local
1821 GnssStatusListenerTransport transport = mGnssStatusListeners.remove(callback); local
1850 GnssStatusListenerTransport transport = new GnssStatusListenerTransport(listener); local
1871 GnssStatusListenerTransport transport = mGpsNmeaListeners.remove(listener); local
1915 GnssStatusListenerTransport transport = local
1936 GnssStatusListenerTransport transport = mOldGnssNmeaListeners.remove(listener); local
1978 GnssStatusListenerTransport transport = local
1998 GnssStatusListenerTransport transport = mGnssNmeaListeners.remove(listener); local
    [all...]
  /system/bt/stack/l2cap/
l2c_link.c 300 void l2c_link_sec_comp (BD_ADDR p_bda, tBT_TRANSPORT transport, void *p_ref_data, UINT8 status)
308 UNUSED(transport);
319 p_lcb = l2cu_find_lcb_by_bd_addr (p_bda, transport);
375 tBT_TRANSPORT transport = BT_TRANSPORT_BR_EDR; local
399 if (p_lcb->transport == BT_TRANSPORT_LE)
423 if (p_lcb->transport == BT_TRANSPORT_BR_EDR)
436 transport = p_lcb->transport;
439 if (p_lcb->transport == BT_TRANSPORT_LE)
442 btm_acl_removed (p_lcb->remote_bd_addr, p_lcb->transport);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/client/
fetch_descriptor.py 34 from protorpc import transport namespace
82 http_transport = transport.HttpTransport(registry_url, protocol=protojson)
  /external/curl/docs/examples/
rtsp.c 105 static void rtsp_setup(CURL *curl, const char *uri, const char *transport)
109 printf(" TRANSPORT %s\n", transport);
111 my_curl_easy_setopt(curl, CURLOPT_RTSP_TRANSPORT, transport);
175 const char *transport = "RTP/AVP;unicast;client_port=1234-1235"; /* UDP */ local
177 const char *transport = "RTP/AVP/TCP;unicast;client_port=1234-1235"; /* TCP */
198 printf("Usage: %s url [transport]\n", base_name);
200 printf(" transport (optional) specifier for media stream protocol\n");
201 printf(" default transport: %s\n", transport);
    [all...]
  /external/libbrillo/brillo/http/
http_connection.h 26 // It abstracts the implementation of underlying transport library (ex libcurl).
30 // Transport::CreateConnection() for more details). But most implementations
36 // the transport-specific instance of the communication channel with the
37 // destination server. It is created by Transport as part of initiating
46 explicit Connection(const std::shared_ptr<Transport>& transport)
47 : transport_(transport) {}
98 // the Transport-derived class for their own needs as well.
99 std::shared_ptr<Transport> transport_;
  /external/webrtc/webrtc/test/
direct_transport.cc 77 bool DirectTransport::NetworkProcess(void* transport) {
78 return static_cast<DirectTransport*>(transport)->SendPackets();
  /system/core/adb/
transport_test.cpp 17 #include "transport.h"
38 // the transport mutex before it is used in the tests. Alternatives would be to
44 TEST(transport, kick_transport) {
54 // A transport can only be kicked once.
65 TEST(transport, RunDisconnects) {
89 TEST(transport, SetFeatures) {
117 TEST(transport, parse_banner_no_features) {
130 TEST(transport, parse_banner_product_features) {
146 TEST(transport, parse_banner_features) {
165 TEST(transport, test_matches_target)
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
Trampoline.java 284 public String selectBackupTransport(String transport) throws RemoteException {
286 return (svc != null) ? svc.selectBackupTransport(transport) : null;
290 public Intent getConfigurationIntent(String transport) throws RemoteException {
292 return (svc != null) ? svc.getConfigurationIntent(transport) : null;
296 public String getDestinationString(String transport) throws RemoteException {
298 return (svc != null) ? svc.getDestinationString(transport) : null;
302 public Intent getDataManagementIntent(String transport) throws RemoteException {
304 return (svc != null) ? svc.getDataManagementIntent(transport) : null;
308 public String getDataManagementLabel(String transport) throws RemoteException {
310 return (svc != null) ? svc.getDataManagementLabel(transport) : null
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/auth/google-auth-library-oauth2-http/0.3.0/
google-auth-library-oauth2-http-0.3.0.jar 
  /system/bt/btif/src/
btif_gatt_server.c 104 btgatt_transport_t transport; member in struct:__anon72247
190 btif_gatt_check_encrypted_link(p_data->conn.remote_bda, p_data->conn.transport);
385 tBTA_GATT_TRANSPORT transport = BTA_GATT_TRANSPORT_LE; local
398 // Determine transport
399 if (p_cb->transport != GATT_TRANSPORT_AUTO)
401 transport = p_cb->transport;
406 transport = BTA_GATT_TRANSPORT_BR_EDR;
410 transport = BTA_GATT_TRANSPORT_LE;
414 if (p_cb->transport == GATT_TRANSPORT_LE
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/wsgi/
service_test.py 30 from protorpc import transport namespace
68 self.connection = transport.HttpTransport(
78 self.connection = transport.HttpTransport(
104 transport = self.CreateTransport(service_url)
105 return registry.RegistryService.Stub(transport)
189 transport.HttpTransport(my_service_url))
191 transport.HttpTransport(my_other_service_url))
  /system/bt/stack/smp/
smp_l2c.c 41 tBT_TRANSPORT transport);
45 tBT_TRANSPORT transport);
92 tBT_TRANSPORT transport)
100 if (transport == BT_TRANSPORT_BR_EDR || memcmp(bd_addr, dummy_bda, BD_ADDR_LEN) == 0)
244 UINT16 reason, tBT_TRANSPORT transport)
251 if (transport != BT_TRANSPORT_BR_EDR)
253 SMP_TRACE_WARNING("%s is called on unexpected transport %d",
254 __func__, transport);

Completed in 906 milliseconds

1 23 4 5 6 7 8 91011>>