HomeSort by relevance Sort by last modified time
    Searched defs:transport (Results 1 - 25 of 234) sorted by null

1 2 3 4 5 6 7 8 910

  /cts/tests/tests/webkit/src/android/webkit/cts/
WebView_WebViewTransportTest.java 39 WebViewTransport transport = webView.new WebViewTransport(); local
41 assertNull(transport.getWebView());
43 transport.setWebView(webView);
44 assertSame(webView, transport.getWebView());
  /frameworks/base/services/backup/java/com/android/server/backup/transport/
OnTransportRegisteredListener.java 17 package com.android.server.backup.transport;
22 * Listener called when a transport is registered with the {@link TransportManager}. Can be set
28 * Called when a transport is successfully registered.
29 * @param transportName The name of the transport.
30 * @param transportDirName The dir name of the transport.
TransportConnectionListener.java 17 package com.android.server.backup.transport;
29 * Called when {@link TransportClient} has a transport binder available or that it decided it
30 * couldn't obtain one, in which case {@param transport} is null.
32 * @param transport A {@link IBackupTransport} transport binder or null.
33 * @param transportClient The {@link TransportClient} used to retrieve this transport binder.
36 @Nullable IBackupTransport transport, TransportClient transportClient);
TransportNotAvailableException.java 17 package com.android.server.backup.transport;
32 super("Transport not available");
TransportNotRegisteredException.java 17 package com.android.server.backup.transport;
25 * Exception thrown when the transport is not registered.
34 super("Transport " + transportName + " not registered");
38 super("Transport for host " + transportComponent + " not registered");
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
HttpsServiceConnectionSEIgnoringConnectionClose.java 2 package 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()
HttpsTransportSE.java 2 package org.ksoap2.transport;
9 * HttpsTransportSE is a simple transport for https protocal based connections. It creates a #HttpsServiceConnectionSE
36 * @see org.ksoap2.transport.HttpsTransportSE#getServiceConnection()
  /external/libxaac/test/
ixheaacd_fileifc.c 37 FileWrapperPtr transport = (FileWrapper *)calloc(1, sizeof(FileWrapper)); local
39 transport->isMp4File = 0;
40 transport->inputFile = NULL;
44 transport->header_given = 0;
45 transport->fileCtxt = 0;
46 transport->mp4Ctxt = 0;
47 transport->interim_buffer = 0;
48 transport->avail_buffer = 0;
50 if ((transport->fileCtxt = it_fopen((void *)fileName, 1, 0)) == NULL) {
51 transport->inputFile = fopen(fileName, "rb")
    [all...]
  /packages/apps/Email/src/com/android/email/mail/transport/
StatusOutputStream.java 17 package com.android.email.mail.transport;
  /system/core/liblog/
config_read.c 30 struct listnode* list, struct android_log_transport_read* transport) {
33 /* Try to keep one functioning transport for each log buffer id */
38 if (!transport->available || ((*transport->available)(i) >= 0)) {
39 list_add_tail(list, &transport->node);
48 (!transport->available || ((*transport->available)(i) >= 0))) {
49 list_add_tail(list, &transport->node);
77 struct android_log_transport_read* transport; local
80 read_transport_for_each_safe(transport, n, &__android_log_transport_read)
    [all...]
config_write.c 30 struct listnode* list, struct android_log_transport_write* transport) {
33 /* Try to keep one functioning transport for each log buffer id */
38 if (!transport->available || ((*transport->available)(i) >= 0)) {
39 list_add_tail(list, &transport->node);
48 (!transport->available || ((*transport->available)(i) >= 0))) {
49 list_add_tail(list, &transport->node);
107 struct android_log_transport_write* transport; local
110 write_transport_for_each_safe(transport, n, &__android_log_transport_write)
    [all...]
  /system/libvintf/include/vintf/
TransportArch.h 22 #include "Transport.h"
28 Transport transport = Transport::EMPTY; member in struct:android::vintf::TransportArch
32 return transport == other.transport && arch == other.arch;
35 if (transport < other.transport) return true;
36 if (transport > other.transport) return false
    [all...]
ManifestHal.h 59 inline Transport transport() const { function in struct:android::vintf::ManifestHal
60 return transportArch.transport;
  /system/netd/server/dns/
DnsTlsDispatcher.h 67 // This lock is static so that it can be used to annotate the Transport struct.
75 // Transport is a thin wrapper around DnsTlsTransport, adding reference counting and
77 struct Transport {
78 Transport(const DnsTlsServer& server, unsigned mark,
80 transport(server, mark, factory) {}
82 DnsTlsTransport transport; member in struct:android::net::DnsTlsDispatcher::Transport
93 std::map<Key, std::unique_ptr<Transport>> mStore GUARDED_BY(sLock);
  /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);
116 logWriter.println("Established transport connection");
134 // thrown), make sure that the transport server socket (if
136 // block the transport port for subsequent JDWP tests.
148 transport.accept(settings.getTimeout(), settings.getTimeout());
152 transport.attach(address, settings.getTimeout(), settings.getTimeout())
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/internal/
PerformClearTask.java 27 import com.android.server.backup.transport.TransportClient;
50 IBackupTransport transport = null; local
59 transport = mTransportClient.connectOrThrow(callerLogString);
60 // Tell the transport to remove all the persistent storage for the app
62 transport.clearBackupData(mPackage);
64 Slog.e(TAG, "Transport threw clearing data for " + mPackage + ": " + e.getMessage());
66 if (transport != null) {
69 transport.finishBackup();
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-transport-file/1.0.2.v20150114/
aether-transport-file-1.0.2.v20150114.jar 
  /external/adhd/cras/src/server/
cras_bt_endpoint.h 28 struct cras_bt_transport *transport);
30 struct cras_bt_transport *transport);
33 struct cras_bt_transport *transport);
35 struct cras_bt_transport *transport; member in struct:cras_bt_endpoint
cras_a2dp_endpoint.c 135 struct cras_bt_transport *transport)
139 device = cras_bt_transport_device(transport);
144 struct cras_bt_transport *transport)
146 struct cras_bt_device *device = cras_bt_transport_device(transport);
151 struct cras_bt_transport *transport)
153 if (connected_a2dp.iodev && transport) {
155 * the transport. */
156 if (cras_bt_transport_fd(transport) != -1 &&
157 cras_bt_transport_state(transport) ==
159 cras_bt_transport_try_acquire(transport);
186 struct cras_bt_transport *transport = cras_a2dp_endpoint.transport; local
    [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...]
  /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...]
  /bionic/libc/kernel/uapi/linux/
vsockmon.h 28 __le16 transport; member in struct:af_vsockmon_hdr
  /external/kernel-headers/original/uapi/linux/
vsockmon.h 15 * | transport header |
22 * The vsockmon header is a transport-independent description of the packet.
23 * It duplicates some of the information from the transport header so that
24 * no transport-specific knowledge is necessary to process packets.
26 * The transport header is useful for low-level transport-specific packet
27 * analysis. Transport type is given in af_vsockmon_hdr->transport and
28 * transport header length is given in af_vsockmon_hdr->len.
31 * transport header. Other ops do not have a payload
40 __le16 transport; \/* enum af_vsockmon_transport *\/ member in struct:af_vsockmon_hdr
    [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

Completed in 2010 milliseconds

1 2 3 4 5 6 7 8 910