• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/

Lines Matching refs:self

18 static int hist_entry__thread_snprintf(struct hist_entry *self, char *bf,
20 static int hist_entry__comm_snprintf(struct hist_entry *self, char *bf,
22 static int hist_entry__dso_snprintf(struct hist_entry *self, char *bf,
24 static int hist_entry__sym_snprintf(struct hist_entry *self, char *bf,
26 static int hist_entry__parent_snprintf(struct hist_entry *self, char *bf,
28 static int hist_entry__cpu_snprintf(struct hist_entry *self, char *bf,
128 static int hist_entry__thread_snprintf(struct hist_entry *self, char *bf,
132 self->thread->comm ?: "", self->thread->pid);
135 static int hist_entry__comm_snprintf(struct hist_entry *self, char *bf,
138 return repsep_snprintf(bf, size, "%*s", width, self->thread->comm);
164 static int hist_entry__dso_snprintf(struct hist_entry *self, char *bf,
167 if (self->ms.map && self->ms.map->dso) {
168 const char *dso_name = !verbose ? self->ms.map->dso->short_name :
169 self->ms.map->dso->long_name;
173 return repsep_snprintf(bf, size, "%*Lx", width, self->ip);
192 static int hist_entry__sym_snprintf(struct hist_entry *self, char *bf,
198 char o = self->ms.map ? dso__symtab_origin(self->ms.map->dso) : '!';
200 BITS_PER_LONG / 4, self->ip, o);
203 ret += repsep_snprintf(bf + ret, size - ret, "[%c] ", self->level);
204 if (self->ms.sym)
206 self->ms.sym->name);
209 BITS_PER_LONG / 4, self->ip);
248 static int hist_entry__parent_snprintf(struct hist_entry *self, char *bf,
252 self->parent ? self->parent->name : "[other]");
263 static int hist_entry__cpu_snprintf(struct hist_entry *self, char *bf,
266 return repsep_snprintf(bf, size, "%-*d", width, self->cpu);
336 void sort_entry__setup_elide(struct sort_entry *self, struct strlist *list,
343 self->elide = true;