Searched defs:transport (Results 1 - 25 of 93) sorted by relevance

1234

/external/libbrillo/brillo/http/
H A Dhttp_connection.h26 // It abstracts the implementation of underlying transport library (ex libcurl).
36 // the transport-specific instance of the communication channel with the
46 explicit Connection(const std::shared_ptr<Transport>& transport) argument
47 : transport_(transport) {}
H A Dhttp_connection_fake.cc20 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());
18 Connection(const std::string& url, const std::string& method, const std::shared_ptr<http::Transport>& transport) argument
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DKeepAliveHttpsTransportSE.java9 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()
H A DHttpsServiceConnectionSEIgnoringConnectionClose.java2 package org.ksoap2.transport;
H A DHttpsTransportSE.java2 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()
H A DHttpTransportSE.java26 package org.ksoap2.transport;
H A DServiceConnectionSE.java22 package org.ksoap2.transport;
/external/adhd/cras/src/server/
H A Dcras_bt_endpoint.h28 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
H A Dcras_a2dp_endpoint.c135 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);
134 cras_a2dp_set_configuration(struct cras_bt_endpoint *endpoint, struct cras_bt_transport *transport) argument
143 cras_a2dp_suspend(struct cras_bt_endpoint *endpoint, struct cras_bt_transport *transport) argument
150 a2dp_transport_state_changed(struct cras_bt_endpoint *endpoint, struct cras_bt_transport *transport) argument
186 struct cras_bt_transport *transport = cras_a2dp_endpoint.transport; local
[all...]
/external/libxaac/test/
H A Dixheaacd_fileifc.c37 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
83 FileWrapper_Read(FileWrapperPtr transport, unsigned char *buffer, int bufSize, unsigned int *length) argument
154 FileWrapper_Close(FileWrapperPtr transport) argument
170 FileWrapper_IsMp4File(FileWrapperPtr transport) argument
[all...]
/external/nist-sip/java/javax/sip/
H A DIOExceptionEvent.java11 String transport) {
15 mTransport = transport;
10 IOExceptionEvent(Object source, String host, int port, String transport) argument
H A DSipProvider.java26 ListeningPoint getListeningPoint(String transport); argument
H A DSipStack.java12 ListeningPoint createListeningPoint(int port, String transport) argument
15 String transport) throws TransportNotSupportedException,
14 createListeningPoint(String ipAddress, int port, String transport) argument
/external/webrtc/webrtc/call/
H A Dtransport_adapter.cc18 TransportAdapter::TransportAdapter(Transport* transport) argument
19 : transport_(transport), enabled_(0) {
20 RTC_DCHECK(nullptr != transport);
/external/kernel-headers/original/uapi/linux/
H A Dvsockmon.h15 * | 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; /* enu member in struct:af_vsockmon_hdr
[all...]
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
H A DRelay.java25 import org.connectbot.transport.AbsTransport;
50 private AbsTransport transport; field in class:Relay
64 public Relay(TerminalBridge bridge, AbsTransport transport, vt320 buffer, String encoding) { argument
67 this.transport = transport;
124 bytesRead = transport.read(byteArray, offset, bytesToRead);
/external/webrtc/webrtc/voice_engine/
H A Dvoe_network_impl.cc39 Transport& transport) {
47 return channelPtr->RegisterExternalTransport(transport);
85 LOG_F(LS_ERROR) << "No external transport for channel: " << channel;
108 LOG_F(LS_ERROR) << "No external transport for channel: " << channel;
38 RegisterExternalTransport(int channel, Transport& transport) argument
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
H A DJDWPUnitDebuggeeWrapper.java47 * 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
[all...]
/external/kernel-headers/original/uapi/scsi/
H A Dscsi_netlink.h4 * Used for the posting of outbound SCSI transport events
45 uint8_t transport; member in struct:scsi_nl_hdr
57 /* scsi_nl_hdr->transport value */
62 /* Transport-based scsi_nl_hdr->msgtype values are defined in each transport */
117 (hdr)->transport = t; \
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/
H A DServiceConnection.java22 package org.ksoap2.transport;
28 * Interface to allow the abstraction of the raw transport information
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DProtocol.java58 /** transport field
60 protected String transport; field in class:Protocol
75 .append(transport.toUpperCase());
112 /** get the transport
116 return transport;
136 * Set the transport member
140 transport = t;
149 transport = "UDP";
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DHopImpl.java56 protected String transport; field in class:HopImpl
65 return host + ":" + port + "/" + transport;
69 * Create new hop given host, port and transport.
72 * @param trans transport
84 transport = trans;
108 this.transport = hop.substring(slash+1);
111 this.transport = "UDP";
121 this.transport = hop.substring(slash+1);
122 this.port = transport.equalsIgnoreCase("TLS") ? 5061 : 5060;
125 this.transport
[all...]
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/transport/
H A DAbsTransport.java18 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 currently
H A DProcessTransport.java18 package org.connectbot.transport;
/external/webrtc/webrtc/test/
H A Ddirect_transport.cc77 bool DirectTransport::NetworkProcess(void* transport) { argument
78 return static_cast<DirectTransport*>(transport)->SendPackets();

Completed in 527 milliseconds

1234