Lines Matching defs:rules_string
1213 parse_and_set_rules(struct prison *const pr, const char *rules_string,
1219 error = parse_rules(rules_string, &rules, parse_error);
1319 char *rules_string;
1339 error = vfs_getopt(opts, "mac.do.rules", (void**)&rules_string, &size);
1361 if (size == 0 || rules_string[size - 1] != '\0') {
1373 jsys = rules_string[0] == '\0' ? JAIL_SYS_DISABLE :
1383 if (rules_string[0] != '\0') {
1400 char *rules_string;
1414 rules_string = vfs_getopts(opts, "mac.do.rules", &error);
1417 MPASS(strlen(rules_string) < MAC_RULE_STRING_LEN);
1420 jsys = rules_string[0] == '\0' ? JAIL_SYS_DISABLE :
1426 rules_string[0] == '\0'));
1437 rules_string = "";
1447 error = parse_and_set_rules(pr, rules_string, &parse_error);