Searched refs:sopt_size (Results 1 – 3 of 3) sorted by relevance
| /dragonfly/sys/net/ipfw3_basic/ |
| HD | ip_fw3_state.c | 427 size_t sopt_size, total_len = 0; in ip_fw3_ctl_state_get() local 432 sopt_size = sopt->sopt_valsize; in ip_fw3_ctl_state_get() 442 if (total_len > sopt_size) in ip_fw3_ctl_state_get() 457 if (total_len > sopt_size) in ip_fw3_ctl_state_get() 472 if (total_len > sopt_size) in ip_fw3_ctl_state_get() 487 if (total_len > sopt_size) in ip_fw3_ctl_state_get() 502 if (total_len > sopt_size) in ip_fw3_ctl_state_get() 517 if (total_len > sopt_size) in ip_fw3_ctl_state_get()
|
| /dragonfly/sys/net/ipfw3_nat/ |
| HD | ip_fw3_nat.c | 518 size_t sopt_size, total_len = 0; in ip_fw3_ctl_nat_get_record() local 526 sopt_size = sopt->sopt_valsize; in ip_fw3_ctl_nat_get_record() 538 if (total_len > sopt_size) in ip_fw3_ctl_nat_get_record() 563 if (total_len > sopt_size) in ip_fw3_ctl_nat_get_record() 594 if (total_len > sopt_size) in ip_fw3_ctl_nat_get_record() 618 if (total_len > sopt_size) in ip_fw3_ctl_nat_get_record() 650 if (total_len > sopt_size) in ip_fw3_ctl_nat_get_record() 674 if (total_len > sopt_size) in ip_fw3_ctl_nat_get_record()
|
| /dragonfly/sys/kern/ |
| HD | uipc_socket.c | 2441 int sopt_size = sopt->sopt_valsize, msize; in soopt_getm() local 2443 m = m_getl(sopt_size, sopt->sopt_td ? M_WAITOK : M_NOWAIT, MT_DATA, in soopt_getm() 2447 m->m_len = min(msize, sopt_size); in soopt_getm() 2448 sopt_size -= m->m_len; in soopt_getm() 2452 while (sopt_size > 0) { in soopt_getm() 2453 m = m_getl(sopt_size, sopt->sopt_td ? M_WAITOK : M_NOWAIT, in soopt_getm() 2459 m->m_len = min(msize, sopt_size); in soopt_getm() 2460 sopt_size -= m->m_len; in soopt_getm()
|