/external/libnl/src/ |
nl-link-name2ifindex.c | 24 struct nl_cache *link_cache; local 32 link_cache = nl_cli_link_alloc_cache(sock); 34 if (!(ifindex = rtnl_link_name2i(link_cache, argv[1])))
|
nl-link-ifindex2name.c | 24 struct nl_cache *link_cache; local 33 link_cache = nl_cli_link_alloc_cache(sock); 37 if (!rtnl_link_i2name(link_cache, ifindex, name, sizeof(name)))
|
nl-neightbl-list.c | 31 struct nl_cache *link_cache, *neightbl_cache; local 39 link_cache = nl_cli_link_alloc_cache(sock);
|
nl-link-list.c | 53 struct nl_cache *link_cache; local 62 link_cache = nl_cli_link_alloc_cache(sock); 103 nl_cache_dump_filter(link_cache, ¶ms, OBJ_CAST(link));
|
nl-monitor.c | 38 struct nl_cache *link_cache; local 95 link_cache = nl_cli_link_alloc_cache(sock);
|
nl-neigh-add.c | 48 struct nl_cache *link_cache; local 57 link_cache = nl_cli_link_alloc_cache(sock); 92 case 'd': nl_cli_neigh_parse_dev(neigh, link_cache, optarg); break;
|
nl-neigh-list.c | 40 struct nl_cache *link_cache, *neigh_cache; local 48 link_cache = nl_cli_link_alloc_cache(sock); 80 case 'd': nl_cli_neigh_parse_dev(neigh, link_cache, optarg); break;
|
nl-qdisc-list.c | 41 struct nl_cache *link_cache, *qdisc_cache; local 49 link_cache = nl_cli_link_alloc_cache(sock); 80 case 'd': nl_cli_qdisc_parse_dev(qdisc, link_cache, optarg); break;
|
nl-route-get.c | 46 struct nl_cache *link_cache, *route_cache; local 55 link_cache = nl_cli_link_alloc_cache(sock);
|
nl-rule-list.c | 37 struct nl_cache *link_cache, *rule_cache; local 45 link_cache = nl_cli_link_alloc_cache(sock);
|
nf-log.c | 55 struct nl_cache *link_cache; local 119 link_cache = nl_cli_link_alloc_cache(rt_sock);
|
nl-addr-add.c | 47 struct nl_cache *link_cache; local 56 link_cache = nl_cli_link_alloc_cache(sock); 99 case 'd': nl_cli_addr_parse_dev(addr, link_cache, optarg); break;
|
nl-cls-add.c | 39 struct nl_cache *link_cache; local 51 link_cache = nlt_alloc_link_cache(sock); 82 case 'd': parse_dev(cls, link_cache, optarg); break;
|
nl-cls-list.c | 62 struct nl_cache *link_cache; local 68 link_cache = nlt_alloc_link_cache(sock); 99 case 'd': dev = 1; parse_dev(cls, link_cache, optarg); break; 108 nl_cache_foreach(link_cache, print_cls, NULL);
|
nl-link-set.c | 70 struct nl_cache *link_cache; local 76 link_cache = nl_cli_link_alloc_cache(sock); 121 nl_cache_foreach_filter(link_cache, OBJ_CAST(link), set_cb, change);
|
nl-link-stats.c | 82 struct nl_cache *link_cache; local 87 link_cache = nl_cli_link_alloc_cache(sock); 115 nl_cache_foreach_filter(link_cache, OBJ_CAST(link), dump_stats, argv);
|
nl-neigh-delete.c | 69 struct nl_cache *link_cache, *neigh_cache; local 73 link_cache = nl_cli_link_alloc_cache(sock); 110 case 'd': nl_cli_neigh_parse_dev(neigh, link_cache, optarg); break;
|
nl-qdisc-delete.c | 67 struct nl_cache *link_cache, *qdisc_cache; local 71 link_cache = nl_cli_link_alloc_cache(sock); 103 case 'd': nl_cli_qdisc_parse_dev(qdisc, link_cache, optarg); break;
|
nl-route-list.c | 53 struct nl_cache *link_cache, *route_cache; local 63 link_cache = nl_cli_link_alloc_cache(sock); 109 case 'n': nl_cli_route_parse_nexthop(route, optarg, link_cache); break; 113 case ARG_IIF: nl_cli_route_parse_iif(route, optarg, link_cache); break;
|
nl-tctree-list.c | 117 struct nl_cache *link_cache; local 121 link_cache = nl_cli_link_alloc_cache(sock); 146 nl_cache_foreach(link_cache, &print_link, NULL);
|
nf-queue.c | 86 struct nl_cache *link_cache; local 142 link_cache = nl_cli_link_alloc_cache(rt_sock);
|
nl-addr-delete.c | 74 struct nl_cache *link_cache, *addr_cache; local 78 link_cache = nl_cli_link_alloc_cache(sock); 123 case 'd': nl_cli_addr_parse_dev(addr, link_cache, optarg); break;
|
nl-cls-delete.c | 66 struct nl_cache *link_cache, *cls_cache; local 72 link_cache = nlt_alloc_link_cache(sock); 107 case 'd': nf++; parse_dev(cls, link_cache, optarg); break;
|
nl-route-add.c | 17 static struct nl_cache *link_cache, *route_cache; variable in typeref:struct:nl_cache 64 link_cache = nl_cli_link_alloc_cache(sock); 109 case 'n': nl_cli_route_parse_nexthop(route, optarg, link_cache); break; 113 case ARG_IIF: nl_cli_route_parse_iif(route, optarg, link_cache); break;
|
nl-route-delete.c | 86 struct nl_cache *link_cache, *route_cache; local 92 link_cache = nl_cli_link_alloc_cache(sock); 142 case 'n': nf++; nl_cli_route_parse_nexthop(route, optarg, link_cache); break; 146 case ARG_IIF: nf++; nl_cli_route_parse_iif(route, optarg, link_cache); break;
|