HomeSort by relevance Sort by last modified time
    Searched defs:CallStack (Results 1 - 13 of 13) sorted by null

  /system/core/include/utils/
CallStack.h 32 class CallStack {
42 CallStack();
43 // Create a callstack with the current thread's stack trace.
45 CallStack(const char* logtag, int32_t ignoreDepth=1,
47 // Copy the existing callstack (no other side effects).
48 CallStack(const CallStack& rhs);
49 ~CallStack();
51 // Copy the existing callstack (no other side effects).
52 CallStack& operator = (const CallStack& rhs)
    [all...]
  /system/core/libutils/
CallStack.cpp 17 #define LOG_TAG "CallStack"
19 #include <utils/CallStack.h>
27 CallStack::CallStack() :
31 CallStack::CallStack(const char* logtag, int32_t ignoreDepth, int32_t maxDepth) {
36 CallStack::CallStack(const CallStack& rhs) :
43 CallStack::~CallStack()
    [all...]
  /external/chromium_org/tools/memory_watcher/
call_stack.h 24 // The CallStack Class
26 class CallStack {
31 CallStack();
32 virtual ~CallStack() {}
34 // Get a hash for this CallStack.
38 // Get a unique ID for this CallStack.
49 // Compares the CallStack to another CallStack
52 bool IsEqual(const CallStack &target);
57 // Convert the callstack to a string stored in output
    [all...]
call_stack.cc 38 base::Lock CallStack::dbghelp_lock_;
40 bool CallStack::dbghelp_loaded_ = false;
42 DWORD CallStack::active_thread_id_ = 0;
72 bool CallStack::LoadDbgHelp() {
162 CallStack::SymbolCache* CallStack::symbol_cache_;
164 bool CallStack::Initialize() {
171 CallStack::CallStack() {
186 bool CallStack::IsEqual(const CallStack &target)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_execute.h 72 GLuint CallStack[MAX_PROGRAM_CALL_DEPTH]; /**< For CAL/RET instructions */
73 GLuint StackDepth; /**< Index/ptr to top of CallStack[] */
  /external/mesa3d/src/mesa/program/
prog_execute.h 72 GLuint CallStack[MAX_PROGRAM_CALL_DEPTH]; /**< For CAL/RET instructions */
73 GLuint StackDepth; /**< Index/ptr to top of CallStack[] */
  /sdk/emulator/qtools/
callstack.h 20 // use the CallStack class, the user derives a subclass of StackFrame
22 // passed as a template parameter to CallStack.
47 class CallStack : public BASE {
54 CallStack(int id, int numFrames, TraceReaderType *trace);
55 ~CallStack();
115 MethodRec CallStack<FRAME, BASE>::sCurrentMethod;
117 MethodRec CallStack<FRAME, BASE>::sNextMethod;
120 CallStack<FRAME, BASE>::CallStack(int id, int numFrames, TraceReaderType *trace)
154 CallStack<FRAME, BASE>::~CallStack(
    [all...]
  /bionic/libc/bionic/
pthread_debug.cpp 178 typedef struct CallStack {
181 } CallStack;
184 typedef struct CallStack CallStackListEntry;
284 static void dup_backtrace(CallStack* stack, size_t count, uintptr_t const* addrs) {
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_exec.h 325 struct tgsi_call_record CallStack[TGSI_EXEC_MAX_CALL_NESTING];
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_exec.h 325 struct tgsi_call_record CallStack[TGSI_EXEC_MAX_CALL_NESTING];
  /dalvik/tools/dmtracedump/
TraceDump.c 200 typedef struct CallStack {
205 } CallStack;
231 CallStack *stacks[MAX_THREADS];
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 499 StackDiagVector &CallStack) {
506 for (StackDiagVector::iterator I = CallStack.begin(),
507 E = CallStack.end(); I != E; ++I) {
534 StackDiagVector CallStack;
551 CallStack.push_back(StackDiagPair(C, N));
576 if (!CallStack.empty()) {
577 assert(CallStack.back().first == C);
578 CallStack.pop_back();
842 updateStackPiecesWithMessage(p, CallStack);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]

Completed in 2189 milliseconds