Lines Matching refs:t

30 	struct ipe_op_table *t = NULL;  in new_parsed_policy()  local
40 t = &p->rules[i]; in new_parsed_policy()
42 t->default_action = IPE_ACTION_INVALID; in new_parsed_policy()
43 INIT_LIST_HEAD(&t->rules); in new_parsed_policy()
146 char *t, *ver = NULL; in parse_header() local
150 while ((t = strsep(&line, IPE_POLICY_DELIM)) != NULL) { in parse_header()
153 if (*t == '\0') in parse_header()
160 token = match_token(t, header_tokens, args); in parse_header()
218 struct ipe_prop *p, *t; in free_rule() local
223 list_for_each_entry_safe(p, t, &r->props, next) { in free_rule()
249 static enum ipe_op_type parse_operation(char *t) in parse_operation() argument
253 return match_token(t, operation_tokens, args); in parse_operation()
268 static enum ipe_action_type parse_action(char *t) in parse_action() argument
272 return match_token(t, action_tokens, args); in parse_action()
300 static int parse_property(char *t, struct ipe_rule *r) in parse_property() argument
312 token = match_token(t, property_tokens, args); in parse_property()
371 char *t; in parse_rule() local
383 while (t = strsep(&line, IPE_POLICY_DELIM), line) { in parse_rule()
384 if (*t == '\0') in parse_rule()
386 if (first_token && token_default(t)) { in parse_rule()
390 op = parse_operation(t); in parse_rule()
396 rc = parse_property(t, r); in parse_rule()
405 action = parse_action(t); in parse_rule()
451 struct ipe_rule *pp, *t; in ipe_free_parsed_policy() local
458 list_for_each_entry_safe(pp, t, &p->rules[i].rules, next) { in ipe_free_parsed_policy()