Lines Matching +full:128 +full:mib
144 char buf[128]; in print_addr()
239 char buffer[128]; in print_nhop_entry_sysctl()
240 char iface_name[128]; in print_nhop_entry_sysctl()
339 int mib[7]; in dump_nhops_sysctl() local
346 mib[0] = CTL_NET; in dump_nhops_sysctl()
347 mib[1] = PF_ROUTE; in dump_nhops_sysctl()
348 mib[2] = 0; in dump_nhops_sysctl()
349 mib[3] = af; in dump_nhops_sysctl()
350 mib[4] = NET_RT_NHOP; in dump_nhops_sysctl()
351 mib[5] = 0; in dump_nhops_sysctl()
352 mib[6] = fibnum; in dump_nhops_sysctl()
353 if (sysctl(mib, nitems(mib), NULL, &needed, NULL, 0) < 0) in dump_nhops_sysctl()
358 if (sysctl(mib, nitems(mib), buf, &needed, NULL, 0) < 0) in dump_nhops_sysctl()