Searched refs:server (Results 1 - 25 of 94) sorted by relevance

1234

/barrelfish-2018-10-04/lib/term/server/
H A Dserver.c3 * \brief Terminal server library (libterm_server) implementation.
26 #include <term/server/server.h>
40 * \param server Terminal server state.
43 errval_t term_server_change_in_ws(struct term_server *server, argument
46 assert(server != NULL);
52 collections_stack_top(server->in_binding_stack);
65 * \param server Terminal server stat
68 term_server_change_out_ws(struct term_server *server, struct waitset *ws) argument
93 term_server_change_conf_ws(struct term_server *server, struct waitset *ws) argument
118 term_server_change_session_ws(struct term_server *server, struct waitset *ws) argument
152 term_server_init(struct term_server *server, iref_t *session_iref, struct waitset *session_ws, struct waitset *in_ws, struct waitset *out_ws, struct waitset *conf_ws, term_characters_handler_fn chars_cb, term_server_configuration_handler_fn conf_cb, term_server_new_session_fn session_cb) argument
230 term_server_send(struct term_server *server, const char *data, size_t length) argument
252 term_server_set_chars_handler(struct term_server *server, term_characters_handler_fn chars_cb) argument
267 term_server_set_conf_handler(struct term_server *server, term_server_configuration_handler_fn *conf_cb) argument
282 term_server_set_err_handler(struct term_server *server, term_async_err_handler_fn err_cb) argument
297 term_server_set_new_session_handler(struct term_server *server, term_server_new_session_fn session_cb) argument
324 struct term_server *server = arg; local
356 check_first_client_connected(struct term_server *server) argument
383 struct term_server *server = b->st; local
394 struct term_server *server = st; local
413 struct term_server *server = b->st; local
424 struct term_server *server = st; local
442 struct term_server *server = b->st; local
454 struct term_server *server = b->st; local
462 struct term_server *server = st; local
479 check_session_initialized(struct term_server *server) argument
516 struct term_server *server = st; local
538 struct term_server *server = st; local
560 struct term_server *server = st; local
584 struct term_server *server = b->st; local
663 struct term_server *server = st; local
679 struct term_server *server = st; local
[all...]
/barrelfish-2018-10-04/usr/ramfsd/
H A Dwebserver_network.h18 void http_server_init(struct ip_addr server, const char *path);
/barrelfish-2018-10-04/usr/webserver/
H A Dwebserver_network.h18 void http_server_init(struct in_addr server, const char *path);
H A Dhttp_cache.h3 * \brief File cache for HTTP server
18 errval_t http_cache_init (struct in_addr server, const char *path,
/barrelfish-2018-10-04/usr/block_server/
H A Dnetwork_client.h28 errval_t block_net_connect(struct block_net_service *server,
35 errval_t block_net_disconnect(struct block_net_service *server);
40 errval_t block_net_read(struct block_net_service *server,
49 errval_t block_net_write(struct block_net_service *server,
55 errval_t block_net_pass(struct block_net_service *server,
61 errval_t block_net_release(struct block_net_service *server,
H A Dnetwork_client.c198 * callback when the connection to the server is established.
226 static errval_t block_net_send_ep(struct block_net_service *server) argument
230 assert(server->rx_chan.state != BULK_STATE_UNINITIALIZED);
231 assert(server->tx_chan.state != BULK_STATE_UNINITIALIZED);
243 msg->msg.setup.tx_ep.ip = server->tpcb->local_ip;
245 msg->msg.setup.rx_ep.ip = server->tpcb->local_ip;
248 msg->msg.setup.rx_ep = *((struct bulk_net_endpoint_descriptor*) server
251 msg->msg.setup.tx_ep = *((struct bulk_net_endpoint_descriptor*) server
256 err = tcp_write(server->tpcb, msg, size, TCP_WRITE_FLAG_COPY);
263 err = tcp_output(server
298 block_net_connect(struct block_net_service *server, struct ip_addr *ip, uint16_t port) argument
427 block_net_disconnect(struct block_net_service *server) argument
460 block_net_read(struct block_net_service *server, size_t block_start, size_t count, uint32_t seqn, struct bulk_continuation cont) argument
525 block_net_write(struct block_net_service *server, size_t count, struct bulk_buffer **buf, struct bs_meta_data *meta, struct bulk_continuation cont) argument
559 block_net_pass(struct block_net_service *server, size_t count, struct bulk_buffer **buf, struct bs_meta_data *meta, struct bulk_continuation cont) argument
593 block_net_release(struct block_net_service *server, size_t count, struct bulk_buffer **buf, struct bs_meta_data *meta, struct bulk_continuation cont) argument
[all...]
H A Dlocal_server.h3 * \brief Network server thread of the bulk server
50 errval_t block_local_init(struct block_net_service *server, uint32_t flags);
/barrelfish-2018-10-04/include/term/server/
H A Dserver.h3 * \brief Terminal server library (libterm_server) API.
118 * Characters for the client (output for the server, input for the client)
152 * Session this terminal server is associated with.
169 errval_t term_server_change_in_ws(struct term_server *server,
172 errval_t term_server_change_out_ws(struct term_server *server,
175 errval_t term_server_change_conf_ws(struct term_server *server,
178 errval_t term_server_change_session_ws(struct term_server *server,
181 errval_t term_server_init(struct term_server *server, iref_t *session_iref,
188 void term_server_send(struct term_server *server, const char *data,
191 void term_server_set_chars_handler(struct term_server *server,
208 term_server_sending(struct term_server *server) argument
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/state_machine/
H A DMakefile9 ./state_machine 10000 ../../apps/server.pem ../../apps/server.pem
/barrelfish-2018-10-04/usr/bench/udp_echo/
H A Drun_multiloop.sh8 server=$4
15 #echo Running $client_type $port $server $request_delay $n_ops_per_process $my_starting_id
16 $client_type $port $server $request_delay $n_ops_per_client $my_starting_id > /tmp/udp_openloop.$n.log &
/barrelfish-2018-10-04/usr/drivers/serial/
H A Dterminal_service.c21 #include <term/server/server.h>
27 static struct term_server server; variable in typeref:struct:term_server
31 term_server_send(&server, data, length);
60 err = term_server_init(&server, &iref, ws, ws, ws, ws, characters_handler,
/barrelfish-2018-10-04/usr/tests/tftpclient/
H A Dmain.c20 static char *server = "127.0.0.1"; variable
47 server = uri;
55 if (strncmp(argv[i], "--server=", 9) == 0) {
64 debug_printf("TFTP SERVER: %s:%u\n", server, port);
65 err = tftp_client_connect(server, port);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/util/
H A Dmkcerts.sh8 # cat certs/*.pem >>apps/server.pem
91 # create server request.
92 echo creating 512 bit server cert request
109 echo problems generating 512 bit server cert request
115 echo signing 512 bit server cert
120 -in s512-req.pem -out server.pem
123 echo problems signing 512 bit server cert
128 # create 1024 bit server request.
129 echo creating 1024 bit server cert request
146 echo problems generating 1024 bit server cer
[all...]
/barrelfish-2018-10-04/include/lwip2/lwip/apps/
H A Dsntp.h62 void sntp_setservername(u8_t idx, char *server);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/test/
H A Dtestssl4 key=../apps/server.pem
9 cert=../apps/server.pem
38 echo test sslv2 with server authentication
45 echo test sslv2 with both client and server authentication
52 echo test sslv3 with server authentication
58 echo test sslv3 with both client and server authentication
64 echo test sslv2/sslv3 with server authentication
70 echo test sslv2/sslv3 with both client and server authentication
76 echo test sslv2 with server authentication via BIO pair
83 echo test sslv2 with both client and server authenticatio
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ms/
H A Dtest.bat84 echo test sslv2 with server authentication
92 echo test sslv2 with both client and server authentication
100 echo test sslv3 with server authentication
108 echo test sslv3 with both client and server authentication
116 echo test sslv2/sslv3 with server authentication
124 echo test sslv2/sslv3 with both client and server authentication
136 echo test sslv2 with server authentication via BIO pair
144 echo test sslv2 with both client and server authentication via BIO pair
152 echo test sslv3 with server authentication via BIO pair
160 echo test sslv3 with both client and server authenticatio
[all...]
H A Dtestce.bat123 cecopy ..\apps\server.pem CE:\OpenSSL
130 echo test sslv2 with server authentication
138 echo test sslv2 with both client and server authentication
146 echo test sslv3 with server authentication
154 echo test sslv3 with both client and server authentication
162 echo test sslv2/sslv3 with server authentication
170 echo test sslv2/sslv3 with both client and server authentication
182 echo test sslv2 with server authentication via BIO pair
190 echo test sslv2 with both client and server authentication via BIO pair
198 echo test sslv3 with server authenticatio
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/tunala/
H A Dtest.sh11 -cacert CA.pem -cert A-client.pem -server 0 \
15 -cacert CA.pem -cert A-server.pem -server 1 \
94 echo "Tests will assume an http server running at $HTTP"
/barrelfish-2018-10-04/lib/libc/rpc/
H A Dsvc_raw.c44 * Interface to create an rpc client and server in the same UNIX process.
68 SVCXPRT *server; member in struct:svc_raw_private
107 srp->server = svc_xprt_alloc();
108 if (srp->server == NULL) {
116 srp->server->xp_fd = FD_SETSIZE;
117 srp->server->xp_port = 0;
118 svc_raw_ops(srp->server);
119 srp->server->xp_verf.oa_base = srp->verf_body;
121 xprt_register(srp->server);
123 return (srp->server);
[all...]
/barrelfish-2018-10-04/lib/nfs/
H A Drpc.h65 struct in_addr server; ///< Server IP member in struct:rpc_client
89 errval_t rpc_init(struct rpc_client *client, struct in_addr server);
/barrelfish-2018-10-04/lib/posixcompat/
H A Dpty.h16 #include <term/server/server.h>
40 * Terminal server state of master side.
/barrelfish-2018-10-04/usr/eclipseclp/documents/mpslib/
H A Doutline.tex119 {\it name server} or {\it nsrv} process. This process integrates the
122 that make use of the same name server can communicate with each other.
133 on the Internet supported by a single name server process, i.e. the
156 Initialisation for message passing and association with a name server
159 application. The name server is identified by the name of the host on
160 which the name server resides. The name of the host is a simple string,
163 With {\it mps\_ping} the name server can be pinged, i.e. it succeeds if
164 the name server is up and running. Normally, it is not used in an
169 deregistering ports with the name server, respectively. Deregistration
170 is protected by a signature that is passed to the name server a
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Ds_socket.c329 struct sockaddr_in server; local
334 memset((char *)&server,0,sizeof(server));
335 server.sin_family=AF_INET;
336 server.sin_port=htons((unsigned short)port);
338 server.sin_addr.s_addr=INADDR_ANY;
342 memcpy(&server.sin_addr.s_addr,ip,4);
344 memcpy(&server.sin_addr,ip,4);
360 if (bind(s,(struct sockaddr *)&server,sizeof(server))
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bio/
H A Db_sock.c613 } server,client; local
685 addrlen = res->ai_addrlen<=sizeof(server) ?
687 sizeof(server);
688 memcpy(&server, res->ai_addr, addrlen);
697 memset((char *)&server,0,sizeof(server));
698 server.sa_in.sin_family=AF_INET;
699 server.sa_in.sin_port=htons(port);
700 addrlen = sizeof(server.sa_in);
703 server
[all...]
/barrelfish-2018-10-04/usr/tests/octopus/
H A Dd2bench.c30 cycles_t server; member in struct:timestamp
85 - bench_tscoverhead(), timestamps[k].server,
138 - bench_tscoverhead(), timestamps[k].server,
170 timestamps[i].server, timestamps[i].busy);
201 timestamps[i].server, timestamps[i].busy);

Completed in 298 milliseconds

1234