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

1 2 3 4 5 6 7 8 91011>>

  /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/libhidl/
update-makefiles.sh 14 hidl-gen -Landroidbp -r android.hidl:system/libhidl/transport $package
  /external/adhd/cras/src/server/
cras_bt_endpoint.c 24 " <arg name=\"transport\" type=\"o\" direction=\"in\"/>\n" \
46 if (!endpoint->transport)
49 endpoint->suspend(endpoint, endpoint->transport);
51 cras_bt_transport_set_endpoint(endpoint->transport, NULL);
52 endpoint->transport = NULL;
63 struct cras_bt_transport *transport; local
86 transport = cras_bt_transport_get(transport_path);
87 if (transport) {
88 cras_bt_transport_update_properties(transport,
92 transport = cras_bt_transport_create(conn, transport_path)
194 struct cras_bt_transport *transport; local
    [all...]
  /external/ltp/testcases/network/virt/
macsec01.sh 38 IPSEC_MODE=transport
macsec02.sh 38 IPSEC_MODE=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/services/backup/java/com/android/server/backup/params/
ClearParams.java 22 import com.android.server.backup.transport.TransportClient;
  /frameworks/base/services/backup/java/com/android/server/backup/transport/
TransportUtils.java 17 package com.android.server.backup.transport;
30 /** Utility methods for transport-related operations. */
35 * Throws {@link TransportNotAvailableException} if {@param transport} is null. The semantics is
36 * similar to a {@link DeadObjectException} coming from a dead transport binder.
38 public static IBackupTransport checkTransportNotNull(@Nullable IBackupTransport transport)
40 if (transport == null) {
41 log(Priority.ERROR, TAG, "Transport not available");
44 return transport;
TransportClient.java 17 package com.android.server.backup.transport;
19 import static com.android.server.backup.transport.TransportUtils.formatMessage;
45 import com.android.server.backup.transport.TransportUtils.Priority;
63 * responsible for only one connection to the transport service, not more.
68 * IBackupTransport} instance. It's meant to be passed around as a token to a connected transport.
155 * Attempts to connect to the transport (if needed).
158 * bound. You go from nothing to bound, then to bound and connected. To have a usable transport
160 * usable transport binder regardless of the state of the object, it may already be connected,
170 * call. However, the {@param IBackupTransport} parameter, the transport binder, is not
173 * The reasons for a null transport binder are
361 IBackupTransport transport = connect(caller); local
380 IBackupTransport transport = mTransport; local
421 IBackupTransport transport = IBackupTransport.Stub.asInterface(binder); local
514 String transport = mTransportComponent.flattenToShortString(); local
    [all...]
  /art/runtime/jdwp/
jdwp_options_test.cc 27 * "Example: -Xrunjdwp:transport=dt_socket,address=8000,server=y\n"
30 const char *opt_args = "transport=dt_socket,address=8000,server=y";
33 EXPECT_EQ(opt.transport, JdwpTransportType::kJdwpTransportSocket);
41 * Example: transport=dt_socket,address=localhost:6500,server=n
44 const char *opt_args = "transport=dt_socket,address=localhost:6500,server=y";
47 EXPECT_EQ(opt.transport, JdwpTransportType::kJdwpTransportSocket);
56 * Example: transport=dt_android_adb,server=n,suspend=y;
59 const char *opt_args = "transport=dt_android_adb,server=y";
62 EXPECT_EQ(opt.transport, JdwpTransportType::kJdwpTransportAndroidAdb);
75 EXPECT_FALSE(ParseJdwpOptions("transport=dt_android_adb,server=n", &opt))
    [all...]
  /frameworks/base/core/java/android/app/backup/
IBackupManager.aidl 148 * transport will still be asked to confirm via the usual requestBackupTime()
191 * transport.
225 * Update the attributes of the transport identified by {@code transportComponent}. If the
226 * specified transport has not been bound at least once (for registration), this call will be
227 * ignored. Only the host process of the transport can change its description, otherwise a
230 * @param transportComponent The identity of the transport being described.
231 * @param name A {@link String} with the new name for the transport. This is NOT for
234 * {@link Context#startActivity} in order to launch the transport's configuration UI. It may
235 * be {@code null} if the transport does not offer any user-facing configuration UI.
237 * transport is currently sending data. MUST NOT be {@code null}
    [all...]
  /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...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
ImapConnection.java 47 private MailTransport transport; field in class:ImapConnection
95 if (transport != null && transport.isOpen()) {
100 // copy configuration into a clean transport, if necessary
101 if (transport == null) {
102 transport = imapStore.cloneTransport();
105 transport.open();
158 if (transport != null) {
160 transport.close();
161 transport = null
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_subprocess.py 47 transport = TestSubprocessTransport(
50 return (transport, protocol)
54 transport, protocol = self.create_transport(waiter)
55 transport._process_exited(6)
58 self.assertEqual(transport.get_returncode(), 6)
65 self.assertFalse(transport.is_closing())
66 self.assertIsNone(transport._loop)
67 self.assertIsNone(transport._proc)
68 self.assertIsNone(transport._protocol)
72 transport.send_signal, signal.SIGTERM
    [all...]
  /external/adhd/cras/src/tests/
bt_profile_unittest.cc 35 struct cras_bt_transport *transport);
37 struct cras_bt_transport *transport);
140 struct cras_bt_transport *transport)
142 profile_new_connection_arg_value = transport;
147 struct cras_bt_transport *transport)
149 profile_request_disconnection_arg_value = transport;
176 void cras_bt_transport_destroy(struct cras_bt_transport *transport)
  /external/python/cpython3/Lib/asyncio/
subprocess.py 40 def connection_made(self, transport):
41 self._transport = transport
43 stdout_transport = transport.get_pipe_transport(1)
50 stderr_transport = transport.get_pipe_transport(2)
57 stdin_transport = transport.get_pipe_transport(0)
108 def __init__(self, transport, protocol, loop):
109 self._transport = transport
115 self.pid = transport.get_pid()
164 transport = self._transport.get_pipe_transport(fd)
177 transport.close(
    [all...]
  /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;
98 * more sense to a host then pass it to the transport.
104 AbsTransport transport = bridge.getTransport(); local
114 if (transport == null || !transport.isSessionOpen()) {
121 transport.write('/');
125 transport.write(0x09);
131 transport.write('/');
135 transport.write(0x09);
143 if (keyCode == KeyEvent.KEYCODE_BACK && transport != null)
    [all...]
Relay.java 25 import org.connectbot.transport.AbsTransport;
50 private AbsTransport transport; field in class:Relay
64 public Relay(TerminalBridge bridge, AbsTransport transport, vt320 buffer, String encoding) {
67 this.transport = transport;
124 bytesRead = transport.read(byteArray, offset, bytesToRead);
  /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/core/liblog/
logger_write.c 137 struct android_log_transport_write* transport; local
156 write_transport_for_each(transport, &__android_log_persist_write) {
157 if (transport->close) {
158 (*transport->close)();
162 write_transport_for_each(transport, &__android_log_transport_write) {
163 if (transport->close) {
164 (*transport->close)();
195 struct android_log_transport_write* transport; local
200 write_transport_for_each_safe(transport, n, &__android_log_transport_write) {
201 __android_log_cache_available(transport);
    [all...]
  /frameworks/base/services/robotests/src/com/android/server/backup/internal/
PerformInitializeTaskTest.java 50 import com.android.server.backup.transport.TransportClient;
221 configureTransport(transportMocks.get(0).transport, TRANSPORT_ERROR, 0);
222 configureTransport(transportMocks.get(1).transport, TRANSPORT_OK, TRANSPORT_OK);
228 verify(transportMocks.get(1).transport).initializeDevice();
239 configureTransport(transportMocks.get(0).transport, TRANSPORT_OK, TRANSPORT_OK);
240 configureTransport(transportMocks.get(1).transport, TRANSPORT_OK, TRANSPORT_OK);
241 configureTransport(transportMocks.get(2).transport, TRANSPORT_OK, TRANSPORT_OK);
257 TransportData transport = transportsIterator.next(); local
258 verify(mTransportManager).getTransportClient(eq(transport.transportName), any());
270 configureTransport(transportMocks.get(0).transport, TRANSPORT_ERROR, 0)
330 IBackupTransport transport = transportMock.transport; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-spi/1.0.2.v20150114/
aether-spi-1.0.2.v20150114.jar 
  /system/bt/bta/gatt/
bta_gattc_utils.cc 84 tBTA_TRANSPORT transport) {
90 p_clcb->transport == transport && p_clcb->bda == remote_bda)
125 tBTA_TRANSPORT transport) {
137 p_clcb->transport = transport;
170 tBTA_TRANSPORT transport) {
173 p_clcb = bta_gattc_find_clcb_by_cif(client_if, remote_bda, transport);
175 p_clcb = bta_gattc_clcb_alloc(client_if, remote_bda, transport);
372 tGATT_TRANSPORT transport; local
    [all...]

Completed in 506 milliseconds

1 2 3 4 5 6 7 8 91011>>