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

/freebsd-11.0-release/sys/netgraph/
H A Dng_source.c765 ng_source_send(sc_p sc, int tosend, int *sent_p) argument
771 KASSERT(tosend >= 0, ("%s: negative tosend param", __func__));
775 if ((uint64_t)tosend > sc->packets)
776 tosend = sc->packets;
779 for (sent = 0; error == 0 && sent < tosend; ++sent) {
/freebsd-11.0-release/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.0-release/tools/tools/netmap/
H A Dpkt-gen.c1126 int tosend = 0; local
1132 if (rate_limit && tosend <= 0) {
1133 tosend = targ->g->burst;
1160 int m, limit = rate_limit ? tosend : targ->g->burst;
1176 tosend -= m;
1177 if (tosend <= 0)
/freebsd-11.0-release/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 176 milliseconds