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

1 2 3 4 5 6 7

  /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-win.h 2 /* dbus-transport-win.h Windows socket subclasses of DBusTransport
27 #include <dbus/dbus-transport.h>
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-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...]
dbus-transport-unix.h 2 /* dbus-transport-unix.h UNIX socket subclasses of DBusTransport
26 #include <dbus/dbus-transport.h>
dbus-transport-socket.h 2 /* dbus-transport-socket.h Socket subclasses of DBusTransport
26 #include <dbus/dbus-transport-protected.h>
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...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
NegotiateException.java 5 package ch.ethz.ssh2.transport;
MessageHandler.java 5 package ch.ethz.ssh2.transport;
KexParameters.java 5 package ch.ethz.ssh2.transport;
NegotiatedParameters.java 5 package ch.ethz.ssh2.transport;
  /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());
  /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...]
MessageProcessor.java 45 * the given transport.
86 * The transport where I am listening
88 protected String transport; field in class:MessageProcessor
102 protected MessageProcessor( String transport ) {
103 this.transport = transport;
111 * @param transport -- transport to use for the message processor (UDP/TCP/TLS).
113 protected MessageProcessor( InetAddress ipAddress, int port, String transport,
115 this( transport );
    [all...]
  /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,
  /frameworks/base/location/java/android/location/
CountryDetector.java 125 ListenerTransport transport = new ListenerTransport(listener, looper); local
127 mService.addCountryListener(transport);
128 mListeners.put(listener, transport);
141 ListenerTransport transport = mListeners.get(listener); local
142 if (transport != null) {
145 mService.removeCountryListener(transport);
  /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...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Protocol.java 58 /** 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";
  /packages/apps/Email/src/com/android/email/mail/transport/
CountingOutputStream.java 17 package com.android.email.mail.transport;
EOLConvertingOutputStream.java 17 package com.android.email.mail.transport;
  /development/tools/axl/
axl.py 37 return self.transport.write(data)
44 self.transport.setTcpNoDelay(1) # send immediately
64 self.transport.loseConnection()
71 self.transport.loseConnection()
88 self.transport.loseConnection()
100 self.transport.loseConnection()
109 self.transport.loseConnection()
117 self.transport.loseConnection()
126 self.transport.loseConnection()
141 self.transport.loseConnection(
    [all...]
  /frameworks/base/core/java/android/app/backup/
IBackupManager.aidl 135 * transport will still be asked to confirm via the usual requestBackupTime()
197 * Identify the currently selected transport. Callers must hold the
209 * Specify the current backup transport. Callers must hold the
212 * @param transport The name of the transport to select. This should be one
214 * @return The name of the previously selected transport. If the given transport
216 * the current transport setting and the method returns null.
218 String selectBackupTransport(String transport);
221 * Get the configuration Intent, if any, from the given transport. Callers mus
    [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...]

Completed in 605 milliseconds

1 2 3 4 5 6 7