HomeSort by relevance Sort by last modified time
    Searched refs:pstack (Results 1 - 5 of 5) sorted by null

  /external/linux-tools-perf/util/
pstack.h 6 struct pstack;
7 struct pstack *pstack__new(unsigned short max_nr_entries);
8 void pstack__delete(struct pstack *self);
9 bool pstack__empty(const struct pstack *self);
10 void pstack__remove(struct pstack *self, void *key);
11 void pstack__push(struct pstack *self, void *key);
12 void *pstack__pop(struct pstack *self);
pstack.c 8 #include "pstack.h"
18 struct pstack { struct
24 struct pstack *pstack__new(unsigned short max_nr_entries)
26 struct pstack *self = zalloc((sizeof(*self) +
33 void pstack__delete(struct pstack *self)
38 bool pstack__empty(const struct pstack *self)
43 void pstack__remove(struct pstack *self, void *key)
57 pr_err("%s: %p not on the pstack!\n", __func__, key);
60 void pstack__push(struct pstack *self, void *key)
69 void *pstack__pop(struct pstack *self
    [all...]
  /external/linux-tools-perf/
Android.mk 65 util/pstack.c \
Makefile 286 LIB_H += util/pstack.h
330 LIB_OBJS += $(OUTPUT)util/pstack.o
  /external/linux-tools-perf/util/ui/browsers/
hists.c 13 #include "../../pstack.h"
812 struct pstack *fstack;

Completed in 7486 milliseconds