Home | History | Annotate | Download | only in qtools

Lines Matching refs:BASE

29     virtual void push(int stackLevel, uint64_t time, CallStackBase *base) {};
30 virtual void pop(int stackLevel, uint64_t time, CallStackBase *base) {};
46 template <class FRAME, class BASE = CallStackBase>
47 class CallStack : public BASE {
52 typedef BASE base_type;
114 template<class FRAME, class BASE>
115 MethodRec CallStack<FRAME, BASE>::sCurrentMethod;
116 template<class FRAME, class BASE>
117 MethodRec CallStack<FRAME, BASE>::sNextMethod;
119 template<class FRAME, class BASE>
120 CallStack<FRAME, BASE>::CallStack(int id, int numFrames, TraceReaderType *trace)
124 BASE::setId(id);
153 template<class FRAME, class BASE>
154 CallStack<FRAME, BASE>::~CallStack()
159 template<class FRAME, class BASE>
161 CallStack<FRAME, BASE>::updateStack(BBEvent *event, symbol_type *function)
231 template<class FRAME, class BASE>
233 CallStack<FRAME, BASE>::threadStart(uint64_t time)
238 template<class FRAME, class BASE>
240 CallStack<FRAME, BASE>::threadStop(uint64_t time)
245 template<class FRAME, class BASE>
246 typename CallStack<FRAME, BASE>::Action
247 CallStack<FRAME, BASE>::getAction(BBEvent *event, symbol_type *function)
382 template<class FRAME, class BASE>
383 void CallStack<FRAME, BASE>::doPush(BBEvent *event, symbol_type *function)
497 template<class FRAME, class BASE>
498 void CallStack<FRAME, BASE>::doSimplePush(symbol_type *function, uint32_t addr,
518 template<class FRAME, class BASE>
519 void CallStack<FRAME, BASE>::doSimplePop(uint64_t time)
551 template<class FRAME, class BASE>
552 void CallStack<FRAME, BASE>::doPop(BBEvent *event, symbol_type *function,
680 template<class FRAME, class BASE>
681 void CallStack<FRAME, BASE>::popAll(uint64_t time)
689 template<class FRAME, class BASE>
690 void CallStack<FRAME, BASE>::doMethodPop(BBEvent *event, uint32_t addr,
721 template<class FRAME, class BASE>
722 void CallStack<FRAME, BASE>::doMethodAction(BBEvent *event, symbol_type *function)
760 template<class FRAME, class BASE>
761 void CallStack<FRAME, BASE>::showStack(FILE *stream)