HomeSort by relevance Sort by last modified time
    Searched refs:emup (Results 1 - 4 of 4) sorted by null

  /external/qemu/slirp/
misc.c 638 struct emu_t *emup; local
685 for (emup = tcpemu; emup; emup = emup->next) {
686 if (emup->lport == lport && emup->fport == fport) {
693 emup = (struct emu_t *)malloc(sizeof (struct emu_t));
694 emup->lport = (u_int16_t)lport;
695 emup->fport = (u_int16_t)fport
    [all...]
tcp_subr.c 558 struct emu_t *emup; local
570 for (emup = tcpemu; emup; emup = emup->next) {
571 if ((emup->fport && (ntohs(so->so_fport) == emup->fport)) ||
572 (emup->lport && (ntohs(so->so_lport) == emup->lport))) {
573 so->so_emu = emup->emu
    [all...]
  /external/qemu/slirp-android/
misc.c 602 struct emu_t *emup; local
649 for (emup = tcpemu; emup; emup = emup->next) {
650 if (emup->lport == lport && emup->fport == fport) {
657 emup = (struct emu_t *)malloc(sizeof (struct emu_t));
658 emup->lport = (u_int16_t)lport;
659 emup->fport = (u_int16_t)fport
    [all...]
tcp_subr.c 714 struct emu_t *emup; local
726 for (emup = tcpemu; emup; emup = emup->next) {
727 if ((emup->fport && (so->so_faddr_port == emup->fport)) ||
728 (emup->lport && (so->so_laddr_port == emup->lport))) {
729 so->so_emu = emup->emu
    [all...]

Completed in 169 milliseconds