OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ignoreDepth
(Results
1 - 3
of
3
) sorted by null
/system/core/libutils/
CallStack.cpp
32
CallStack::CallStack(const char* logtag, int32_t
ignoreDepth
) {
33
this->update(
ignoreDepth
+1);
40
void CallStack::update(int32_t
ignoreDepth
, pid_t tid) {
44
if (!backtrace->Unwind(
ignoreDepth
)) {
ProcessCallStack.cpp
186
int
ignoreDepth
= (selfPid == tid) ? IGNORE_DEPTH_CURRENT_THREAD : 0;
189
threadInfo.callStack.update(
ignoreDepth
, tid);
/system/core/include/utils/
CallStack.h
39
CallStack(const char* logtag, int32_t
ignoreDepth
=1);
47
void update(int32_t
ignoreDepth
=1, pid_t tid=BACKTRACE_CURRENT_THREAD);
Completed in 105 milliseconds