HomeSort by relevance Sort by last modified time
    Searched refs:transport (Results 1 - 25 of 506) 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/grpc-grpc-java/core/src/main/java/io/grpc/
InternalMethodDescriptor.java 26 private final InternalKnownTransport transport; field in class:InternalMethodDescriptor
28 public InternalMethodDescriptor(InternalKnownTransport transport) {
30 this.transport = checkNotNull(transport, "transport");
34 return md.getRawMethodName(transport.ordinal());
38 md.setRawMethodName(transport.ordinal(), o);
  /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...]
  /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);
  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
ServerListener.java 20 * A listener to a server for transport creation events. The listener need not be thread-safe, so
28 * @param transport the new transport to be observed.
29 * @return a listener for stream creation events on the transport.
31 ServerTransportListener transportCreated(ServerTransport transport);
  /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...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
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
tcp4-multi-diffip04 32 # - IPsec(ESP), transport mode
68 IPSEC_MODE=transport
tcp4-multi-diffip06 32 # - IPcomp, transport mode
68 IPSEC_MODE=transport
tcp4-multi-diffip09 32 # - IPsec(AH), transport mode
68 IPSEC_MODE=transport

Completed in 497 milliseconds

1 2 3 4 5 6 7 8 91011>>