OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pstack
(Results
1 - 4
of
4
) sorted by null
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
pstack.c
8
#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
*pstack
[
all
...]
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);
/external/linux-tools-perf/perf-3.12.0/tools/perf/
Makefile
279
LIB_H += util/
pstack
.h
338
LIB_OBJS += $(OUTPUT)util/
pstack
.o
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
hists.c
10
#include "../../util/
pstack
.h"
[
all
...]
Completed in 234 milliseconds