HomeSort by relevance Sort by last modified time
    Searched refs:transport (Results 1 - 25 of 400) 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
252 DBusTransport *transport = NULL; local
368 DBusTransport *transport; local
    [all...]
dbus-transport-win.h 2 /* dbus-transport-win.h Windows socket subclasses of DBusTransport
27 #include <dbus/dbus-transport.h>
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
1314 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>
  /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/liblog/
config_read.c 26 struct listnode *list, struct android_log_transport_read *transport) {
29 /* Try to keep one functioning transport for each log buffer id */
34 if (!transport->available || ((*transport->available)(i) >= 0)) {
35 list_add_tail(list, &transport->node);
44 (!transport->available ||
45 ((*transport->available)(i) >= 0))) {
46 list_add_tail(list, &transport->node);
config_write.c 26 struct listnode *list, struct android_log_transport_write *transport) {
29 /* Try to keep one functioning transport for each log buffer id */
34 if (!transport->available || ((*transport->available)(i) >= 0)) {
35 list_add_tail(list, &transport->node);
44 (!transport->available ||
45 ((*transport->available)(i) >= 0))) {
46 list_add_tail(list, &transport->node);
logger_read.c 61 struct android_log_transport_read *transport; local
72 if (!list_empty(&logger_list->transport)) {
87 read_transport_for_each(transport, node) {
99 if (transport->read &&
100 (!transport->available ||
101 (transport->available(logId) >= 0))) {
113 transp->transport = transport;
116 list_add_tail(&logger_list->transport, &transp->node);
118 if (list_empty(&logger_list->transport)) {
    [all...]
  /system/core/fastboot/
protocol.cpp 42 #include "transport.h"
51 static int check_response(Transport* transport, uint32_t size, char* response) {
55 int r = transport->Read(status, 64);
58 transport->Close();
65 transport->Close();
94 transport->Close();
101 transport->Close();
108 static int _command_start(Transport* transport, const char* cmd, uint32_t size, char* response)
196 Transport* transport = reinterpret_cast<Transport*>(priv); local
    [all...]
fastboot.h 37 #include "transport.h"
42 int fb_command(Transport* transport, const char* cmd);
43 int fb_command_response(Transport* transport, const char* cmd, char* response);
44 int fb_download_data(Transport* transport, const void* data, uint32_t size);
45 int fb_download_data_sparse(Transport* transport, struct sparse_file* s);
52 bool fb_getvar(Transport* transport, const std::string& key, std::string* value)
    [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());
  /system/core/adb/
adb_listeners.h 35 atransport* transport,
41 InstallStatus remove_listener(const char* local_name, atransport* transport);
adb_listeners.cpp 26 #include "transport.h"
75 s->transport = listener->transport;
101 if (l->transport) {
102 l->transport->RemoveDisconnect(&l->disconnect);
109 listener->transport = nullptr;
151 l->transport->serial ? l->transport->serial : "(reverse)",
157 InstallStatus remove_listener(const char *local_name, atransport* transport) {
183 atransport* transport,
    [all...]
  /packages/services/Telephony/tests/src/com/android/phone/common/mail/
MailTransportTest.java 76 MailTransport transport = local
79 Socket socket = transport.createSocket();
86 MailTransport transport = local
89 Socket socket = transport.createSocket();
106 MailTransport transport = new local
110 transport.setSocketCreator(socketCreator);
112 Socket socket = transport.createSocket();
117 MailTransport transport = new MailTransport(getContext(), createMockImapHelper(), null, local
120 transport.setSocketCreator(new TestSocketCreator());
121 transport.open()
128 MailTransport transport = new MailTransport(getContext(), createMockImapHelper(), null, local
139 MailTransport transport = new MailTransport(getContext(), createMockImapHelper(), network, local
150 MailTransport transport = new MailTransport(getContext(), createMockImapHelper(), network, local
168 MailTransport transport = new MailTransport(getContext(), createMockImapHelper(), network, local
182 MailTransport transport = new MailTransport(getContext(), createMockImapHelper(), null, local
213 MailTransport transport = new MailTransport(getContext(), createMockImapHelper(), network, local
228 MailTransport transport = new MailTransport(getContext(), createMockImapHelper(), null, local
253 MailTransport transport = new MailTransport(getContext(), createMockImapHelper(), local
    [all...]
  /external/webrtc/webrtc/call/
transport_adapter.cc 18 TransportAdapter::TransportAdapter(Transport* transport)
19 : transport_(transport), enabled_(0) {
20 RTC_DCHECK(nullptr != transport);
  /external/nist-sip/java/javax/sip/
IOExceptionEvent.java 11 String transport) {
15 mTransport = transport;
  /frameworks/base/location/java/android/location/
CountryDetector.java 123 ListenerTransport transport = new ListenerTransport(listener, looper); local
125 mService.addCountryListener(transport);
126 mListeners.put(listener, transport);
139 ListenerTransport transport = mListeners.get(listener); local
140 if (transport != null) {
143 mService.removeCountryListener(transport);
  /external/libbrillo/brillo/http/
http_utils.h 39 // transport, error);
47 // transport, error);
63 std::shared_ptr<Transport> transport,
72 std::shared_ptr<Transport> transport,
79 // request using Transport::CancelRequest().
86 std::shared_ptr<Transport> transport,
94 // request using Transport::CancelRequest()
    [all...]
http_utils.cc 26 std::shared_ptr<Transport> transport,
29 request_type::kGet, url, headers, transport, error);
34 std::shared_ptr<Transport> transport,
40 transport,
46 std::shared_ptr<Transport> transport,
49 request_type::kHead, url, {}, transport, error);
53 std::shared_ptr<Transport> transport
    [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";
  /external/autotest/server/hosts/
paramiko_host.py 102 def _check_transport_error(self, transport):
103 error = transport.get_exception()
105 transport.close()
110 """Return a socket for use in instantiating a paramiko transport. Does
112 paramiko.Transport constructor accepts."""
118 transport = paramiko.Transport(self._connect_socket())
120 transport.start_client(completed)
123 self._check_transport_error(transport)
125 transport.auth_publickey(self.user, pkey, completed
    [all...]
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
HttpsServiceConnectionSEIgnoringConnectionClose.java 2 package org.ksoap2.transport;

Completed in 2216 milliseconds

1 2 3 4 5 6 7 8 91011>>