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

/freebsd-current/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-current/sys/netgraph/
H A Dng_source.c775 ng_source_send(sc_p sc, int tosend, int *sent_p) argument
781 KASSERT(tosend >= 0, ("%s: negative tosend param", __func__));
785 if ((uint64_t)tosend > sc->packets)
786 tosend = sc->packets;
789 for (sent = 0; error == 0 && sent < tosend; ++sent) {
/freebsd-current/sys/netpfil/ipfw/test/
H A Dmain.c46 struct mbuf *tosend; /* packet to send -- also flag to enqueue */ member in struct:cfg_s
210 i, c->_enqueue, c->tosend, c->can_dequeue);
211 if ( (m = c->tosend) ) {
642 * (the packet is in c->tosend) and/or receive (flag c->can_dequeue)
658 c->tosend = NULL;
719 m = c->tosend = c->freelist;
722 m = c->tosend = calloc(1, sizeof(struct mbuf));
/freebsd-current/tools/tools/netmap/
H A Dpkt-gen.c1284 u_int tosend = size; local
1306 tosend -= frag_size;
1315 memcpy(p, f, tosend);
1326 slot->len = tosend;
1328 dump_payload(p, tosend, ring, head);
1397 int rate_limit = targ->g->tx_rate, tosend = 0; local
1428 if (rate_limit && tosend <= 0) {
1429 tosend = targ->g->burst;
1434 limit = rate_limit ? tosend : targ->g->burst;
1463 tosend
1744 int tosend = 0; local
[all...]
/freebsd-current/tools/regression/sockets/unix_gc/
H A Dunix_gc.c302 twosome_drop_work(const char *testname, int sendvia, int tosend, int closefirst) argument
311 sendfd(sv[sendvia], sv[tosend]);
/freebsd-current/sys/dev/nvmf/
H A Dnvmf_tcp.c1308 u_long space, tosend; local
1372 tosend = m->m_len;
1375 while (n != NULL && tosend + n->m_len <= space) {
1376 tosend += n->m_len;
1384 KASSERT(m_length(m, NULL) == tosend,

Completed in 187 milliseconds