Searched defs:pstack (Results 1 - 1 of 1) sorted by relevance

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dpstack.c8 #include "pstack.h"
12 struct pstack { struct
18 struct pstack *pstack__new(unsigned short max_nr_entries)
20 struct pstack *pstack = zalloc((sizeof(*pstack) + local
22 if (pstack != NULL)
23 pstack->max_nr_entries = max_nr_entries;
24 return pstack;
27 void pstack__delete(struct pstack *pstac argument
32 pstack__empty(const struct pstack *pstack) argument
37 pstack__remove(struct pstack *pstack, void *key) argument
54 pstack__push(struct pstack *pstack, void *key) argument
63 pstack__pop(struct pstack *pstack) argument
[all...]

Completed in 69 milliseconds