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

1 2 3 4 5 6 7 8 91011>>

  /external/dbus/dbus/
dbus-transport.h 2 /* dbus-transport.h DBusTransport object (internal to D-BUS implementation)
37 DBusTransport* _dbus_transport_ref (DBusTransport *transport);
38 void _dbus_transport_unref (DBusTransport *transport);
39 void _dbus_transport_disconnect (DBusTransport *transport);
40 dbus_bool_t _dbus_transport_get_is_connected (DBusTransport *transport);
41 dbus_bool_t _dbus_transport_get_is_authenticated (DBusTransport *transport);
42 dbus_bool_t _dbus_transport_get_is_anonymous (DBusTransport *transport);
43 dbus_bool_t _dbus_transport_can_pass_unix_fd (DBusTransport *transport);
45 const char* _dbus_transport_get_address (DBusTransport *transport);
46 const char* _dbus_transport_get_server_id (DBusTransport *transport);
    [all...]
dbus-transport.c 2 /* dbus-transport.c DBusTransport object (internal to D-Bus implementation)
25 #include "dbus-transport-protected.h"
26 #include "dbus-transport-unix.h"
27 #include "dbus-transport-socket.h"
44 * Types and functions related to DBusTransport. A transport is an
56 * transport mechanism, such as different network protocols,
64 DBusTransport *transport = user_data; local
66 _dbus_transport_ref (transport);
75 /* disable or re-enable the read watch for the transport if
78 if (transport->vtable->live_messages_changed
248 DBusTransport *transport = NULL; local
363 DBusTransport *transport; local
    [all...]
dbus-transport-socket.c 2 /* dbus-transport-socket.c Socket subclasses of DBusTransport
28 #include "dbus-transport-socket.h"
29 #include "dbus-transport-protected.h"
42 * Opaque object representing a socket file descriptor transport.
72 free_watches (DBusTransport *transport)
74 DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
80 if (transport->connection)
81 _dbus_connection_remove_watch_unlocked (transport->connection,
90 if (transport->connection)
91 _dbus_connection_remove_watch_unlocked (transport->connection
877 DBusTransportSocket *transport = (DBusTransportSocket *) itransport; local
1312 DBusTransport *transport; local
    [all...]
dbus-transport-unix.c 2 /* dbus-transport-unix.c UNIX socket subclasses of DBusTransport
27 #include "dbus-transport-unix.h"
28 #include "dbus-transport-socket.h"
29 #include "dbus-transport-protected.h"
42 * Creates a new transport for the given Unix domain socket
43 * path. This creates a client-side of a transport.
51 * @returns a new transport, or #NULL on failure.
59 DBusTransport *transport; local
92 transport = _dbus_transport_new_for_socket (fd, NULL, &address);
93 if (transport == NULL
    [all...]
dbus-transport-protected.h 2 /* dbus-transport-protected.h Used by subclasses of DBusTransport object (internal to D-Bus implementation)
28 #include <dbus/dbus-transport.h>
39 * create a new kind of transport.
43 void (* finalize) (DBusTransport *transport);
44 /**< The finalize method must free the transport. */
46 dbus_bool_t (* handle_watch) (DBusTransport *transport,
53 void (* disconnect) (DBusTransport *transport);
54 /**< Disconnect this transport. */
56 dbus_bool_t (* connection_set) (DBusTransport *transport);
57 /**< Called when transport->connection has been filled in *
    [all...]
  /external/bluetooth/bluez/audio/
transport.c 42 #include "transport.h"
58 struct media_transport *transport; member in struct:media_owner
67 char *path; /* Transport object path */
68 struct audio_device *device; /* Transport device */
70 struct media_endpoint *endpoint; /* Transport endpoint */
71 GSList *owners; /* Transport owners */
72 uint8_t *configuration; /* Transport configuration */
73 int size; /* Transport configuration size */
74 int fd; /* Transport file descriptor */
75 uint16_t imtu; /* Transport input mtu *
159 struct media_transport *transport = owner->transport; local
232 struct media_transport *transport = owner->transport; local
305 struct media_transport *transport = owner->transport; local
345 struct media_transport *transport = owner->transport; local
407 struct media_transport *transport = owner->transport; local
541 struct media_transport *transport = data; local
578 struct media_transport *transport = data; local
679 struct media_transport *transport = data; local
778 struct media_transport *transport = data; local
810 struct media_transport *transport = data; local
835 struct media_transport *transport = user_data; local
850 struct media_transport *transport; local
    [all...]
transport.h 33 void media_transport_destroy(struct media_transport *transport);
34 const char *media_transport_get_path(struct media_transport *transport);
35 void media_transport_update_delay(struct media_transport *transport,
37 void transport_get_properties(struct media_transport *transport,
  /external/aac/libMpegTPDec/src/
version 6 #define TP_LIB_TITLE "MPEG Transport"
  /external/aac/libMpegTPEnc/src/
version 6 #define TP_LIB_TITLE "MPEG Transport"
  /external/nist-sip/java/javax/sip/
IOExceptionEvent.java 11 String transport) {
15 mTransport = transport;
SipStack.java 12 ListeningPoint createListeningPoint(int port, String transport)
15 String transport) throws TransportNotSupportedException,
  /external/ipsec-tools/src/racoon/contrib/
sp.pl 6 $mode = 'transport';
12 if ($mode eq 'transport') {
13 print STDERR "install esp transport mode: $src -> $dst\n";
14 print OUT "spdadd $src $dst any -P out ipsec esp/transport//require;\n";
15 print OUT "spdadd $dst $src any -P in ipsec esp/transport//require;\n";
  /dalvik/vm/jdwp/
JdwpPriv.h 43 * Transport-specific network status.
49 * Transport functions.
85 const JdwpTransport* transport; member in struct:JdwpState
149 * Transport functions.
154 return (*state->transport->startup)(state, pParams);
157 return (*state->transport->accept)(state);
160 return (*state->transport->establish)(state);
163 (*state->transport->close)(state);
166 (*state->transport->shutdown)(state);
169 (*state->transport->free)(state)
    [all...]
  /frameworks/base/core/java/android/os/
CancellationSignal.java 126 * Sets the remote transport.
129 * remote transport is canceled immediately.
131 * This method is guaranteed that the remote transport will not be called after it
134 * @param remote The remote transport, or null to remove.
166 * Creates a transport that can be returned back to the caller of
169 * @return The new cancellation signal transport.
174 return new Transport();
178 * Given a locally created transport, returns its associated cancellation signal.
180 * @param transport The locally created transport, or null if none
    [all...]
  /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...]
  /external/nist-sip/java/gov/nist/javax/sip/
ListeningPointImpl.java 60 protected String transport; field in class:ListeningPointImpl
88 * @param transport transport
91 public static String makeKey(String host, int port, String transport) {
96 .append(transport)
106 return makeKey(this.getIPAddress(), port, transport);
131 String transport) {
135 this.transport = transport;
141 * started. The transport is set to null
    [all...]
  /external/bluetooth/bluez/tools/
bccmd.c 62 static inline int transport_open(int transport, char *device, speed_t bcsp_rate)
64 switch (transport) {
78 fprintf(stderr, "Unsupported transport\n");
83 static inline int transport_read(int transport, uint16_t varid, uint8_t *value, uint16_t length)
85 switch (transport) {
104 static inline int transport_write(int transport, uint16_t varid, uint8_t *value, uint16_t length)
106 switch (transport) {
125 static inline void transport_close(int transport)
127 switch (transport) {
240 static int cmd_builddef(int transport, int argc, char *argv[]
1149 int i, err, opt, transport = CSR_TRANSPORT_HCI; local
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebView_WebViewTransportTest.java 29 WebViewTransport transport = webView.new WebViewTransport(); local
31 assertNull(transport.getWebView());
33 transport.setWebView(webView);
34 assertSame(webView, transport.getWebView());
  /development/ndk/platforms/android-14/samples/native-media/
README.txt 1 This sample app requires an MPEG-2 Transport Stream file to be
  /external/bluetooth/bluez/doc/
media-api.txt 54 Methods void SetConfiguration(object transport, dict properties)
56 Set configuration for the transport.
64 a transport.
70 void ClearConfiguration(object transport)
72 Clear transport configuration.
96 Acquire transport file descriptor and the MTU for read
125 Device object which the transport is connected to.
129 UUID of the profile which the transport is for.
133 Assigned mumber of codec that the transport support.
144 Optional. Transport delay in 1/10 of milisecond, thi
    [all...]
  /external/chromium/webkit/glue/
p2p_transport.h 16 // Interface for P2P transport.
38 // Initialize transport using specified configuration. Returns true
49 // data. Returned object is owned by the transport. Pending calls on
50 // the socket are canceled when the transport is destroyed.
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
MessageHandler.java 5 package ch.ethz.ssh2.transport;
NegotiateException.java 5 package ch.ethz.ssh2.transport;
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transport.cc 28 #include "talk/p2p/base/transport.h"
81 Transport::Transport(talk_base::Thread* signaling_thread,
91 Transport::~Transport() {
96 TransportChannelImpl* Transport::CreateChannel(
104 TransportChannelImpl* Transport::CreateChannel_w(
109 impl->SignalReadableState.connect(this, &Transport::OnChannelReadableState);
110 impl->SignalWritableState.connect(this, &Transport::OnChannelWritableState);
112 this, &Transport::OnChannelRequestSignaling)
    [all...]
  /external/tcpdump/
l2vpn.c 33 { 0x02, "ATM AAL5 VCC transport"},
34 { 0x03, "ATM transparent cell transport"},
40 { 0x09, "ATM n-to-one VCC cell transport"},
41 { 0x0a, "ATM n-to-one VPC cell transport"},
42 { 0x0b, "IP Layer2 Transport"},
45 { 0x0e, "ATM AAL5 PDU VCC transport"},

Completed in 1024 milliseconds

1 2 3 4 5 6 7 8 91011>>