Home
last modified time | relevance | path

Searched refs:strfilter_node (Results 1 – 2 of 2) sorted by relevance

/Linux-v4.19/tools/perf/util/
Dstrfilter.c17 static void strfilter_node__delete(struct strfilter_node *node) in strfilter_node__delete()
65 static struct strfilter_node *strfilter_node__alloc(const char *op, in strfilter_node__alloc()
66 struct strfilter_node *l, in strfilter_node__alloc()
67 struct strfilter_node *r) in strfilter_node__alloc()
69 struct strfilter_node *node = zalloc(sizeof(*node)); in strfilter_node__alloc()
80 static struct strfilter_node *strfilter_node__new(const char *s, in strfilter_node__new()
83 struct strfilter_node root, *cur, *last_op; in strfilter_node__new()
180 struct strfilter_node *right, *root; in strfilter__append()
217 static bool strfilter_node__compare(struct strfilter_node *node, in strfilter_node__compare()
245 static int strfilter_node__sprint(struct strfilter_node *node, char *buf);
[all …]
Dstrfilter.h10 struct strfilter_node { struct
11 struct strfilter_node *l; /* Tree left branche (for &,|) */ argument
12 struct strfilter_node *r; /* Tree right branche (for !,&,|) */ argument
18 struct strfilter_node *root; argument