last_find_result  146 tools/perf/util/dso.h 	} last_find_result;
last_find_result  506 tools/perf/util/symbol.c 	dso->last_find_result.addr   = 0;
last_find_result  507 tools/perf/util/symbol.c 	dso->last_find_result.symbol = NULL;
last_find_result  515 tools/perf/util/symbol.c 	if (dso->last_find_result.addr >= sym->start &&
last_find_result  516 tools/perf/util/symbol.c 	    (dso->last_find_result.addr < sym->end ||
last_find_result  518 tools/perf/util/symbol.c 		dso->last_find_result.symbol = sym;
last_find_result  524 tools/perf/util/symbol.c 	if (dso->last_find_result.addr != addr || dso->last_find_result.symbol == NULL) {
last_find_result  525 tools/perf/util/symbol.c 		dso->last_find_result.addr   = addr;
last_find_result  526 tools/perf/util/symbol.c 		dso->last_find_result.symbol = symbols__find(&dso->symbols, addr);
last_find_result  529 tools/perf/util/symbol.c 	return dso->last_find_result.symbol;