Lines Matching refs:scope
61 fprintf(stderr, " [ type TYPE ] [ scope SCOPE ]\n");
65 fprintf(stderr, " [ scope SCOPE ] [ metric METRIC ]\n");
76 fprintf(stderr, "SCOPE := [ host | link | global | NUMBER ]\n");
94 int scope, scopemask;
184 if ((filter.scope^r->rtm_scope)&filter.scopemask)
358 fprintf(fp, " scope %s ", rtnl_rtscope_n2a(r->rtm_scope, b1, sizeof(b1)));
738 } else if (strcmp(*argv, "scope") == 0) {
739 __u32 scope = 0;
741 if (rtnl_rtscope_a2n(&scope, *argv))
742 invarg("invalid \"scope\" value\n", *argv);
743 req.r.rtm_scope = scope;
1091 } else if (matches(*argv, "scope") == 0) {
1092 __u32 scope = 0;
1095 if (rtnl_rtscope_a2n(&scope, *argv)) {
1097 invarg("invalid \"scope\"\n", *argv);
1098 scope = RT_SCOPE_NOWHERE;
1101 filter.scope = scope;