Lines Matching refs:browser_entry
21 struct browser_entry { struct
25 struct browser_entry *parent; argument
35 struct browser_entry *curr; argument
52 struct browser_entry *entry, in get_member_overhead()
77 struct browser_entry *parent, in add_child_entries()
83 struct browser_entry *entry; in add_child_entries()
121 struct browser_entry *bracket; in add_child_entries()
145 struct browser_entry *entry; in count_visible_entries()
171 struct browser_entry *pos, *tmp; in annotated_data_browser__delete_entries()
180 static struct browser_entry *get_first_child(struct browser_entry *entry) in get_first_child()
185 return list_first_entry(&entry->children, struct browser_entry, node); in get_first_child()
188 static struct browser_entry *get_last_child(struct browser_entry *entry) in get_last_child()
193 return list_last_entry(&entry->children, struct browser_entry, node); in get_last_child()
196 static bool is_first_child(struct browser_entry *entry) in is_first_child()
205 static bool is_last_child(struct browser_entry *entry) in is_last_child()
214 static struct browser_entry *browser__prev_entry(struct ui_browser *uib, in browser__prev_entry()
215 struct browser_entry *entry) in browser__prev_entry()
218 struct browser_entry *first; in browser__prev_entry()
220 first = list_first_entry(&browser->entries, struct browser_entry, node); in browser__prev_entry()
237 static struct browser_entry *browser__next_entry(struct ui_browser *uib, in browser__next_entry()
238 struct browser_entry *entry) in browser__next_entry()
241 struct browser_entry *last; in browser__next_entry()
243 last = list_last_entry(&browser->entries, struct browser_entry, node); in browser__next_entry()
266 struct browser_entry *entry; in browser__seek()
307 struct browser_entry *entry, *next; in browser__refresh()
390 struct browser_entry *be = entry; in browser__write()
446 struct browser_entry *entry, in annotated_data_browser__fold()
449 struct browser_entry *child; in annotated_data_browser__fold()
466 struct browser_entry *entry, in annotated_data_browser__unfold()
469 struct browser_entry *child; in annotated_data_browser__unfold()
492 struct browser_entry *curr = browser->curr; in annotated_data_browser__toggle_fold()
493 struct browser_entry *parent; in annotated_data_browser__toggle_fold()