HomeSort by: relevance | last modified time | path
    Searched defs:connection (Results 1 - 25 of 47) sorted by relevancy

1 2

  /src/external/mpl/dhcp/dist/omapip/
test.c 21 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
49 omapi_object_t *connection = (omapi_object_t*)0; local
91 status = omapi_generic_new (&connection, MDL);
97 status = omapi_protocol_connect (connection,
103 status = omapi_wait_for_completion (connection, 0);
  /src/external/gpl3/gcc/dist/libcc1/
connection.hh 1 /* Plugin connection declarations
28 // The connection class represents one side of the connection
31 class connection class in namespace:cc1_plugin
35 connection (int fd) function in class:cc1_plugin::connection
42 connection (int fd, int aux_fd) function in class:cc1_plugin::connection
49 virtual ~connection () = default;
51 connection (const connection &) = delete;
52 connection &operator= (const connection &) = delete
    [all...]
gdbctx.hh 72 // Make a new connection.
75 connection.reset (new local_connection (fd, aux_fd, this));
79 // any needed callbacks on the connection.
82 // A local subclass of connection that holds a back-pointer to the
84 class local_connection : public cc1_plugin::connection
89 : connection (fd, aux_fd),
102 std::unique_ptr<local_connection> connection; member in struct:cc1_plugin::base_gdb_plugin
246 if (connection->send ('H')
247 && ::cc1_plugin::marshall (connection.get (), fe_version))
248 result = connection->wait_for_query ()
    [all...]
  /src/external/gpl3/gcc.old/dist/libcc1/
connection.hh 1 /* Plugin connection declarations
28 // The connection class represents one side of the connection
31 class connection class in namespace:cc1_plugin
35 connection (int fd) function in class:cc1_plugin::connection
42 connection (int fd, int aux_fd) function in class:cc1_plugin::connection
49 virtual ~connection () = default;
51 connection (const connection &) = delete;
52 connection &operator= (const connection &) = delete
    [all...]
gdbctx.hh 72 // Make a new connection.
75 connection.reset (new local_connection (fd, aux_fd, this));
79 // any needed callbacks on the connection.
82 // A local subclass of connection that holds a back-pointer to the
84 class local_connection : public cc1_plugin::connection
89 : connection (fd, aux_fd),
102 std::unique_ptr<local_connection> connection; member in struct:cc1_plugin::base_gdb_plugin
246 if (connection->send ('H')
247 && ::cc1_plugin::marshall (connection.get (), fe_version))
248 result = connection->wait_for_query ()
    [all...]
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/test/tests/
srpl-host-0i-2s.c 40 test_host_0i2s_test_finished(srpl_connection_t *connection)
42 test_state_t *state = connection->test_state;
43 srp_server_t *server = connection->instance->domain->server_state;
140 " to the other server through SRPL connection and the host is then registered on that server.";
148 // create an outgoing connection from secondary to primary
149 srpl_connection_t *connection = test_srpl_connection_create(state, state->primary, second); local
150 connection->srpl_advertise_finished_callback = test_host_0i2s_test_finished;
srpl-lease-time.c 95 test_srpl_lease_time_replication_finished(srpl_connection_t *connection)
97 test_state_t *state = connection->test_state;
98 srp_server_t *server = connection->instance->domain->server_state;
184 // create an outgoing connection from second to primary
185 srpl_connection_t *connection = test_srpl_connection_create(state, state->primary, second); local
186 connection->srpl_advertise_finished_callback = test_srpl_lease_time_replication_finished;
srpl-cycle-through-peers.c 112 test_srpl_cycle_through_peers_replication_finished(srpl_connection_t *connection);
118 // create an outgoing connection from new server to previous
119 srpl_connection_t *connection = test_srpl_connection_create(state, prev, new); local
121 connection->srpl_advertise_finished_callback = test_srpl_cycle_through_peers_replication_finished;
129 test_srpl_cycle_through_peers_replication_finished(srpl_connection_t *connection)
131 test_state_t *state = connection->test_state;
132 srp_server_t *client = connection->instance->domain->server_state;
133 srp_server_t *server = connection->server;
136 // stop listener on the server of the srpl connection
srpl-update-after-remove.c 160 test_srpl_update_after_remove_replication_finished(srpl_connection_t *connection)
162 test_state_t *state = connection->test_state;
163 srp_server_t *client = connection->instance->domain->server_state;
164 srp_server_t *server = connection->server;
209 // create an outgoing connection from second to primary
210 srpl_connection_t *connection = test_srpl_connection_create(state, state->primary, second); local
211 connection->srpl_advertise_finished_callback = test_srpl_update_after_remove_replication_finished;
256 " the srpl connection. The second srp server reconnects and send srp update to the\n"
  /src/external/mit/libuv/dist/test/
test-tcp-read-stop-start.c 18 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
26 static uv_tcp_t connection; variable
67 /* Do write on a half open connection to force WSAECONNABORTED (on Windows)
91 ASSERT_OK(uv_tcp_init(server->loop, &connection));
93 ASSERT_OK(uv_accept(server, (uv_stream_t* )&connection));
95 ASSERT_OK(uv_read_start((uv_stream_t*)&connection, on_alloc, on_read1));
test-tcp-close-after-read-timeout.c 18 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
26 static uv_tcp_t connection; variable
105 ASSERT_OK(uv_accept(server, (uv_stream_t*) &connection));
107 r = uv_read_start((uv_stream_t*) &connection,
116 handle == (uv_handle_t*) &connection ||
166 r = uv_tcp_init(loop, &connection);
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/test/
test-srpl.c 90 test_srpl_connection_connected(comm_t *connection, void *context)
93 connection->srp_server = server;
141 instance->connection = srpl_connection;
142 RETAIN_HERE(instance->connection, srpl_connection);
148 // create outgoing connection from client to server. It'll connect once the listener
153 srpl_connection_t *connection = test_srpl_instance_connection_create(state, client); local
154 connection->next = server->connections;
155 connection->server = server;
156 server->connections = connection;
157 return connection;
    [all...]
test-api.c 50 comm_t *NULLABLE connection; member in struct:io_context
222 // Deactivate can be called with a connection still active; in this case, we need to wait for the
224 if (io_context->connection != NULL) {
225 ioloop_comm_cancel(io_context->connection);
246 if (io_context->connection) {
247 io_context->connection = NULL;
255 srp_test_send_intercept(comm_t *connection, message_t *UNUSED responding_to,
259 srp_server_t *srp_server = connection->test_context;
279 if (!connection->tcp_stream) {
319 if (io_context->connection) {
    [all...]
  /src/external/mpl/dhcp/dist/dhcpctl/
cltest.c 21 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
117 dhcpctl_handle connection; local
152 connection = dhcpctl_null_handle;
154 status = dhcpctl_connect (&connection, "127.0.0.1", 7911,
164 connection, "interface");
183 status = dhcpctl_open_object (interface_handle, connection,
194 status = dhcpctl_open_object (interface_handle, connection, 0);
212 status = dhcpctl_object_remove (connection, interface_handle);
cltest2.c 20 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
89 dhcpctl_handle connection; local
112 connection = 0;
113 status = dhcpctl_connect (&connection, ip_address, port, 0);
118 status = dhcpctl_new_object (&host, connection, "host");
125 status = dhcpctl_open_object (host, connection, 0);
135 status = dhcpctl_open_object (host, connection,
155 status = dhcpctl_disconnect(&connection, 0);
159 status = dhcpctl_connect (&connection, ip_address, port, 0);
163 status = dhcpctl_object_refresh (connection, host)
    [all...]
omshell.c 21 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
109 dhcpctl_handle connection; local
444 memset (&connection, 0, sizeof connection);
445 status = dhcpctl_connect (&connection,
463 if (!connected || !connection) {
468 status = dhcpctl_disconnect (&connection, 0);
496 status = dhcpctl_new_object (&oh, connection, val);
706 status = dhcpctl_open_object (oh, connection, i);
740 status = dhcpctl_object_update(connection, oh)
    [all...]
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
probe-srp.c 63 comm_t *connection; member in struct:probe_state
85 if (probe_state->connection != NULL) {
86 ioloop_comm_release(probe_state->connection);
87 probe_state->connection = NULL;
112 if (probe_state->connection != NULL) {
113 ioloop_comm_cancel(probe_state->connection); // Cancel the connection (should result in the state being released)
114 ioloop_comm_release(probe_state->connection);
115 probe_state->connection = NULL;
177 probe_srp_datagram(comm_t *connection, message_t *message, void *context
    [all...]
advertising_proxy_services.c 88 advertising_proxy_conn_ref connection = context; local
89 connection->io_context = NULL;
90 RELEASE_HERE(connection, advertising_proxy_conn_ref);
109 adv_message_parse(cti_connection_t connection)
114 cti_connection_parse_start(connection);
115 if (!cti_connection_u16_parse(connection, &connection->message_type)) {
119 if (connection->message_type != kDNSSDAdvertisingProxyResponse) {
120 syslog(LOG_ERR, "adv_message_parse: unexpected message type %d", connection->message_type);
124 if (!cti_connection_u32_parse(connection, (uint32_t *)&status))
154 cti_connection_t connection = context; local
290 cti_connection_t connection; local
    [all...]
  /src/external/mit/xorg/bin/xfs/
Makefile 17 SRCS+= access.c config.c connection.c daemon.c error.c io.c osglue.c \
25 CONN_DEFINES= ${X11FLAGS.CONNECTION} -DFONT_t -DTRANS_SERVER \
31 CPPFLAGS.connection.c= ${CONN_DEFINES} -DBSD44SOCKETS \
  /src/sys/external/bsd/vchiq/dist/interface/vchi/
vchi.h 39 #include "interface/vchi/connections/connection.h"
129 VCHI_CONNECTION_T *connection; member in struct:__anon6368
186 extern int32_t vchi_crc_control( VCHI_CONNECTION_T *connection,
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/io/
xs_wire.h 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
126 uint32_t connection; member in struct:xenstore_domain_interface
139 /* Valid values for the connection field */
  /src/external/apache2/mDNSResponder/dist/mDNSCore/
uDNS.h 104 dso_connect_state_t *connectInfo; // DSO Connection state information.
105 dso_state_t *connection; // DNS Stateful Operations/TCP Connection pointer, might be null. member in struct:mDNS_DNSPushServer
106 DNSPushServer_ConnectState connectState; // Current status of connection attempt to this server.
  /src/external/bsd/wpa/dist/wpa_supplicant/dbus/
dbus_new_helpers.h 30 DBusConnection *connection; member in struct:wpa_dbus_object_desc
  /src/external/mit/xorg/server/xorg-server.old/os/
Makefile 9 SRCS= WaitFor.c access.c auth.c connection.c io.c mitauth.c \
25 ${X11FLAGS.CONNECTION} \
52 CPPFLAGS.connection.c= ${XDMCP_DEFINES} -DBSD44SOCKETS
  /src/external/apache2/mDNSResponder/dist/DSO/
dso-transport.h 32 // Threshold above which we indicate that a DSO connection isn't writable. This is advisory,
52 nw_connection_t connection; member in struct:dso_transport
58 TCPSocket *connection; // Socket connected to Discovery Proxy member in struct:dso_transport
143 nw_connection_t connection; member in struct:dso_connect_state

Completed in 46 milliseconds

1 2