callchain_cursor  276 tools/perf/builtin-c2c.c 	ret = sample__resolve_callchain(sample, &callchain_cursor, NULL,
callchain_cursor  399 tools/perf/builtin-kmem.c 	sample__resolve_callchain(sample, &callchain_cursor, NULL, evsel, &al, 16);
callchain_cursor  401 tools/perf/builtin-kmem.c 	callchain_cursor_commit(&callchain_cursor);
callchain_cursor  406 tools/perf/builtin-kmem.c 		node = callchain_cursor_current(&callchain_cursor);
callchain_cursor  424 tools/perf/builtin-kmem.c 		callchain_cursor_advance(&callchain_cursor);
callchain_cursor  283 tools/perf/builtin-sched.c 	struct callchain_cursor	cursor;
callchain_cursor 2059 tools/perf/builtin-sched.c 			    &callchain_cursor, symbol_conf.bt_stop_list,  stdout);
callchain_cursor 2144 tools/perf/builtin-sched.c 	struct callchain_cursor *cursor = &callchain_cursor;
callchain_cursor 2289 tools/perf/builtin-sched.c 	callchain_cursor__copy(&itr->cursor, &callchain_cursor);
callchain_cursor 1317 tools/perf/builtin-script.c 		struct callchain_cursor *cursor = NULL;
callchain_cursor 1320 tools/perf/builtin-script.c 		    thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
callchain_cursor 1322 tools/perf/builtin-script.c 			cursor = &callchain_cursor;
callchain_cursor 1868 tools/perf/builtin-script.c 		struct callchain_cursor *cursor = NULL;
callchain_cursor 1871 tools/perf/builtin-script.c 		    thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
callchain_cursor 1873 tools/perf/builtin-script.c 			cursor = &callchain_cursor;
callchain_cursor 2058 tools/perf/builtin-trace.c 				    struct callchain_cursor *cursor)
callchain_cursor 2081 tools/perf/builtin-trace.c 	return sample__fprintf_callchain(sample, 38, print_opts, &callchain_cursor, symbol_conf.bt_stop_list, trace->output);
callchain_cursor 2135 tools/perf/builtin-trace.c 		callchain_ret = trace__resolve_callchain(trace, evsel, sample, &callchain_cursor);
callchain_cursor 2137 tools/perf/builtin-trace.c 			if (callchain_cursor.nr < trace->min_stack)
callchain_cursor 2367 tools/perf/builtin-trace.c 		callchain_ret = trace__resolve_callchain(trace, evsel, sample, &callchain_cursor);
callchain_cursor 2369 tools/perf/builtin-trace.c 			if (callchain_cursor.nr < trace->min_stack)
callchain_cursor 2465 tools/perf/builtin-trace.c 		callchain_ret = trace__resolve_callchain(trace, evsel, sample, &callchain_cursor);
callchain_cursor 2467 tools/perf/builtin-trace.c 			if (callchain_cursor.nr < trace->min_stack)
callchain_cursor   60 tools/perf/util/callchain.c __thread struct callchain_cursor callchain_cursor;
callchain_cursor  566 tools/perf/util/callchain.c fill_node(struct callchain_node *node, struct callchain_cursor *cursor)
callchain_cursor  631 tools/perf/util/callchain.c 	  struct callchain_cursor *cursor,
callchain_cursor  790 tools/perf/util/callchain.c 		struct callchain_cursor *cursor,
callchain_cursor  863 tools/perf/util/callchain.c 	     struct callchain_cursor *cursor,
callchain_cursor  868 tools/perf/util/callchain.c 		      struct callchain_cursor *cursor,
callchain_cursor  915 tools/perf/util/callchain.c 	     struct callchain_cursor *cursor,
callchain_cursor  978 tools/perf/util/callchain.c 		     struct callchain_cursor *cursor,
callchain_cursor  996 tools/perf/util/callchain.c merge_chain_branch(struct callchain_cursor *cursor,
callchain_cursor 1040 tools/perf/util/callchain.c int callchain_merge(struct callchain_cursor *cursor,
callchain_cursor 1046 tools/perf/util/callchain.c int callchain_cursor_append(struct callchain_cursor *cursor,
callchain_cursor 1084 tools/perf/util/callchain.c 			      struct callchain_cursor *cursor, struct symbol **parent,
callchain_cursor 1104 tools/perf/util/callchain.c 	return callchain_append(he->callchain, &callchain_cursor, sample->period);
callchain_cursor 1559 tools/perf/util/callchain.c int callchain_cursor__copy(struct callchain_cursor *dst,
callchain_cursor 1560 tools/perf/util/callchain.c 			   struct callchain_cursor *src)
callchain_cursor 1592 tools/perf/util/callchain.c void callchain_cursor_reset(struct callchain_cursor *cursor)
callchain_cursor  163 tools/perf/util/callchain.h extern __thread struct callchain_cursor callchain_cursor;
callchain_cursor  189 tools/perf/util/callchain.h 		     struct callchain_cursor *cursor,
callchain_cursor  192 tools/perf/util/callchain.h int callchain_merge(struct callchain_cursor *cursor,
callchain_cursor  195 tools/perf/util/callchain.h void callchain_cursor_reset(struct callchain_cursor *cursor);
callchain_cursor  197 tools/perf/util/callchain.h int callchain_cursor_append(struct callchain_cursor *cursor, u64 ip,
callchain_cursor  204 tools/perf/util/callchain.h static inline void callchain_cursor_commit(struct callchain_cursor *cursor)
callchain_cursor  212 tools/perf/util/callchain.h callchain_cursor_current(struct callchain_cursor *cursor)
callchain_cursor  220 tools/perf/util/callchain.h static inline void callchain_cursor_advance(struct callchain_cursor *cursor)
callchain_cursor  226 tools/perf/util/callchain.h int callchain_cursor__copy(struct callchain_cursor *dst,
callchain_cursor  227 tools/perf/util/callchain.h 			   struct callchain_cursor *src);
callchain_cursor  242 tools/perf/util/callchain.h 			      struct callchain_cursor *cursor, struct symbol **parent,
callchain_cursor  256 tools/perf/util/callchain.h static inline void callchain_cursor_snapshot(struct callchain_cursor *dest,
callchain_cursor  257 tools/perf/util/callchain.h 					     struct callchain_cursor *src)
callchain_cursor  229 tools/perf/util/db-export.c 	err = thread__resolve_callchain(thread, &callchain_cursor, evsel,
callchain_cursor  235 tools/perf/util/db-export.c 	callchain_cursor_commit(&callchain_cursor);
callchain_cursor  244 tools/perf/util/db-export.c 		node = callchain_cursor_current(&callchain_cursor);
callchain_cursor  267 tools/perf/util/db-export.c 		callchain_cursor_advance(&callchain_cursor);
callchain_cursor  105 tools/perf/util/evsel_fprintf.c 			      unsigned int print_opts, struct callchain_cursor *cursor,
callchain_cursor  195 tools/perf/util/evsel_fprintf.c 			struct callchain_cursor *cursor, struct strlist *bt_stop_list, FILE *fp)
callchain_cursor   34 tools/perf/util/evsel_fprintf.h struct callchain_cursor;
callchain_cursor   38 tools/perf/util/evsel_fprintf.h 			      unsigned int print_opts, struct callchain_cursor *cursor,
callchain_cursor   43 tools/perf/util/evsel_fprintf.h 			struct callchain_cursor *cursor,
callchain_cursor  988 tools/perf/util/hist.c 	callchain_cursor_commit(&callchain_cursor);
callchain_cursor  995 tools/perf/util/hist.c 	he_cache = malloc(sizeof(*he_cache) * (callchain_cursor.nr + 1));
callchain_cursor 1030 tools/perf/util/hist.c 	callchain_cursor_commit(&callchain_cursor);
callchain_cursor 1043 tools/perf/util/hist.c 	node = callchain_cursor_current(&callchain_cursor);
callchain_cursor 1074 tools/perf/util/hist.c 	struct callchain_cursor cursor;
callchain_cursor 1076 tools/perf/util/hist.c 	callchain_cursor_snapshot(&cursor, &callchain_cursor);
callchain_cursor 1078 tools/perf/util/hist.c 	callchain_cursor_advance(&callchain_cursor);
callchain_cursor 1156 tools/perf/util/hist.c 	err = sample__resolve_callchain(iter->sample, &callchain_cursor, &iter->parent,
callchain_cursor 1498 tools/perf/util/hist.c 			callchain_cursor_reset(&callchain_cursor);
callchain_cursor 1499 tools/perf/util/hist.c 			if (callchain_merge(&callchain_cursor,
callchain_cursor 1540 tools/perf/util/hist.c 				callchain_cursor_reset(&callchain_cursor);
callchain_cursor 1541 tools/perf/util/hist.c 				if (callchain_merge(&callchain_cursor,
callchain_cursor 2006 tools/perf/util/machine.c 			    struct callchain_cursor *cursor,
callchain_cursor 2169 tools/perf/util/machine.c 					struct callchain_cursor *cursor,
callchain_cursor 2255 tools/perf/util/machine.c 			     struct callchain_cursor *cursor,
callchain_cursor 2276 tools/perf/util/machine.c 					    struct callchain_cursor *cursor,
callchain_cursor 2422 tools/perf/util/machine.c static int append_inlines(struct callchain_cursor *cursor,
callchain_cursor 2458 tools/perf/util/machine.c 	struct callchain_cursor *cursor = arg;
callchain_cursor 2482 tools/perf/util/machine.c 					    struct callchain_cursor *cursor,
callchain_cursor 2502 tools/perf/util/machine.c 			      struct callchain_cursor *cursor,
callchain_cursor  175 tools/perf/util/machine.h struct callchain_cursor;
callchain_cursor  178 tools/perf/util/machine.h 			      struct callchain_cursor *cursor,
callchain_cursor  273 tools/perf/util/scripting-engines/trace-event-perl.c 	if (thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
callchain_cursor  278 tools/perf/util/scripting-engines/trace-event-perl.c 	callchain_cursor_commit(&callchain_cursor);
callchain_cursor  284 tools/perf/util/scripting-engines/trace-event-perl.c 		node = callchain_cursor_current(&callchain_cursor);
callchain_cursor  330 tools/perf/util/scripting-engines/trace-event-perl.c 		callchain_cursor_advance(&callchain_cursor);
callchain_cursor  407 tools/perf/util/scripting-engines/trace-event-python.c 	if (thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
callchain_cursor  413 tools/perf/util/scripting-engines/trace-event-python.c 	callchain_cursor_commit(&callchain_cursor);
callchain_cursor  419 tools/perf/util/scripting-engines/trace-event-python.c 		node = callchain_cursor_current(&callchain_cursor);
callchain_cursor  454 tools/perf/util/scripting-engines/trace-event-python.c 		callchain_cursor_advance(&callchain_cursor);