/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/bluetooth/bluez/audio/ |
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,
|
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...] |
/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...] |
/cts/tests/tests/webkit/src/android/webkit/cts/ |
WebView_WebViewTransportTest.java | 44 WebViewTransport transport = webView.new WebViewTransport(); local 46 assertNull(transport.getWebView()); 48 transport.setWebView(webView); 49 assertSame(webView, transport.getWebView());
|
/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/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...] |
/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...] |
/packages/apps/Email/tests/src/com/android/email/mail/store/ |
Pop3StoreUnitTests.java | 25 import com.android.email.mail.Transport; 26 import com.android.email.mail.transport.MockTransport; 236 mockTransport.expect(null, "-ERR from the Mock Transport."); 381 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two 424 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two 466 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two 509 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two 561 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two 608 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two 667 * Test the scenario where the transport is "open" but not really (e.g. server closed). Tw [all...] |