Searched refs:connection (Results 1 - 25 of 784) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A Dincomplete-member-function-pointer.cpp4 struct connection { struct
7 void (connection::*a)(fake_tuple) = &connection::bar;
9 void (connection::*b)(fake_tuple) = &connection::bar;
/external/libmicrohttpd/src/microhttpd/
H A Dconnection_https.c30 #include "connection.h"
40 * @param connection connection to handshake on
46 run_tls_handshake (struct MHD_Connection *connection) argument
49 connection->last_activity = MHD_monotonic_time();
50 if (connection->state == MHD_TLS_CONNECTION_INIT)
52 ret = SSL_accept (connection->tls_session);
55 /* set connection state to enable HTTP processing */
56 connection->state = MHD_CONNECTION_INIT;
59 int error = SSL_get_error (connection
96 MHD_tls_connection_handle_read(struct MHD_Connection *connection) argument
113 MHD_tls_connection_handle_write(struct MHD_Connection *connection) argument
132 MHD_tls_connection_handle_idle(struct MHD_Connection *connection) argument
176 MHD_set_https_callbacks(struct MHD_Connection *connection) argument
[all...]
H A Dconnection.h21 * @file connection.h
34 * Set callbacks for this connection to those for HTTP.
36 * @param connection connection to initialize
39 MHD_set_http_callbacks_ (struct MHD_Connection *connection);
43 * This function handles a particular connection when it has been
48 * @param connection connection to handle
50 * connection)
53 MHD_connection_handle_read (struct MHD_Connection *connection);
[all...]
H A Dconnection.c22 * @file connection.c
30 #include "connection.h"
119 * @param connection connection to get values from
128 MHD_get_connection_values (struct MHD_Connection *connection, argument
135 if (NULL == connection)
138 for (pos = connection->headers_received; NULL != pos; pos = pos->next)
153 * connection (so that the #MHD_get_connection_values function will
163 * until the connection is closed. (The easiest way to do this is by
166 * @param connection th
177 MHD_set_connection_value(struct MHD_Connection *connection, enum MHD_ValueKind kind, const char *key, const char *value) argument
217 MHD_lookup_connection_value(struct MHD_Connection *connection, enum MHD_ValueKind kind, const char *key) argument
243 need_100_continue(struct MHD_Connection *connection) argument
268 MHD_connection_close(struct MHD_Connection *connection, enum MHD_RequestTerminationCode termination_code) argument
297 connection_close_error(struct MHD_Connection *connection, const char *emsg) argument
332 try_ready_normal_body(struct MHD_Connection *connection) argument
399 try_ready_chunked_body(struct MHD_Connection *connection) argument
510 keepalive_possible(struct MHD_Connection *connection) argument
608 try_grow_read_buffer(struct MHD_Connection *connection) argument
640 build_header_response(struct MHD_Connection *connection) argument
929 transmit_error_response(struct MHD_Connection *connection, unsigned int status_code, const char *message) argument
977 MHD_connection_update_event_loop_info(struct MHD_Connection *connection) argument
1125 get_next_header_line(struct MHD_Connection *connection) argument
1176 connection_add_header(struct MHD_Connection *connection, char *key, char *value, enum MHD_ValueKind kind) argument
1205 parse_arguments(enum MHD_ValueKind kind, struct MHD_Connection *connection, char *args) argument
1292 parse_cookie_header(struct MHD_Connection *connection) argument
1391 parse_initial_message_line(struct MHD_Connection *connection, char *line) argument
1443 call_connection_handler(struct MHD_Connection *connection) argument
1477 process_request_body(struct MHD_Connection *connection) argument
1658 do_read(struct MHD_Connection *connection) argument
1705 do_write(struct MHD_Connection *connection) argument
1747 check_write_done(struct MHD_Connection *connection, enum MHD_CONNECTION_STATE next_state) argument
1775 process_header_line(struct MHD_Connection *connection, char *line) argument
1815 process_broken_line(struct MHD_Connection *connection, char *line, enum MHD_ValueKind kind) argument
1888 parse_connection_headers(struct MHD_Connection *connection) argument
1967 update_last_activity(struct MHD_Connection *connection) argument
2000 MHD_connection_handle_read(struct MHD_Connection *connection) argument
2063 MHD_connection_handle_write(struct MHD_Connection *connection) argument
2219 cleanup_connection(struct MHD_Connection *connection) argument
2268 MHD_connection_handle_idle(struct MHD_Connection *connection) argument
2709 MHD_connection_epoll_update_(struct MHD_Connection *connection) argument
2756 MHD_set_http_callbacks_(struct MHD_Connection *connection) argument
2775 MHD_get_connection_info(struct MHD_Connection *connection, enum MHD_ConnectionInfoType info_type, ...) argument
2820 MHD_set_connection_option(struct MHD_Connection *connection, enum MHD_CONNECTION_OPTION option, ...) argument
2881 MHD_queue_response(struct MHD_Connection *connection, unsigned int status_code, struct MHD_Response *response) argument
[all...]
H A Dconnection_https.h33 * Set connection callback function to be used through out
34 * the processing of this secure connection.
36 * @param connection which callbacks should be modified
39 MHD_set_https_callbacks (struct MHD_Connection *connection);
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/autoscale/
H A Drequest.py24 def __init__(self, connection=None):
25 self.connection = connection
31 def startElement(self, name, attrs, connection):
34 def endElement(self, name, value, connection):
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
H A Dtest_connect_to_region.py31 from boto.s3.connection import S3Connection
39 connection = connect_to_region('us-east-1', **connect_args)
40 self.assertEquals('www.not-a-website.com', connection.host)
41 self.assertIsInstance(connection, S3Connection)
45 connection = connect_to_region('us-west-2', **connect_args)
46 self.assertEquals('s3.amazonaws.com', connection.host)
47 self.assertIsInstance(connection, S3Connection)
51 connection = connect_to_region('us-west-2')
52 self.assertEquals('s3-us-west-2.amazonaws.com', connection.host)
53 self.assertIsInstance(connection, S3Connectio
[all...]
/external/dbus/bus/
H A Dutils.c33 bus_connection_dispatch_all_messages (DBusConnection *connection) argument
35 while (bus_connection_dispatch_one_message (connection))
40 bus_connection_dispatch_one_message (DBusConnection *connection) argument
44 while ((status = dbus_connection_dispatch (connection)) == DBUS_DISPATCH_NEED_MEMORY)
H A Dconnection.h2 /* connection.h Client connections
31 typedef dbus_bool_t (* BusConnectionForeachFunction) (DBusConnection *connection,
39 DBusConnection *connection);
48 BusContext* bus_connection_get_context (DBusConnection *connection);
49 BusConnections* bus_connection_get_connections (DBusConnection *connection);
50 BusRegistry* bus_connection_get_registry (DBusConnection *connection);
51 BusActivation* bus_connection_get_activation (DBusConnection *connection);
52 BusMatchmaker* bus_connection_get_matchmaker (DBusConnection *connection);
53 const char * bus_connection_get_loginfo (DBusConnection *connection);
54 BusSELinuxID* bus_connection_get_selinux_id (DBusConnection *connection);
[all...]
H A Dutils.h33 void bus_connection_dispatch_all_messages (DBusConnection *connection);
34 dbus_bool_t bus_connection_dispatch_one_message (DBusConnection *connection);
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/cloudwatch/
H A Ddatapoint.py27 def __init__(self, connection=None):
29 self.connection = connection
31 def startElement(self, name, attrs, connection):
34 def endElement(self, name, value, connection):
H A Dlistelement.py25 def startElement(self, name, attrs, connection):
28 def endElement(self, name, value, connection):
/external/skia/tools/skiaserve/
H A DResponse.h17 int SendOK(MHD_Connection* connection);
19 int SendError(MHD_Connection* connection, const char* msg);
21 int SendData(MHD_Connection* connection, const SkData* data, const char* type,
24 int SendJSON(MHD_Connection* connection, Request* request, int n);
26 int SendTemplate(MHD_Connection* connection, bool redirect = false,
/external/dbus/dbus/
H A Ddbus-connection.c2 /* dbus-connection.c DBusConnection object
27 #include "dbus-connection.h"
32 #include "dbus-connection-internal.h"
50 #define TOOK_LOCK_CHECK(connection)
51 #define RELEASING_LOCK_CHECK(connection)
52 #define HAVE_LOCK_CHECK(connection)
54 #define TOOK_LOCK_CHECK(connection) do { \
55 _dbus_assert (!(connection)->have_connection_lock); \
56 (connection)->have_connection_lock = TRUE; \
58 #define RELEASING_LOCK_CHECK(connection) d
209 _dbus_connection_trace_ref(DBusConnection *connection, int old_refcount, int new_refcount, const char *why) argument
250 DBusConnection *connection; /**< Connection we'd send the message to */ member in struct:DBusPreallocatedSend
396 _dbus_connection_lock(DBusConnection *connection) argument
407 _dbus_connection_unlock(DBusConnection *connection) argument
444 _dbus_connection_wakeup_mainloop(DBusConnection *connection) argument
464 _dbus_connection_test_get_locks(DBusConnection *connection, DBusMutex **mutex_loc, DBusMutex **dispatch_mutex_loc, DBusMutex **io_path_mutex_loc, DBusCondVar **dispatch_cond_loc, DBusCondVar **io_path_cond_loc) argument
488 _dbus_connection_queue_received_message_link(DBusConnection *connection, DBusList *link) argument
553 _dbus_connection_queue_synthesized_message_link(DBusConnection *connection, DBusList *link) argument
580 _dbus_connection_has_messages_to_send_unlocked(DBusConnection *connection) argument
596 dbus_connection_has_messages_to_send(DBusConnection *connection) argument
617 _dbus_connection_get_message_to_send(DBusConnection *connection) argument
633 _dbus_connection_message_sent_unlocked(DBusConnection *connection, DBusMessage *message) argument
689 protected_change_watch(DBusConnection *connection, DBusWatch *watch, DBusWatchAddFunction add_function, DBusWatchRemoveFunction remove_function, DBusWatchToggleFunction toggle_function, dbus_bool_t enabled) argument
751 _dbus_connection_add_watch_unlocked(DBusConnection *connection, DBusWatch *watch) argument
769 _dbus_connection_remove_watch_unlocked(DBusConnection *connection, DBusWatch *watch) argument
789 _dbus_connection_toggle_watch_unlocked(DBusConnection *connection, DBusWatch *watch, dbus_bool_t enabled) argument
813 protected_change_timeout(DBusConnection *connection, DBusTimeout *timeout, DBusTimeoutAddFunction add_function, DBusTimeoutRemoveFunction remove_function, DBusTimeoutToggleFunction toggle_function, dbus_bool_t enabled) argument
875 _dbus_connection_add_timeout_unlocked(DBusConnection *connection, DBusTimeout *timeout) argument
893 _dbus_connection_remove_timeout_unlocked(DBusConnection *connection, DBusTimeout *timeout) argument
913 _dbus_connection_toggle_timeout_unlocked(DBusConnection *connection, DBusTimeout *timeout, dbus_bool_t enabled) argument
924 _dbus_connection_attach_pending_call_unlocked(DBusConnection *connection, DBusPendingCall *pending) argument
978 DBusConnection *connection; local
1009 _dbus_connection_detach_pending_call_unlocked(DBusConnection *connection, DBusPendingCall *pending) argument
1020 _dbus_connection_detach_pending_call_and_unlock(DBusConnection *connection, DBusPendingCall *pending) argument
1052 _dbus_connection_remove_pending_call(DBusConnection *connection, DBusPendingCall *pending) argument
1069 _dbus_connection_acquire_io_path(DBusConnection *connection, int timeout_milliseconds) argument
1151 _dbus_connection_release_io_path(DBusConnection *connection) argument
1206 _dbus_connection_do_iteration_unlocked(DBusConnection *connection, DBusPendingCall *pending, unsigned int flags, int timeout_milliseconds) argument
1259 DBusConnection *connection; local
1427 _dbus_connection_ref_unlocked(DBusConnection *connection) argument
1450 _dbus_connection_unref_unlocked(DBusConnection *connection) argument
1468 _dbus_connection_get_next_client_serial(DBusConnection *connection) argument
1498 DBusConnection *connection; local
1540 close_connection_on_shutdown(DBusConnection *connection) argument
1565 DBusConnection *connection; local
1588 DBusConnection *connection; local
1648 DBusConnection *connection; local
1692 connection_record_shared_unlocked(DBusConnection *connection, const char *guid) argument
1763 connection_forget_shared_unlocked(DBusConnection *connection) argument
1800 DBusConnection *connection; local
1843 DBusConnection *connection; local
1932 _dbus_connection_close_possibly_shared(DBusConnection *connection) argument
1942 _dbus_connection_preallocate_send_unlocked(DBusConnection *connection) argument
1978 _dbus_connection_send_preallocated_unlocked_no_update(DBusConnection *connection, DBusPreallocatedSend *preallocated, DBusMessage *message, dbus_uint32_t *client_serial) argument
2052 _dbus_connection_send_preallocated_and_unlock(DBusConnection *connection, DBusPreallocatedSend *preallocated, DBusMessage *message, dbus_uint32_t *client_serial) argument
2082 _dbus_connection_send_and_unlock(DBusConnection *connection, DBusMessage *message, dbus_uint32_t *client_serial) argument
2130 _dbus_connection_close_if_only_one_ref(DBusConnection *connection) argument
2219 _dbus_connection_peek_for_reply_unlocked(DBusConnection *connection, dbus_uint32_t client_serial) argument
2246 check_for_reply_unlocked(DBusConnection *connection, dbus_uint32_t client_serial) argument
2272 connection_timeout_and_complete_all_pending_calls_unlocked(DBusConnection *connection) argument
2306 complete_pending_call_and_unlock(DBusConnection *connection, DBusPendingCall *pending, DBusMessage *message) argument
2320 check_for_reply_and_update_dispatch_unlocked(DBusConnection *connection, DBusPendingCall *pending) argument
2368 DBusConnection *connection; local
2576 DBusConnection *connection; local
2619 DBusConnection *connection; local
2638 dbus_connection_ref(DBusConnection *connection) argument
2656 DBusConnection *connection = data; local
2667 _dbus_connection_last_unref(DBusConnection *connection) argument
2773 dbus_connection_unref(DBusConnection *connection) argument
2811 _dbus_connection_close_possibly_shared_and_unlock(DBusConnection *connection) argument
2888 dbus_connection_close(DBusConnection *connection) argument
2909 _dbus_connection_get_is_connected_unlocked(DBusConnection *connection) argument
2929 dbus_connection_get_is_connected(DBusConnection *connection) argument
2951 dbus_connection_get_is_authenticated(DBusConnection *connection) argument
2985 dbus_connection_get_is_anonymous(DBusConnection *connection) argument
3030 dbus_connection_get_server_id(DBusConnection *connection) argument
3061 dbus_connection_can_send_type(DBusConnection *connection, int type) argument
3101 dbus_connection_set_exit_on_disconnect(DBusConnection *connection, dbus_bool_t exit_on_disconnect) argument
3121 dbus_connection_preallocate_send(DBusConnection *connection) argument
3147 dbus_connection_free_preallocated_send(DBusConnection *connection, DBusPreallocatedSend *preallocated) argument
3173 dbus_connection_send_preallocated(DBusConnection *connection, DBusPreallocatedSend *preallocated, DBusMessage *message, dbus_uint32_t *client_serial) argument
3210 _dbus_connection_send_unlocked_no_update(DBusConnection *connection, DBusMessage *message, dbus_uint32_t *client_serial) argument
3258 dbus_connection_send(DBusConnection *connection, DBusMessage *message, dbus_uint32_t *serial) argument
3289 DBusConnection *connection; local
3355 dbus_connection_send_with_reply(DBusConnection *connection, DBusMessage *message, DBusPendingCall **pending_return, int timeout_milliseconds) argument
3491 dbus_connection_send_with_reply_and_block(DBusConnection *connection, DBusMessage *message, int timeout_milliseconds, DBusError *error) argument
3559 _dbus_connection_flush_unlocked(DBusConnection *connection) argument
3597 dbus_connection_flush(DBusConnection *connection) argument
3630 _dbus_connection_read_write_dispatch(DBusConnection *connection, int timeout_milliseconds, dbus_bool_t dispatch) argument
3725 dbus_connection_read_write_dispatch(DBusConnection *connection, int timeout_milliseconds) argument
3757 dbus_connection_read_write(DBusConnection *connection, int timeout_milliseconds) argument
3771 check_disconnected_message_arrived_unlocked(DBusConnection *connection, DBusMessage *head_of_queue) argument
3806 dbus_connection_borrow_message(DBusConnection *connection) argument
3857 dbus_connection_return_message(DBusConnection *connection, DBusMessage *message) argument
3891 dbus_connection_steal_borrowed_message(DBusConnection *connection, DBusMessage *message) argument
3929 _dbus_connection_pop_message_link_unlocked(DBusConnection *connection) argument
3972 _dbus_connection_pop_message_unlocked(DBusConnection *connection) argument
3995 _dbus_connection_putback_message_link_unlocked(DBusConnection *connection, DBusList *message_link) argument
4046 dbus_connection_pop_message(DBusConnection *connection) argument
4084 _dbus_connection_acquire_dispatch(DBusConnection *connection) argument
4120 _dbus_connection_release_dispatch(DBusConnection *connection) argument
4137 _dbus_connection_failed_pop(DBusConnection *connection, DBusList *message_link) argument
4147 notify_disconnected_unlocked(DBusConnection *connection) argument
4179 notify_disconnected_and_dispatch_complete_unlocked(DBusConnection *connection) argument
4206 _dbus_connection_get_dispatch_status_unlocked(DBusConnection *connection) argument
4254 _dbus_connection_update_dispatch_status_and_unlock(DBusConnection *connection, DBusDispatchStatus new_status) argument
4338 dbus_connection_get_dispatch_status(DBusConnection *connection) argument
4359 _dbus_connection_peer_filter_unlocked_no_update(DBusConnection *connection, DBusMessage *message) argument
4457 _dbus_connection_run_builtin_filters_unlocked_no_update(DBusConnection *connection, DBusMessage *message) argument
4509 dbus_connection_dispatch(DBusConnection *connection) argument
4886 dbus_connection_set_watch_functions(DBusConnection *connection, DBusAddWatchFunction add_function, DBusRemoveWatchFunction remove_function, DBusWatchToggledFunction toggled_function, void *data, DBusFreeFunction free_data_function) argument
4949 dbus_connection_set_timeout_functions(DBusConnection *connection, DBusAddTimeoutFunction add_function, DBusRemoveTimeoutFunction remove_function, DBusTimeoutToggledFunction toggled_function, void *data, DBusFreeFunction free_data_function) argument
4987 dbus_connection_set_wakeup_main_function(DBusConnection *connection, DBusWakeupMainFunction wakeup_main_function, void *data, DBusFreeFunction free_data_function) argument
5033 dbus_connection_set_dispatch_status_function(DBusConnection *connection, DBusDispatchStatusFunction function, void *data, DBusFreeFunction free_data_function) argument
5078 dbus_connection_get_unix_fd(DBusConnection *connection, int *fd) argument
5108 dbus_connection_get_socket(DBusConnection *connection, int *fd) argument
5150 dbus_connection_get_unix_user(DBusConnection *connection, unsigned long *uid) argument
5186 dbus_connection_get_unix_process_id(DBusConnection *connection, unsigned long *pid) argument
5218 dbus_connection_get_adt_audit_session_data(DBusConnection *connection, void **data, dbus_int32_t *data_size) argument
5264 dbus_connection_set_unix_user_function(DBusConnection *connection, DBusAllowUnixUserFunction function, void *data, DBusFreeFunction free_data_function) argument
5316 dbus_connection_get_windows_user(DBusConnection *connection, char **windows_sid_p) argument
5363 dbus_connection_set_windows_user_function(DBusConnection *connection, DBusAllowWindowsUserFunction function, void *data, DBusFreeFunction free_data_function) argument
5410 dbus_connection_set_allow_anonymous(DBusConnection *connection, dbus_bool_t value) argument
5438 dbus_connection_set_route_peer_messages(DBusConnection *connection, dbus_bool_t value) argument
5470 dbus_connection_add_filter(DBusConnection *connection, DBusHandleMessageFunction function, void *user_data, DBusFreeFunction free_data_function) argument
5522 dbus_connection_remove_filter(DBusConnection *connection, DBusHandleMessageFunction function, void *user_data) argument
5591 _dbus_connection_register_object_path(DBusConnection *connection, dbus_bool_t fallback, const char *path, const DBusObjectPathVTable *vtable, void *user_data, DBusError *error) argument
5631 dbus_connection_try_register_object_path(DBusConnection *connection, const char *path, const DBusObjectPathVTable *vtable, void *user_data, DBusError *error) argument
5661 dbus_connection_register_object_path(DBusConnection *connection, const char *path, const DBusObjectPathVTable *vtable, void *user_data) argument
5701 dbus_connection_try_register_fallback(DBusConnection *connection, const char *path, const DBusObjectPathVTable *vtable, void *user_data, DBusError *error) argument
5733 dbus_connection_register_fallback(DBusConnection *connection, const char *path, const DBusObjectPathVTable *vtable, void *user_data) argument
5768 dbus_connection_unregister_object_path(DBusConnection *connection, const char *path) argument
5800 dbus_connection_get_object_path_data(DBusConnection *connection, const char *path, void **data_p) argument
5837 dbus_connection_list_registered(DBusConnection *connection, const char *parent_path, char ***child_entries) argument
5928 dbus_connection_set_data(DBusConnection *connection, dbus_int32_t slot, void *data, DBusFreeFunction free_data_func) argument
5977 dbus_connection_get_data(DBusConnection *connection, dbus_int32_t slot) argument
6016 dbus_connection_set_max_message_size(DBusConnection *connection, long size) argument
6034 dbus_connection_get_max_message_size(DBusConnection *connection) argument
6055 dbus_connection_set_max_message_unix_fds(DBusConnection *connection, long n) argument
6073 dbus_connection_get_max_message_unix_fds(DBusConnection *connection) argument
6111 dbus_connection_set_max_received_size(DBusConnection *connection, long size) argument
6129 dbus_connection_get_max_received_size(DBusConnection *connection) argument
6153 dbus_connection_set_max_received_unix_fds(DBusConnection *connection, long n) argument
6171 dbus_connection_get_max_received_unix_fds(DBusConnection *connection) argument
6194 dbus_connection_get_outgoing_size(DBusConnection *connection) argument
6208 _dbus_connection_get_stats(DBusConnection *connection, dbus_uint32_t *in_messages, dbus_uint32_t *in_bytes, dbus_uint32_t *in_fds, dbus_uint32_t *in_peak_bytes, dbus_uint32_t *in_peak_fds, dbus_uint32_t *out_messages, dbus_uint32_t *out_bytes, dbus_uint32_t *out_fds, dbus_uint32_t *out_peak_bytes, dbus_uint32_t *out_peak_fds) argument
6255 dbus_connection_get_outgoing_unix_fds(DBusConnection *connection) argument
6275 _dbus_connection_get_address(DBusConnection *connection) argument
[all...]
H A Ddbus-connection-internal.h2 /* dbus-connection-internal.h DBusConnection internal interfaces
27 #include <dbus/dbus-connection.h>
47 void _dbus_connection_lock (DBusConnection *connection);
48 void _dbus_connection_unlock (DBusConnection *connection);
49 DBusConnection * _dbus_connection_ref_unlocked (DBusConnection *connection);
50 void _dbus_connection_unref_unlocked (DBusConnection *connection);
51 void _dbus_connection_queue_received_message_link (DBusConnection *connection,
53 dbus_bool_t _dbus_connection_has_messages_to_send_unlocked (DBusConnection *connection);
54 DBusMessage* _dbus_connection_get_message_to_send (DBusConnection *connection);
55 void _dbus_connection_message_sent_unlocked (DBusConnection *connection,
[all...]
H A Ddbus-connection.h2 /* dbus-connection.h DBusConnection object
50 /** Opaque type representing a connection to a remote application and associated incoming/outgoing message queues. */
128 typedef void (* DBusDispatchStatusFunction) (DBusConnection *connection,
143 typedef dbus_bool_t (* DBusAllowUnixUserFunction) (DBusConnection *connection,
153 typedef dbus_bool_t (* DBusAllowWindowsUserFunction) (DBusConnection *connection,
169 typedef DBusHandlerResult (* DBusHandleMessageFunction) (DBusConnection *connection,
179 DBusConnection* dbus_connection_ref (DBusConnection *connection);
181 void dbus_connection_unref (DBusConnection *connection);
183 void dbus_connection_close (DBusConnection *connection);
185 dbus_bool_t dbus_connection_get_is_connected (DBusConnection *connection);
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/emr/
H A Demrobject.py34 def __init__(self, connection=None):
35 self.connection = connection
37 def startElement(self, name, attrs, connection):
40 def endElement(self, name, value, connection):
56 def __init__(self, connection=None):
59 def endElement(self, name, value, connection):
72 def __ini__(self, connection=None):
73 self.connection = connection
[all...]
/external/autotest/frontend/afe/
H A Dreadonly_connection.py19 If disabled, connection() will return the global connection instead of the
20 readonly connection.
27 def connection(): function
28 """Return a readonly database connection."""
35 """Return a cursor on the readonly database connection."""
36 return connection().cursor()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/elb/
H A Dlistelement.py31 def startElement(self, name, attrs, connection):
34 def endElement(self, name, value, connection):
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/sqs/
H A Dtest_queue.py33 connection = Mock()
34 connection.region.name = 'us-east-1'
36 connection=connection,
42 connection = Mock()
43 connection.region.name = 'us-east-1'
45 connection=connection,
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
H A Dsslproxy.py25 """Sets up connection providing the certificate to the client.
35 def handle_servername(connection):
38 host = connection.get_servername()
46 connection.set_context(new_context)
54 handler.connection = certutils.get_ssl_connection(context, handler.connection)
55 handler.connection.set_accept_state()
57 handler.connection.do_handshake()
59 host = handler.connection.get_servername()
65 # Re-wrap the read/write streams with our new connection
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
H A Dattributes.py24 def __init__(self, connection=None):
25 self.connection = connection
29 def startElement(self, name, attrs, connection):
34 def endElement(self, name, value, connection):
40 def startElement(self, name, attrs, connection):
43 def endElement(self, name, value, connection):
49 def __init__(self, connection=None):
50 self.connection = connection
[all...]
H A Dregioninfo.py32 def __init__(self, connection=None, name=None, endpoint=None,
34 from boto.ec2.connection import EC2Connection
35 super(EC2RegionInfo, self).__init__(connection, name, endpoint,
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/
H A Dregioninfo.py29 def __init__(self, connection=None, name=None, endpoint=None,
31 from boto.sdb.connection import SDBConnection
32 super(SDBRegionInfo, self).__init__(connection, name, endpoint,
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sqs/
H A Dregioninfo.py29 def __init__(self, connection=None, name=None, endpoint=None,
31 from boto.sqs.connection import SQSConnection
32 super(SQSRegionInfo, self).__init__(connection, name, endpoint,

Completed in 860 milliseconds

1234567891011>>