gonzui


Format: Advanced Search

SearchGoogle itResults 11 - 20 of 23 for funcall:bzero (0.02 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_debug.c - 7.9KB - 223 lines
131:         else
132:                 bzero((void *)&td->td_cb, sizeof (*tp));
133:         td->td_family = tp->t_family;
More results from tcp_debug.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_input.c - 167.0KB - 4,503 lines
1025: 
1026:         bzero(&opti, sizeof(opti));
1027:         opti.ts_present = 0;
More results from tcp_input.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_output.c - 62.9KB - 1,704 lines
1218:                 sigoff = optlen + 2;
1219:                 bzero(bp, TCP_SIGLEN);
1220:                 bp += TCP_SIGLEN;
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_subr.c - 84.9KB - 2,586 lines
635: 
636:         bzero(mtod(m, void *), m->m_len);
637: 
More results from tcp_subr.c
bsd_source/t2ex/network/net/src_bsd/netinet/udp_usrreq.c - 51.8KB - 1,650 lines
491: 
492:                 bzero(&src6, sizeof(src6));
493:                 src6.sin6_family = AF_INET6;
More results from udp_usrreq.c
t2ex_source/kernel/sysmain/src/network_sample/dhclient.c - 13.2KB - 407 lines
94: 
95:         bzero(&s, sizeof s);
96:         s.sin_len = sizeof s;
More results from dhclient.c
t2ex_source/kernel/sysmain/src/network_sample/httpclient.c - 3.7KB - 111 lines
80: 
81:         bzero(&sa, sizeof sa);
82:         sa.sin_len = sizeof sa;
t2ex_source/kernel/sysmain/src/network_sample/net_test.c - 12.1KB - 415 lines
84:         buf = malloc(HTTP_BUFSIZE);
85:         bzero(buf, HTTP_BUFSIZE);
86:         re = http_get("t-engine.org", "/", buf, HTTP_BUFSIZE);
More results from net_test.c
t2ex_source/kernel/sysmain/src/network_sample/ping.c - 7.7KB - 229 lines
72: {
73:         bzero(state, sizeof *state);
74: 
More results from ping.c
t2ex_source/kernel/sysmain/src/network_sample/route.c - 7.4KB - 226 lines
70: 
71:         bzero(&buf, sizeof buf);
72:         buf.rtm.rtm_version = RTM_VERSION;