Searched refs:strfilter_node (Results 1 – 2 of 2) sorted by relevance
9 struct strfilter_node { struct10 struct strfilter_node *l; /* Tree left branche (for &,|) */ argument11 struct strfilter_node *r; /* Tree right branche (for !,&,|) */ argument17 struct strfilter_node *root; argument
13 static void strfilter_node__delete(struct strfilter_node *node) in strfilter_node__delete()61 static struct strfilter_node *strfilter_node__alloc(const char *op, in strfilter_node__alloc()62 struct strfilter_node *l, in strfilter_node__alloc()63 struct strfilter_node *r) in strfilter_node__alloc()65 struct strfilter_node *node = zalloc(sizeof(*node)); in strfilter_node__alloc()76 static struct strfilter_node *strfilter_node__new(const char *s, in strfilter_node__new()79 struct strfilter_node root, *cur, *last_op; in strfilter_node__new()173 static bool strfilter_node__compare(struct strfilter_node *node, in strfilter_node__compare()