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

<<11121314151617181920>>

  /frameworks/base/services/backup/java/com/android/server/backup/
TransportManager.java 41 import com.android.server.backup.transport.OnTransportRegisteredListener;
42 import com.android.server.backup.transport.TransportClient;
43 import com.android.server.backup.transport.TransportClientManager;
44 import com.android.server.backup.transport.TransportConnectionListener;
45 import com.android.server.backup.transport.TransportNotAvailableException;
46 import com.android.server.backup.transport.TransportNotRegisteredException;
47 import com.android.server.backup.transport.TransportStats;
72 * Lock for registered transports and currently selected transport.
74 * <p><b>Warning:</b> No calls to {@link IBackupTransport} or calls that result in transport
112 /* Sets a listener to be called whenever a transport is registered. *
601 final IBackupTransport transport; local
    [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 226 bt_status_t btif_dm_create_bond(const RawAddress* bd_addr, int transport);
238 const RawAddress* bd_addr, int transport,
350 * Description Start SDP to get remote services by transport
356 int transport);
  /system/bt/stack/gatt/
gatt_attr.cc 52 tBT_TRANSPORT transport);
124 const RawAddress& bda, tBT_TRANSPORT transport) {
130 if (p_clcb->in_use && p_clcb->transport == transport && p_clcb->connected &&
161 p_clcb->transport = tranport;
244 tBT_TRANSPORT transport) {
249 gatt_profile_find_clcb_by_bd_addr(bda, transport);
436 tBT_TRANSPORT transport) {
438 gatt_profile_find_clcb_by_bd_addr(remote_bda, transport);
441 p_clcb = gatt_profile_clcb_alloc(0, remote_bda, transport);
    [all...]
  /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/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/python/cpython3/Lib/asyncio/
protocols.py 14 write-only transport like write pipe
17 def connection_made(self, transport):
20 The argument is the transport representing the pipe connection.
34 """Called when the transport's buffer goes over the high-water mark.
56 """Called when the transport's buffer drains below the low-water mark.
69 When the user wants to requests a transport, they pass a protocol
73 called with a suitable transport object. Then data_received()
75 transport; finally, connection_lost() will be called exactly once
97 If this returns a false value (including None), the transport
99 transport is up to the protocol
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/transport/
AbsTransport.java 18 package org.connectbot.transport;
33 * Causes transport to connect to the target host. After connecting but before a session is
40 * Reads from the transport. Transport must support reading into a the byte array
57 * Writes to the transport. If the host is not yet connected, simply return without doing
61 * bytes to write to transport
68 * Writes to the transport. See {@link #write(byte[])} for behavior details.
71 * character to write to the transport
78 * Flushes the write commands to the transport.
92 * 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/core/java/android/bluetooth/
BluetoothDevice.java 643 * No preferrence of physical transport for GATT connections to remote dual-mode devices
648 * Prefer BR/EDR transport for GATT connections to remote dual-mode devices
653 * Prefer LE transport for GATT connections to remote dual-mode devices
    [all...]
  /system/bt/stack/l2cap/
l2c_link.cc 274 UNUSED_ATTR tBT_TRANSPORT transport, void* p_ref_data,
276 l2c_link_sec_comp2(*p_bda, transport, p_ref_data, status);
280 UNUSED_ATTR tBT_TRANSPORT transport, void* p_ref_data,
297 p_lcb = l2cu_find_lcb_by_bd_addr(p_bda, transport);
347 tBT_TRANSPORT transport = BT_TRANSPORT_BR_EDR; local
367 if (p_lcb->transport == BT_TRANSPORT_LE)
387 if (p_lcb->transport == BT_TRANSPORT_BR_EDR)
407 transport = p_lcb->transport;
410 if (p_lcb->transport == BT_TRANSPORT_LE)
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
TerminalBridge.java 53 import org.connectbot.transport.AbsTransport;
83 private AbsTransport transport; field in class:TerminalBridge
155 transport = null;
174 transport = t;
222 if (b != null && transport != null) {
223 transport.write(b);
233 if (transport != null) {
234 transport.write(b);
280 transport.setBridge(this);
281 transport.setManager(manager)
    [all...]
  /external/curl/docs/examples/
rtsp.c 111 static void rtsp_setup(CURL *curl, const char *uri, const char *transport)
115 printf(" TRANSPORT %s\n", transport);
117 my_curl_easy_setopt(curl, CURLOPT_RTSP_TRANSPORT, transport);
185 const char *transport = "RTP/AVP;unicast;client_port=1234-1235"; /* UDP */ local
188 const char *transport = "RTP/AVP/TCP;unicast;client_port=1234-1235";
210 printf("Usage: %s url [transport]\n", base_name);
212 printf(" transport (optional) specifier for media stream"
214 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_;
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/webrtc/webrtc/test/
direct_transport.cc 77 bool DirectTransport::NetworkProcess(void* transport) {
78 return static_cast<DirectTransport*>(transport)->SendPackets();
  /packages/services/Car/tests/obd2_test/src/com/android/car/obd2/test/
Obd2CommandTest.java 55 MockObd2UnderlyingTransport transport = local
63 Obd2Connection obd2Connection = new Obd2Connection(transport);
83 MockObd2UnderlyingTransport transport = local
91 Obd2Connection obd2Connection = new Obd2Connection(transport);
111 MockObd2UnderlyingTransport transport = local
119 Obd2Connection obd2Connection = new Obd2Connection(transport);
139 MockObd2UnderlyingTransport transport = local
147 Obd2Connection obd2Connection = new Obd2Connection(transport);
  /prebuilts/jdk/jdk8/linux-x86/bin/
java-rmi.cgi 34 # the class "sun.rmi.transport.proxy.CGIHandler". It should be
74 sun.rmi.transport.proxy.CGIHandler
  /system/core/adb/
socket.h 96 atransport* transport = nullptr; member in struct:asocket
107 asocket* create_local_service_socket(const char* destination, atransport* transport);
  /system/libvintf/include/vintf/
ManifestHal.h 59 inline Transport transport() const { function in struct:android::vintf::ManifestHal
60 return transportArch.transport;
  /test/vts/script/
setup-local.sh 76 hidl-gen -o ${ANDROID_BUILD_TOP}/output -L vts -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.camera.provider@2.4
77 hidl-gen -o ${ANDROID_BUILD_TOP}/output -L vts -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.camera.common@1.0
78 hidl-gen -o ${ANDROID_BUILD_TOP}/output -L vts -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.camera.device@1.0
79 hidl-gen -o ${ANDROID_BUILD_TOP}/output -L vts -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.camera.device@3.2
80 hidl-gen -o ${ANDROID_BUILD_TOP}/output -L vts -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.camera.metadata@3.2
81 hidl-gen -o ${ANDROID_BUILD_TOP}/output -L vts -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.gnss@1.0
82 hidl-gen -o ${ANDROID_BUILD_TOP}/output -L vts -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.nfc@1.0
83 hidl-gen -o ${ANDROID_BUILD_TOP}/output -L vts -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.vr@1.0
84 hidl-gen -o ${ANDROID_BUILD_TOP}/output -L vts -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.automotive.vehicle@2.0
85 hidl-gen -o ${ANDROID_BUILD_TOP}/output -L vts -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.automotive.vehicle@2.
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/internal/
PerformInitializeTask.java 35 import com.android.server.backup.transport.TransportClient;
43 * {@link BackupTransport#finishBackup()} for the transport names passed in with the intent of
44 * wiping backup data from the transport.
46 * If the transport returns error, it will record the operation as pending and schedule it to run in
124 Slog.i(TAG, "Initializing (wiping) backup transport storage: " + transportName);
131 IBackupTransport transport = transportClient.connectOrThrow(callerLogString); local
132 int status = transport.initializeDevice();
135 status = transport.finishBackup();
151 Slog.e(TAG, "Transport error in initializeDevice()");
158 long delay = transport.requestBackupTime()
    [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 

Completed in 1426 milliseconds

<<11121314151617181920>>