OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pStack
(Results
1 - 6
of
6
) sorted by null
/sdk/emulator/qtools/
read_method.cpp
116
Stack *
pStack
= stacks[proc->pid];
119
if (
pStack
== NULL) {
120
pStack
= new Stack();
121
stacks[proc->pid] =
pStack
;
129
pStack
->push(pframe);
131
pframe =
pStack
->pop();
134
pStack
->dump();
stack_dump.cpp
128
CallStackType *
pStack
= stacks[event.pid];
131
if (
pStack
== NULL) {
132
pStack
= new CallStackType(event.pid, kNumStackFrames, trace);
133
stacks[event.pid] =
pStack
;
139
pStack
->updateStack(&event, function);
144
pStack
->showStack(stdout);
coverage.cpp
104
CallStackType *
pStack
= stacks[event.pid];
107
if (
pStack
== NULL) {
108
pStack
= new CallStackType(event.pid, kNumStackFrames, trace);
109
stacks[event.pid] =
pStack
;
113
pStack
->updateStack(&event, function);
q2dm.cpp
182
CallStackType *
pStack
;
189
pStack
= kernelStack;
200
pStack
= stacks[event.pid];
204
pStack
= stacks[event.pid];
208
if (
pStack
== NULL) {
209
pStack
= new CallStackType(event.pid, kNumStackFrames, trace);
210
stacks[event.pid] =
pStack
;
215
if (prevStack !=
pStack
) {
216
pStack
->threadStart(event.time);
220
prevStack =
pStack
;
[
all
...]
/external/icu4c/test/cintltst/
nfsprep.c
213
char
pStack
[NFS4_MAX_BUFFER_SIZE],
215
char *p=
pStack
, *s=sStack;
269
if(p !=
pStack
){
/dalvik/tools/dmtracedump/
TraceDump.c
[
all
...]
Completed in 834 milliseconds