Home
last modified time | relevance | path

Searched refs:xig (Results 1 – 5 of 5) sorted by relevance

/xnu-12377.1.9/bsd/netinet/
H A Draw_ip.c1217 struct xinpgen xig; variable
1226 req->oldidx = 2 * (sizeof xig)
1243 bzero(&xig, sizeof(xig));
1244 xig.xig_len = sizeof xig;
1245 xig.xig_count = n;
1246 xig.xig_gen = gencnt;
1247 xig.xig_sogen = so_gencnt;
1248 error = SYSCTL_OUT(req, &xig, sizeof xig);
1299 bzero(&xig, sizeof(xig));
1300 xig.xig_len = sizeof xig;
[all …]
H A Din_pcblist.c299 struct xinpgen xig; in get_pcblist_n() local
320 req->oldidx = 2 * (sizeof(xig)) + (n + n / 8 + 1) * item_size; in get_pcblist_n()
354 bzero(&xig, sizeof(xig)); in get_pcblist_n()
355 xig.xig_len = sizeof(xig); in get_pcblist_n()
356 xig.xig_count = n; in get_pcblist_n()
358 xig.xig_count += nuserland; in get_pcblist_n()
360 xig.xig_gen = gencnt; in get_pcblist_n()
361 xig.xig_sogen = so_gencnt; in get_pcblist_n()
362 error = SYSCTL_OUT(req, &xig, sizeof(xig)); in get_pcblist_n()
369 if (xig.xig_count == 0) { in get_pcblist_n()
[all …]
H A Dudp_usrreq.c1211 struct xinpgen xig; variable
1220 req->oldidx = 2 * (sizeof(xig))
1237 bzero(&xig, sizeof(xig));
1238 xig.xig_len = sizeof(xig);
1239 xig.xig_count = n;
1240 xig.xig_gen = gencnt;
1241 xig.xig_sogen = so_gencnt;
1242 error = SYSCTL_OUT(req, &xig, sizeof(xig));
1309 bzero(&xig, sizeof(xig));
1310 xig.xig_len = sizeof(xig);
[all …]
H A Dtcp_subr.c2109 struct xinpgen xig; variable
2118 req->oldidx = 2 * (sizeof(xig))
2135 bzero(&xig, sizeof(xig));
2136 xig.xig_len = sizeof(xig);
2137 xig.xig_count = n;
2138 xig.xig_gen = gencnt;
2139 xig.xig_sogen = so_gencnt;
2140 error = SYSCTL_OUT(req, &xig, sizeof(xig));
2209 bzero(&xig, sizeof(xig));
2210 xig.xig_len = sizeof(xig);
[all …]
/xnu-12377.1.9/bsd/net/
H A Dntstat.c8346 struct xinpgen xig; in ntstat_userland_list_n() local
8359 req->oldidx = 2 * (sizeof(xig)) + (n + 1 + n / 8) * item_size; in ntstat_userland_list_n()
8374 bzero(&xig, sizeof(xig)); in ntstat_userland_list_n()
8375 xig.xig_len = sizeof(xig); in ntstat_userland_list_n()
8376 xig.xig_gen = 0; in ntstat_userland_list_n()
8377 xig.xig_sogen = 0; in ntstat_userland_list_n()
8378 xig.xig_count = n; in ntstat_userland_list_n()
8379 error = SYSCTL_OUT(req, &xig, sizeof(xig)); in ntstat_userland_list_n()
8397 error = SYSCTL_OUT(req, &xig, sizeof(xig)); in ntstat_userland_list_n()