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

/dalvik/vm/
H A DException.h187 void* dvmFillInStackTraceInternal(Thread* thread, bool wantObject, size_t* pCount);
194 INLINE int* dvmFillInStackTraceRaw(Thread* thread, size_t* pCount) { argument
195 return (int*) dvmFillInStackTraceInternal(thread, false, pCount);
H A DProfile.cpp175 * Gets a thread's stack trace as an array of method pointers of length pCount.
178 static const Method** getStackTrace(Thread* thread, size_t* pCount) argument
194 *pCount = stackDepth;
H A DException.cpp823 void* dvmFillInStackTraceInternal(Thread* thread, bool wantObject, size_t* pCount) argument
832 if (pCount != NULL)
833 *pCount = 0;
899 assert(pCount != NULL);
902 if (pCount != NULL)
903 *pCount = stackDepth;

Completed in 67 milliseconds