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

1234567

/netbsd-current/external/gpl3/gcc.old/dist/libcc1/
H A Dmarshall.hh28 class connection;
34 // Read an integer from the connection and verify that it has the
36 status unmarshall_check (connection *, protocol_int v);
39 // connection.
40 status marshall_intlike (connection *, protocol_int);
42 // Read a type marker from the connection and verify that it is an
45 status unmarshall_intlike (connection *, protocol_int *);
47 status marshall_array_start (connection *, char, size_t);
48 status marshall_array_elmts (connection *, size_t, void *);
50 status unmarshall_array_start (connection *, cha
[all...]
H A Dconnection.hh1 /* 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 ();
58 // Read a single byte from the connection and verify that it
76 // function returns when the connection is closed.
82 // Register a callback with this connection
[all...]
H A Dcallbacks.hh28 class connection;
31 typedef status callback_ftype (connection *);
H A Dmarshall-c.hh29 unmarshall (connection *conn, enum gcc_c_symbol_kind *result)
39 unmarshall (connection *conn, enum gcc_c_oracle_request *result)
49 unmarshall (connection *conn, enum gcc_qualifiers *result)
H A Dconnection.cc27 #include "connection.hh"
30 cc1_plugin::connection::~connection ()
35 cc1_plugin::connection::print (const char *)
40 cc1_plugin::connection::send (char c)
48 cc1_plugin::connection::send (const void *buf, int len)
56 cc1_plugin::connection::require (char c)
68 cc1_plugin::connection::get (void *buf, int len)
76 cc1_plugin::connection::do_wait (bool want_result)
H A Dmarshall.cc24 #include "connection.hh"
27 cc1_plugin::unmarshall_check (connection *conn, unsigned long long check)
37 cc1_plugin::marshall_intlike (connection *conn, unsigned long long val)
45 cc1_plugin::unmarshall_intlike (connection *conn, unsigned long long *result)
53 cc1_plugin::marshall (connection *conn, const char *str)
69 cc1_plugin::unmarshall (connection *conn, char **result)
101 cc1_plugin::marshall_array_start (connection *conn, char id,
115 cc1_plugin::marshall_array_elmts (connection *conn, size_t n_bytes,
122 cc1_plugin::unmarshall_array_start (connection *conn, char id,
138 cc1_plugin::unmarshall_array_elmts (connection *con
[all...]
H A Dmarshall-cp.hh29 unmarshall (connection *conn, enum gcc_cp_symbol_kind *result)
39 unmarshall (connection *conn, enum gcc_cp_oracle_request *result)
49 unmarshall (connection *conn, enum gcc_cp_qualifiers *result)
59 unmarshall (connection *conn, enum gcc_cp_ref_qualifiers *result)
70 marshall (connection *conn, const gcc_vbase_array *a)
97 unmarshall (connection *conn, struct gcc_vbase_array **result)
142 marshall (connection *conn, const gcc_cp_template_args *a)
169 unmarshall (connection *conn, struct gcc_cp_template_args **result)
214 marshall (connection *conn, const gcc_cp_function_args *a)
238 unmarshall (connection *con
[all...]
H A Drpc.hh24 #include "connection.hh"
44 status unmarshall (connection *conn)
80 status unmarshall (connection *conn)
114 status unmarshall (connection *conn)
152 status unmarshall (connection *conn)
189 status unmarshall (connection *conn)
225 status unmarshall (connection *conn)
253 // "callbacks" and "connection" classes. It decodes incoming
259 call (connection *conn, const char *method, R *result)
274 template<typename R, R (*func) (connection *)>
[all...]
/netbsd-current/external/gpl3/gcc/dist/libcc1/
H A Dmarshall.hh30 class connection;
36 // Read an integer from the connection and verify that it has the
38 status unmarshall_check (connection *, protocol_int v);
41 // connection.
42 status marshall_intlike (connection *, protocol_int);
44 // Read a type marker from the connection and verify that it is an
47 status unmarshall_intlike (connection *, protocol_int *);
49 status marshall_array_start (connection *, char, size_t);
50 status marshall_array_elmts (connection *, size_t, void *);
52 status unmarshall_array_start (connection *, cha
[all...]
H A Dconnection.hh1 /* 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
[all...]
H A Dcallbacks.hh28 class connection;
31 typedef status callback_ftype (connection *);
H A Drpc.hh24 #include "connection.hh"
48 status unmarshall (connection *conn)
76 status unmarshall (connection *conn)
100 // "callbacks" and "connection" classes. It decodes incoming
106 call (connection *conn, const char *method, R *result, Arg... args)
126 unmarshall (connection *, std::tuple<T...> &)
134 unmarshall (connection *conn, std::tuple<T...> &value)
148 template<int I, R func (connection *, Arg...), typename... T>
150 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &,
157 template<int I, R func (connection *, Ar
[all...]
H A Dmarshall.cc24 #include "connection.hh"
28 cc1_plugin::unmarshall_check (connection *conn, unsigned long long check)
38 cc1_plugin::marshall_intlike (connection *conn, unsigned long long val)
46 cc1_plugin::unmarshall_intlike (connection *conn, unsigned long long *result)
54 cc1_plugin::marshall (connection *conn, const char *str)
70 cc1_plugin::unmarshall (connection *conn, char **result)
102 cc1_plugin::marshall_array_start (connection *conn, char id,
116 cc1_plugin::marshall_array_elmts (connection *conn, size_t n_bytes,
123 cc1_plugin::unmarshall_array_start (connection *conn, char id,
139 cc1_plugin::unmarshall_array_elmts (connection *con
[all...]
H A Dconnection.cc27 #include "connection.hh"
31 cc1_plugin::connection::send (char c)
39 cc1_plugin::connection::send (const void *buf, int len)
47 cc1_plugin::connection::require (char c)
59 cc1_plugin::connection::get (void *buf, int len)
67 cc1_plugin::connection::do_wait (bool want_result)
/netbsd-current/share/doc/psd/20.ipctut/
H A Dstrchkread.c96 printf("Ending connection\en");
H A Dstreamread.c41 * through the loop it accepts a connection and prints out messages from it.
42 * When the connection breaks, or a termination message comes through, the
43 * program accepts a new connection.
89 printf("Ending connection\en");
H A Dustreamread.c42 * loop it accepts a connection and prints out messages from it. When the
43 * connection breaks, or a termination message comes through, the program
44 * accepts a new connection.
77 printf("Ending connection\en");
/netbsd-current/external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/
H A Dtcp_conn_limit.conf12 tcp-connection-limit: 0.0.0.0/0 0
/netbsd-current/external/apache2/llvm/dist/llvm/utils/bugpoint/
H A DRemoteRunSafely.sh92 connection=$RUSER'@'$RHOST
96 $RCLIENT $connection $RPORT \
/netbsd-current/external/bsd/openldap/dist/tests/scripts/
H A Dtest081-totp.py51 def get_token_for(connection, dn, typ="totp"):
52 result = connection.search_s(dn, ldap.SCOPE_BASE)
58 result = connection.search_s(tokendn, ldap.SCOPE_BASE)
77 connection = LDAPObject(uri)
80 connection.bind_s(managerdn, passwd)
88 dn, token_entry = get_token_for(connection, babsdn)
91 result = connection.search_s(paramsdn, ldap.SCOPE_BASE)
130 dn, token_entry = get_token_for(connection, babsdn)
137 connection.modify_s(dn, [(ldap.MOD_REPLACE, 'oathTOTPLastTimeStep', [])])
155 connection
[all...]
/netbsd-current/external/mpl/bind/dist/bin/tests/system/checkconf/
H A Dbad-doh-duplicates.conf22 streams-per-connection 100;
29 streams-per-connection 100;
37 http-streams-per-connection 100;
/netbsd-current/external/mpl/dhcp/dist/dhcpctl/
H A Dcltest2.c89 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);
172 status = dhcpctl_disconnect(&connection,
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/drm/amd/display/modules/hdcp/
H A Damdgpu_hdcp.c36 struct mod_hdcp_trace *trace = &hdcp->connection.trace;
46 hdcp->connection.hdcp1_retry_count++;
48 hdcp->connection.hdcp2_retry_count++;
60 if (hdcp->connection.displays[i].state != MOD_HDCP_DISPLAY_INACTIVE &&
61 !hdcp->connection.displays[i].adjust.disable) {
67 return (hdcp->connection.hdcp1_retry_count < MAX_NUM_OF_ATTEMPTS) &&
69 !hdcp->connection.link.adjust.hdcp1.disable;
80 if (hdcp->connection.displays[i].state != MOD_HDCP_DISPLAY_INACTIVE &&
81 !hdcp->connection.displays[i].adjust.disable) {
87 return (hdcp->connection
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
H A Dpy-connection-removed.exp28 standard_testfile py-connection.c
41 # Register a callback that will trigger when a connection is removed
46 " num = event.connection.num" "" \
47 " type = event.connection.type" "" \
62 # Add an inferior that shares a connection with inferior 1.
63 gdb_test "add-inferior" "Added inferior 2 on connection 1 \[^\r\n\]+"
65 # Add an inferior with no connection.
66 gdb_test "add-inferior -no-connection" "Added inferior 3"
69 # it as this point that the remote target connection is removed. For the
70 # 'extended-remote' and 'native' targets the connection i
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.multi/
H A Dmulti-target-info-inferiors.py18 # Take a gdb.TargetConnection and return the connection number.
37 current_conn = gdb.selected_inferior().connection
60 # Print information about each inferior, and the connection it is
67 % (i.num, i.connection_num, make_target_connection_string(i.connection))

Completed in 206 milliseconds

1234567