Searched refs:tosend (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_sigqueue.c133 * given a array of signals to be delivered in tosend of size len
138 sigorder(int *ordered, const int *tosend, size_t len) argument
140 memcpy(ordered, tosend, len * sizeof(*tosend));
/freebsd-11-stable/sys/netgraph/
H A Dng_source.c776 ng_source_send(sc_p sc, int tosend, int *sent_p) argument
782 KASSERT(tosend >= 0, ("%s: negative tosend param", __func__));
786 if ((uint64_t)tosend > sc->packets)
787 tosend = sc->packets;
790 for (sent = 0; error == 0 && sent < tosend; ++sent) {
/freebsd-11-stable/sys/netpfil/ipfw/test/
H A Dmain.c47 struct mbuf *tosend; /* packet to send -- also flag to enqueue */ member in struct:cfg_s
213 i, c->_enqueue, c->tosend, c->can_dequeue);
214 if ( (m = c->tosend) ) {
646 * (the packet is in c->tosend) and/or receive (flag c->can_dequeue)
662 c->tosend = NULL;
723 m = c->tosend = c->freelist;
726 m = c->tosend = calloc(1, sizeof(struct mbuf));
/freebsd-11-stable/tools/tools/netmap/
H A Dpkt-gen.c1182 u_int tosend = size; local
1204 tosend -= frag_size;
1213 memcpy(p, f, tosend);
1224 slot->len = tosend;
1226 dump_payload(p, tosend, ring, head);
1295 int rate_limit = targ->g->tx_rate, tosend = 0; local
1322 if (rate_limit && tosend <= 0) {
1323 tosend = targ->g->burst;
1328 limit = rate_limit ? tosend : targ->g->burst;
1357 tosend
1623 int tosend = 0; local
[all...]
/freebsd-11-stable/tools/regression/sockets/unix_gc/
H A Dunix_gc.c304 twosome_drop_work(const char *testname, int sendvia, int tosend, int closefirst) argument
313 sendfd(sv[sendvia], sv[tosend]);

Completed in 150 milliseconds