Searched refs:int_node (Results 1 – 4 of 4) sorted by relevance
/linux-4.4.14/tools/perf/util/ |
D | intlist.c | 19 struct int_node *node = malloc(sizeof(*node)); in intlist__node_new() 30 static void int_node__delete(struct int_node *ilist) in int_node__delete() 38 struct int_node *node = container_of(rb_node, struct int_node, rb_node); in intlist__node_delete() 46 struct int_node *node = container_of(rb_node, struct int_node, rb_node); in intlist__node_cmp() 56 void intlist__remove(struct intlist *ilist, struct int_node *node) in intlist__remove() 61 static struct int_node *__intlist__findnew(struct intlist *ilist, in __intlist__findnew() 64 struct int_node *node = NULL; in __intlist__findnew() 76 node = container_of(rb_node, struct int_node, rb_node); in __intlist__findnew() 81 struct int_node *intlist__find(struct intlist *ilist, int i) in intlist__find() 86 struct int_node *intlist__findnew(struct intlist *ilist, int i) in intlist__findnew() [all …]
|
D | intlist.h | 9 struct int_node { struct 22 void intlist__remove(struct intlist *ilist, struct int_node *in); argument 25 struct int_node *intlist__entry(const struct intlist *ilist, unsigned int idx); 26 struct int_node *intlist__find(struct intlist *ilist, int i); 27 struct int_node *intlist__findnew(struct intlist *ilist, int i); 45 static inline struct int_node *intlist__first(struct intlist *ilist) in intlist__first() 48 return rn ? rb_entry(rn, struct int_node, rb_node) : NULL; in intlist__first() 50 static inline struct int_node *intlist__next(struct int_node *in) in intlist__next() 56 return rn ? rb_entry(rn, struct int_node, rb_node) : NULL; in intlist__next()
|
D | probe-event.c | 786 struct int_node *ln; in __show_line_range()
|
/linux-4.4.14/tools/perf/ |
D | builtin-trace.c | 1911 struct int_node *inode; in thread__update_stats() 2845 struct int_node *inode = intlist__first(ttrace->syscall_stats); in thread__dump_stats()
|