Lines Matching refs:sym
23 struct symbol *sym, u64 ip, bool in_kernel) in call_path__init() argument
26 cp->sym = sym; in call_path__init()
27 cp->ip = sym ? 0 : ip; in call_path__init()
59 struct symbol *sym, u64 ip, in call_path__new() argument
80 call_path__init(cp, parent, sym, ip, in_kernel); in call_path__new()
87 struct symbol *sym, u64 ip, u64 ks) in call_path__findnew() argument
94 if (sym) in call_path__findnew()
98 return call_path__new(cpr, parent, sym, ip, in_kernel); in call_path__findnew()
105 if (cp->sym == sym && cp->ip == ip) in call_path__findnew()
108 if (sym < cp->sym || (sym == cp->sym && ip < cp->ip)) in call_path__findnew()
114 cp = call_path__new(cpr, parent, sym, ip, in_kernel); in call_path__findnew()