Lines Matching refs:npath

1115 	char *npath, *p;  in pfctl_show_eth_rules()  local
1128 if ((npath = calloc(1, MAXPATHLEN)) == NULL) in pfctl_show_eth_rules()
1130 snprintf(npath, MAXPATHLEN, "%s", anchorname); in pfctl_show_eth_rules()
1136 npath = path; in pfctl_show_eth_rules()
1147 if ((ret = pfctl_get_eth_rulesets_info(dev, &ri, npath)) != 0) { in pfctl_show_eth_rules()
1162 if ((ret = pfctl_get_eth_ruleset(dev, npath, nr, &rs)) != 0) in pfctl_show_eth_rules()
1166 pfctl_show_eth_rules(dev, npath, opts, in pfctl_show_eth_rules()
1231 char *npath, *p; in pfctl_show_rules() local
1244 if ((npath = calloc(1, MAXPATHLEN)) == NULL) in pfctl_show_rules()
1246 strlcpy(npath, anchorname, MAXPATHLEN); in pfctl_show_rules()
1252 npath = path; in pfctl_show_rules()
1264 if ((ret = pfctl_get_rulesets(pfh, npath, &mnr)) != 0) { in pfctl_show_rules()
1274 if ((ret = pfctl_get_ruleset(pfh, npath, nr, &prs)) != 0) in pfctl_show_rules()
1278 pfctl_show_rules(dev, npath, opts, in pfctl_show_rules()
1396 pfctl_show_rules(dev, npath, opts, format, in pfctl_show_rules()
1418 pfctl_show_rules(dev, npath, opts, format, in pfctl_show_rules()
1452 char *npath, *p; in pfctl_show_nat() local
1464 if ((npath = calloc(1, MAXPATHLEN)) == NULL) in pfctl_show_nat()
1468 snprintf(npath, MAXPATHLEN, "%s", anchorname); in pfctl_show_nat()
1470 snprintf(npath, MAXPATHLEN, "%s", path); in pfctl_show_nat()
1471 if (npath[0]) in pfctl_show_nat()
1472 snprintf(&npath[len], MAXPATHLEN - len, "/%s", anchorname); in pfctl_show_nat()
1474 snprintf(&npath[len], MAXPATHLEN - len, "%s", anchorname); in pfctl_show_nat()
1485 if ((ret = pfctl_get_rulesets(pfh, npath, &mnr)) != 0) { in pfctl_show_nat()
1495 if ((ret = pfctl_get_ruleset(pfh, npath, nr, &prs)) != 0) in pfctl_show_nat()
1499 pfctl_show_nat(dev, npath, opts, in pfctl_show_nat()
1504 npath[len] = '\0'; in pfctl_show_nat()
1509 ret = pfctl_get_rules_info_h(pfh, &ri, nattype[i], npath); in pfctl_show_nat()
1517 if ((ret = pfctl_get_rule_h(pfh, nr, ri.ticket, npath, in pfctl_show_nat()
1523 ri.ticket, nattype[i], npath, PF_RDR) != 0) in pfctl_show_nat()
1526 ri.ticket, nattype[i], npath, PF_NAT) != 0) in pfctl_show_nat()
1529 ri.ticket, nattype[i], npath, PF_RT) != 0) in pfctl_show_nat()
1544 pfctl_show_nat(dev, npath, opts, anchor_call, in pfctl_show_nat()