Searched refs:tcb (Results 1 - 9 of 9) sorted by relevance
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ |
H A D | eepro100.c | 448 struct ifec_tcb *tcb = priv->tcb_head->next; local 454 if ( tcb->status || tcb->iob ) { 460 iob_len ( iobuf ), tcb->status, inw ( ioaddr + SCBCmd ) ); 462 tcb->command = CmdSuspend | CmdTx | CmdTxFlex; 463 tcb->count = 0x01208000; 464 tcb->tbd_addr0 = virt_to_bus ( iobuf->data ); 465 tcb->tbd_size0 = 0x3FFF & iob_len ( iobuf ); 466 tcb->iob = iobuf; 471 priv->tcb_head = tcb; 996 struct ifec_tcb *tcb = priv->tcb_tail; local 1030 struct ifec_tcb *tcb; local 1084 struct ifec_tcb *tcb = priv->tcb_head->next; local [all...] |
/vbox/src/VBox/Devices/Network/slirp/ |
H A D | tcp_subr.c | 74 tcb.so_next = tcb.so_prev = &tcb; 75 tcp_last_so = &tcb; 300 tcp_last_so = &tcb; 608 QSOCKET_LOCK(tcb); 609 insque(pData, so, &tcb); 611 QSOCKET_UNLOCK(tcb);
|
H A D | tcp_timer.c | 71 so = tcb.so_next; 89 * Updates the timers in all active tcb's and 102 * Search through tcb's and update active timers. 104 ip = tcb.so_next;
|
H A D | slirp_state.h | 164 struct socket tcb; member in struct:NATState 189 * operation on socket queue (tcb, udb) 397 #define tcb pData->tcb macro 419 #define queue_tcp_label tcb
|
H A D | socket.h | 150 extern struct socket tcb;
|
H A D | socket.c | 206 tcp_last_so = &tcb; 251 QSOCKET_LOCK(tcb); 253 QSOCKET_UNLOCK(tcb); 546 QSOCKET_LOCK(tcb); 548 QSOCKET_UNLOCK(tcb); 958 QSOCKET_LOCK(tcb); 959 insque(pData, so,&tcb); 961 QSOCKET_UNLOCK(tcb); 994 QSOCKET_LOCK(tcb); 996 QSOCKET_UNLOCK(tcb); [all...] |
H A D | tcp_input.c | 315 QSOCKET_LOCK(tcb); 317 QSOCKET_UNLOCK(tcb); 473 if (so != NULL && so != &tcb) 475 QSOCKET_LOCK(tcb); 482 QSOCKET_UNLOCK(tcb); 484 so = solookup(&tcb, ti->ti_src, ti->ti_sport, 495 QSOCKET_UNLOCK(tcb); 1141 * Inform user that connection was reset, and close tcb. 1143 * Close the tcb. 1718 if (so != &tcb) [all...] |
H A D | ip_icmp.c | 239 head_socket = &tcb; /* head_socket could be initialized with udb*/
|
H A D | slirp.c | 499 while ((so = tcb.so_next) != &tcb) 648 do_slowtimo = (tcb.so_next != &tcb);
|
Completed in 2266 milliseconds