Searched refs:send (Results 1 - 25 of 104) sorted by relevance

12345

/barrelfish-master/usr/kaluga/
H A Dqueue.h28 send_handler_fn send; member in struct:mon_msg_state
H A Dqueue.c9 // If more state in the queue, send it
11 current->send(b, current);
35 // Reregister for sending, if we need to send more
/barrelfish-master/lib/libc/net/
H A Dsend.c31 static char sccsid[] = "@(#)send.c 8.2 (Berkeley) 2/21/94";
43 send(int s, const void *msg, size_t len, int flags) function
46 * POSIX says send() shall be a cancellation point, so call the
/barrelfish-master/lib/openssl-1.0.0d/crypto/jpake/
H A Djpake.h68 int JPAKE_STEP1_generate(JPAKE_STEP1 *send, JPAKE_CTX *ctx);
77 int JPAKE_STEP2_generate(JPAKE_STEP2 *send, JPAKE_CTX *ctx);
87 int JPAKE_STEP3A_generate(JPAKE_STEP3A *send, JPAKE_CTX *ctx);
92 int JPAKE_STEP3B_generate(JPAKE_STEP3B *send, JPAKE_CTX *ctx);
H A Djpake.c276 int JPAKE_STEP1_generate(JPAKE_STEP1 *send, JPAKE_CTX *ctx) argument
279 generate_step_part(&send->p1, ctx->xa, ctx->p.g, ctx);
280 generate_step_part(&send->p2, ctx->xb, ctx->p.g, ctx);
345 int JPAKE_STEP2_generate(JPAKE_STEP2 *send, JPAKE_CTX *ctx) argument
371 generate_step_part(send, t2, t1, ctx);
456 int JPAKE_STEP3A_generate(JPAKE_STEP3A *send, JPAKE_CTX *ctx) argument
458 quickhashbn(send->hhk, ctx->key);
459 SHA1(send->hhk, sizeof send->hhk, send
484 JPAKE_STEP3B_generate(JPAKE_STEP3B *send, JPAKE_CTX *ctx) argument
[all...]
/barrelfish-master/usr/bench/ump_bench/
H A Dthroughput.c29 struct ump_chan_state *send = &chan->send_chan; local
38 while (!(msg = ump_impl_get_next(send, &ctrl)));
48 while (!(msg = ump_impl_get_next(send, &ctrl)));
H A Dlatency.c29 struct ump_chan_state *send = &chan->send_chan; local
39 while (!(msg = ump_impl_get_next(send, &ctrl)));
H A Dreceive.c29 struct ump_chan_state *send = &chan->send_chan; local
39 while (!(msg = ump_impl_get_next(send, &ctrl)));
H A Dsend.c29 struct ump_chan_state *send = &chan->send_chan; local
32 printf("Running send between core %d and core %d\n",
40 while (!(msg = ump_impl_get_next(send, &ctrl)));
H A Dexchange.c55 struct ump_chan_state *send = &chan->send_chan; local
67 while (!(msg = ump_impl_get_next(send, &ctrl)));
123 struct ump_chan_state *send = &chan->send_chan; local
136 while (!(msg = ump_impl_get_next(send, &ctrl)));
H A Dlatency_cache.c39 struct ump_chan_state *send = &chan->send_chan; local
70 while (!(msg = ump_impl_get_next(send, &ctrl)));
H A Dmain.c59 struct ump_chan_state *send = &chan->send_chan; local
68 while (!(msg = ump_impl_get_next(send, &ctrl)));
/barrelfish-master/lib/openssl-1.0.0d/ssl/
H A Dd1_enc.c129 int dtls1_enc(SSL *s, int send) argument
137 if (send)
180 printf("dtls1_enc(%d)\n", send);
194 if ((bs != 1) && send)
231 if (!send)
248 if ((bs != 1) && !send)
H A Ds2_enc.c121 void ssl2_enc(SSL *s, int send) argument
127 if (send)
151 void ssl2_mac(SSL *s, unsigned char *md, int send) argument
158 if (send)
/barrelfish-master/tools/tracing/
H A Dbfscope.py23 s.send("trace\n")
/barrelfish-master/usr/tests/thcidctest/
H A Dthcidctest.c81 cl.send.str0(&cl, 42, s);
87 cl.send.arr0(&cl, 42, "abc", 3);
100 cl.send.slow_op(&cl, 100);
110 cl.send.ping(&cl, val);
115 // invoking the underlying send operation directly
119 cl.send.testrpc(&cl, val);
196 fprintf(stderr, "Testing cancellation: cancelling a send that blocks\n");
247 cl.send.testrpc(&cl, v);
252 cl.send.testrpc2(&cl, v);
380 cl.send
[all...]
/barrelfish-master/kernel/include/
H A Ddispatch.h80 errval_t lmp_deliver_payload(struct capability *ep, struct dcb *send,
83 errval_t lmp_deliver(struct capability *ep, struct dcb *send,
/barrelfish-master/usr/examples/xmpl-thc-binding/
H A Dthc-binding.c35 cl->send.mymsg(cl, i);
39 cl->send.mycall(cl, i);
45 cl->send.myrpc(cl, i);
92 // send reply
97 sv->send.myrpc(sv, s);
107 // send reply
112 sv->send.myresponse(sv, s);
/barrelfish-master/kernel/
H A Ddispatch.c132 * \brief Transfer cap from 'send' to 'ep', according to 'msg'.
135 * the cap from CSpace in DCB 'send' accordingly.
138 * \param send Pointer to sending DCB.
144 static errval_t lmp_transfer_cap(struct capability *ep, struct dcb *send, argument
151 assert(send != NULL);
192 err = caps_lookup_slot(&send->cspace.cap, send_cptr, send_level,
207 /* Insert send cap into recv cap */
226 * \param ep Endpoint capability to send to
276 * \param ep Endpoint capability to send to
277 * \param send DC
284 lmp_deliver_payload(struct capability *ep, struct dcb *send, uintptr_t *payload, size_t payload_len, bool captransfer, bool now) argument
363 lmp_deliver(struct capability *ep, struct dcb *send, uintptr_t *payload, size_t len, capaddr_t send_cptr, uint8_t send_level, bool give_away) argument
[all...]
/barrelfish-master/usr/tests/thcminitest/
H A Dthcminitest.c59 cl.send.ping(&cl, val);
65 cl.send.stop(&cl);
81 sv->send.pong(sv, val);
/barrelfish-master/lib/posixcompat/
H A Dwrite.c34 ret = send(fd, buf, len, 0);
/barrelfish-master/usr/drivers/rtc/
H A Dmain.c39 msg->conn->f->send(reply);
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dscheduler.c48 ** recv-id, msg-type, send-id
259 struct st_id_ds send; member in struct:__anon1638
265 struct st_id_ds send; member in struct:__anon1639
272 struct st_id_ds send; member in struct:__anon1640
280 struct st_id_ds send; member in struct:__anon1641
287 struct st_id_ds send; member in struct:__anon1642
296 struct st_id_ds send; member in struct:__anon1643
304 struct st_id_ds send; member in struct:__anon1644
313 struct st_id_ds send; member in struct:__anon1645
459 static void smsg_snd00(recv, type, send)
816 st_id_t *send; local
[all...]
/barrelfish-master/usr/netfile/
H A Dnetfile.c2 * \brief Simple program to send or receive files through a TCP/IP connection
314 // ran out of memory, wait for a send to happen
329 // debug_printf("\tdidn't send whole message, so going to send rest now\n");
378 // debug_printf("going to send file\n");
412 debug_printf("send file %s to %s:%d\n", path, ipaddr_ntoa(addr), port);
438 debug_printf("send finished.\n");
457 bool send; member in struct:args
466 .send = false,
477 // send
[all...]
/barrelfish-master/lib/dma/
H A Ddma_service.c100 msg_st->send = dma_register_response_tx;
134 msg_st->send = dma_deregister_response_tx;
176 msg_st->send = dma_memcpy_response_tx;
403 msg_st->send = dma_done_tx;

Completed in 208 milliseconds

12345