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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_transports.py 13 transport = asyncio.Transport()
14 self.assertEqual(transport._extra, {})
17 transport = asyncio.Transport({'extra': 'info'})
18 self.assertEqual('info', transport.get_extra_info('extra'))
19 self.assertIsNone(transport.get_extra_info('unknown'))
22 self.assertIs(default, transport.get_extra_info('unknown', default))
25 transport = asyncio.Transport()
    [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...]
  /external/adhd/cras/src/server/
cras_bt_transport.c 45 struct cras_bt_transport *transport; local
47 transport = calloc(1, sizeof(*transport));
48 if (transport == NULL)
51 transport->object_path = strdup(object_path);
52 if (transport->object_path == NULL) {
53 free(transport);
57 transport->conn = conn;
58 dbus_connection_ref(transport->conn);
60 transport->fd = -1
99 struct cras_bt_transport *transport; local
112 struct cras_bt_transport *transport; local
    [all...]
cras_bt_transport.h 26 void cras_bt_transport_set_endpoint(struct cras_bt_transport *transport,
28 void cras_bt_transport_destroy(struct cras_bt_transport *transport);
36 const struct cras_bt_transport *transport);
38 const struct cras_bt_transport *transport);
40 const struct cras_bt_transport *transport);
41 int cras_bt_transport_configuration(const struct cras_bt_transport *transport,
44 const struct cras_bt_transport *transport);
46 int cras_bt_transport_fd(const struct cras_bt_transport *transport);
47 uint16_t cras_bt_transport_write_mtu(const struct cras_bt_transport *transport);
50 struct cras_bt_transport *transport,
    [all...]
cras_a2dp_iodev.h 14 * Creates an a2dp iodev from transport object.
16 * transport - The transport to create a2dp iodev for
19 struct cras_bt_transport *transport);
  /system/core/liblog/
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...]
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...]
  /frameworks/base/services/backup/java/com/android/server/backup/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);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
HopImpl.java 56 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;
90 * @param hop is a hop string in the form of host:port/Transport
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
    [all...]
  /system/core/fastboot/
protocol.cpp 48 #include "transport.h"
59 static int64_t check_response(Transport* transport, uint32_t size, char* response) {
63 int r = transport->Read(status, 64);
66 transport->Close();
73 transport->Close();
102 transport->Close();
109 transport->Close();
116 static int64_t _command_start(Transport* transport, const std::string& cmd, uint32_t size
277 Transport* transport = reinterpret_cast<Transport*>(priv); local
    [all...]
  /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());
  /external/ltp/testcases/network/stress/icmp/multi-diffip/
icmp4-multi-diffip02 31 # - IPsec(AH), transport mode
64 IPSEC_MODE=transport
icmp4-multi-diffip04 31 # - IPsec(ESP), transport mode
64 IPSEC_MODE=transport
icmp4-multi-diffip06 32 # - IPcomp, transport mode
65 IPSEC_MODE=transport
icmp6-multi-diffip02 31 # - IPsec(AH), transport mode
64 IPSEC_MODE=transport
icmp6-multi-diffip04 31 # - IPsec(ESP), transport mode
64 IPSEC_MODE=transport
icmp6-multi-diffip06 32 # - IPcomp, transport mode
65 IPSEC_MODE=transport
  /external/ltp/testcases/network/stress/icmp/multi-diffnic/
icmp4-multi-diffnic02 31 # - IPsec(AH), transport mode
64 IPSEC_MODE=transport
icmp4-multi-diffnic04 31 # - IPsec(ESP), transport mode
64 IPSEC_MODE=transport
icmp4-multi-diffnic06 32 # - IPcomp, transport mode
65 IPSEC_MODE=transport
icmp6-multi-diffnic02 31 # - IPsec(AH), transport mode
64 IPSEC_MODE=transport
icmp6-multi-diffnic04 31 # - IPsec(ESP), transport mode
64 IPSEC_MODE=transport
icmp6-multi-diffnic06 32 # - IPcomp, transport mode
65 IPSEC_MODE=transport
  /external/ltp/testcases/network/stress/tcp/multi-diffip/
tcp4-multi-diffip02 32 # - IPsec(AH), transport mode
68 IPSEC_MODE=transport

Completed in 495 milliseconds

1 2 3 4 5 6 7 8 91011>>